-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
52 lines (52 loc) · 1.26 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
module.exports = {
purge: ['./src/**/*.{js,jsx,ts,tsx}', './public/index.html'],
darkMode: false, // or 'media' or 'class'
theme: {
extend: {
colors: {
'midnight-sky': '#291720',
'rose': '#D90368',
'light-yellow': '#FFFBDB',
'moss-green': '#625834',
'dark-forest': '#30362F',
'olive-green': '#A59132',
xiketic: '#0D0221',
orange: '#DA7422',
},
borderRadius: {
'large': '2rem',
}
},
fontFamily: {
gloock: ['Gloock', 'serif'],
'martian-mono': ['Martian Mono', 'monospace'] ,
staatliches: ['Staatliches', 'serif'],
nunito: ['Nunito', 'serif'],
},
gradientColorStops: (theme) => ({
...theme('colors'),
'light-blue': '#A6CFD5',
'aero-blue': '#C2E7D9',
}),
textColor: (theme) => ({
...theme('colors'),
'dark-ruby': '#820263',
'rose': '#D90368',
xiketic: '#0D0221',
'light-blue': '#A6CFD5',
'aero-blue': '#C2E7D9',
}),
ringColor: (theme) => ({
...theme('colors'),
xiketic: '#0D0221',
'light-blue': '#A6CFD5',
'aero-blue': '#C2E7D9',
'rose': '#D90368',
'moss-green': '#625834',
}),
},
variants: {
extend: {},
},
plugins: [],
}