-
Notifications
You must be signed in to change notification settings - Fork 2
/
tailwind.config.js
47 lines (47 loc) · 975 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
module.exports = {
purge: ['./src/**/*.{js,jsx,ts,tsx}', './public/index.html'],
darkMode: false, // or 'media' or 'class'
theme: {
extend: {
fontFamily: {
'body': ['Montserrat', 'sans-serif']
},
colors: {
'nav': '#64c9f3',
'navbar': '#fde8d3',
'selected': '#1e6d94',
red: {
'q': '#ED6356',
'bgq': '#F99A94'
},
yellow: {
'q': '#FDE9D4',
'q2': '#F5D152',
'q3': '#FDE9D4'
},
green: {
'q': '#52AC54',
'q2': '#265653'
},
purple: {
'q': "#111E54",
'q2': '#6F5BBA'
},
brown: {
'q': '#F3A261'
}
},
backgroundImage: theme => ({
'screen-pattern': "url('/src/unpad_asset/bg.png')",
}),
scale: {
'flip': '-1',
'115': '1.15'
}
},
},
variants: {
extend: {},
},
plugins: [],
}