-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathtailwind.config.js
40 lines (40 loc) · 1.12 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
module.exports = {
content: ['./src/**/*.{js,jsx,ts,tsx}', './public/index.html'],
theme: {
extend: {
fontFamily: {
'sans': ['Noto\\ Sans', 'Helvetica', 'Arial', 'sans-serif'],
'roboto': ['Roboto', 'Noto\\ Sans', 'Helvetica', 'Arial', 'sans-serif']
},
scale: {
'-1': '-1'
},
transitionProperty: {
'height': 'height'
},
width: {
"xl": "36rem"
},
maxWidth: {
"mini": "1.5rem",
"home": "800px"
},
boxShadow: {
'up': '0 10px 10px 5px rgba(0, 0, 0, 1)',
'floatingbutton': '0 1px 6px -1px rgba(0,0,0,0.65)',
},
colors: {
gray: {
25: '#FDFEFF',
975: '#040302',
},
brand: {
400: '#16418A',
500: '#006be2',
600: '#227be2'
}
}
},
},
plugins: [],
}