-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
53 lines (52 loc) · 1.16 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: [
"./pages/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
fontFamily: {
'fredoka': ['Fredoka', 'serif']
},
colors: {
'twine': {
'50': '#fcfdf6',
'100': '#f7f8f1',
'200': '#f0e6db',
'300': '#e6d7c1',
'400': '#c09d6d',
'500': '#9e7b46',
'600': '#736232',
'700': '#5d4a23',
'800': '#392314',
'900': '#2c1d07',
},
'apple': {
'50': '#f1fbea',
'100': '#dff6d1',
'200': '#c0eda9',
'300': '#9adf77',
'400': '#75cf4c',
'500': '#5cbf31',
'600': '#418f21',
'700': '#336e1d',
'800': '#2d571d',
'900': '#274b1c',
},
'saffron': {
'50': '#fdfbe9',
'100': '#fcf6c5',
'200': '#faeb8e',
'300': '#f6d94e',
'400': '#f2c626',
'500': '#e2ac10',
'600': '#c3840b',
'700': '#9b5f0d',
'800': '#814b12',
'900': '#6d3e16',
},
}
},
},
plugins: [],
}