-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
42 lines (42 loc) · 906 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
module.exports = {
theme: {
maxHeight: {
0: '0',
'1/4': '25%',
'1/2': '50%',
'3/4': '75%',
full: '100%',
},
extend: {
colors: {
dark: 'rgb(33, 33, 33)',
// primary: {
// lighter: 'hsl(207, 73%, 52%)',
// default: 'hsl(207, 73%, 57%)',
// darker: 'hsl(207, 73%, 44%)'
// },
// orange: {
// '100': '#ee7203',
// '200': '#ee7203',
// '300': '#ee7203',
// '400': '#ee7203',
// '500': '#ee7203',
// '600': '#ee7203',
// '700': '#ee7203',
// '800': '#ee7203',
// '900': '#ee7203',
// }
},
screens: {
print: { raw: 'print' },
// => @media print { ... }
},
},
},
variants: {},
plugins: [],
corePlugins: {
transformOrigin: false,
clear: false,
},
}