-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
48 lines (45 loc) · 934 Bytes
/
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
module.exports = {
purge: [
'src/**/*.js',
'src/**/*.jsx',
'src/**/*.ts',
'src/**/*.tsx',
'public/**/*.html',
],
darkMode: false, // or 'media' or 'class'
theme: {
extend: {
colors: {
body: '#F2F2F2',
primary: '#F9855B',
primaryLight: '#FFDACC',
primaryDark: '#E87E58',
secondary: '#000',
secondaryLight: '#423B39',
white: '#FFF',
border: '#CFD2DA',
borderLight: '#FFA07D',
placeholder: '#B0B4BD',
grayLight: '#727274',
},
fontFamily: {
display: 'Nunito',
body: 'Roboto',
},
minHeight: {
0: '0',
'1/4': '25%',
'1/2': '50%',
'3/4': '75%',
full: '100%',
},
backgroundImage: (theme) => ({
'any-image': "url('/src/images/test.jpg')",
}),
},
},
variants: {
extend: {},
},
plugins: [],
};