-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
50 lines (49 loc) · 1.08 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
46
47
48
49
50
const defaultTheme = require(`tailwindcss/defaultTheme`);
module.exports = {
mode: `aot`,
purge: {
content: [`./src/**/*.{jsx,js,tsx,ts}`],
},
theme: {
borderRadius: {
55: `50px`,
},
extend: {
lineHeight: {
64: `4rem`,
},
fontFamily: {
bourbon: `Bourbon`,
geotica: `GeoticaW01-FourOpen`,
overpass: [`Overpass`, ...defaultTheme.fontFamily.sans],
sans: [`Overpass`, ...defaultTheme.fontFamily.sans],
'work-sans': [`Work Sans`],
},
colors: {
bee: `#ffc94b`,
blush: `#f2bcbe`,
coral: `#f17a7e`,
geranium: `#ffe3a1`,
hibiscus: `#f2aaac`,
orange: `#f4751c`,
peach: `#fabb97`,
pewter: `#716A62`,
pink: `#f29497`,
rose: `#ffc4c5`,
strawberry: `#f17e90`,
sunny: `#f9a66c`,
yellow: `#ffd87f`,
},
},
},
corePlugins: {
listStyleType: false,
listStylePosition: false,
},
variants: {
extend: {
translate: [`group-hover`],
scale: [`group-hover`],
},
},
};