-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.cjs
More file actions
47 lines (47 loc) · 1.42 KB
/
Copy pathtailwind.config.cjs
File metadata and controls
47 lines (47 loc) · 1.42 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ['./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}'],
theme: {
extend: {
colors: {
jade: {
950: '#1B1F1C',
900: '#152118',
800: '#19291D',
700: '#1C3122',
600: '#25412D'
},
goldenrod: '#B69047',
alabaster: '#F1F2EB',
timberwolf: '#D8DAD3',
oxford: {
900: '#0C111D',
850: '#0F1624',
800: '#121A2B',
750: '#19223A',
700: '#1F2A49',
500: '#2B3A67',
400: '#496A81',
300: '#66999B'
},
accent: {
sage: '#66999B',
peach: '#FFC482'
},
secondary: '#F2F2F2'
},
fontFamily: {
montserrat: ['Montserrat Variable', 'sans-serif'],
literata: ['Literata Variable', 'serif'],
eiko: ['Eiko', 'Eiko', 'serif']
},
transformOrigin: {
'center-center': 'center center'
},
aspectRatio: {
'3/2': '3/2 auto'
}
}
},
plugins: []
};