forked from jamstack/jamstack.org
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
53 lines (53 loc) · 1.05 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
51
52
53
module.exports = {
content: [
'./src/site/**/*.njk',
'./src/site/**/*.md'
],
darkMode: ['class'],
theme: {
borderRadius: {
'none': '0',
'sm': '.125rem',
default: '.25rem',
'lg': '.5rem',
'xl': '1rem',
'full': '9999px',
},
extend: {
fontSize: {
xxs: "0.625rem",
},
colors: {
orange: {
500: "#DF4A1F",
},
blue : {
//900: '#0E182A', // old
900: '#161a2b', // old
800: '#252D3B', // old
300: '#718096', // old
200: '#CBD5E0', // old
100: '#E2E8F0' // old
},
gray: {
900: "#0D0F18",
700: "#2D3247",
400: "#5A5F75",
300: "#9AA0B6",
200: "#D8DEEC",
100: "#F8FAFF"
},
pink : {
900 : '#D1036F', // old
500 : '#F0047F',
100 : '#FFB1C5' // old
}
}
}
},
variants: {
borderRadius: ["last"],
textDecoration: ["group-hover", "hover"]
},
plugins: []
}