-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathtailwind.config.js
45 lines (45 loc) · 1.21 KB
/
tailwind.config.js
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
module.exports = {
content: [
"./eleventy.config.js",
"./pages/**/*.{html,md,js}",
"./code/**/*.{html,js,jsx,ts,tsx}",
],
theme: {
extend: {
colors: {
'primary': '#462a44',
'primary-dark': '#3f253d', // 10% darker
'secondary': '#ffb644',
'tertiary': '#f3f1f0',
'muted': '#7a7a7a',
},
borderColor: {
DEFAULT: '#D5D4D3',
},
spacing: {
'gap': '1rem',
'2gap': '2rem',
'3gap': '3rem',
'4gap': '4rem',
'5gap': '5rem',
'6gap': '6rem',
'7gap': '7rem',
'8gap': '8rem',
},
fontFamily: {
serif: ['Bitter', 'Arial', 'Helvetica', 'serif'],
sans: ['IBM Plex Sans', 'sans-serif']
},
typography: (theme) => ({
DEFAULT: {
css: {
color: '#212529',
}
}
})
}
},
plugins: [
require("@tailwindcss/typography")
]
}