generated from tinawng/nuxt-tailwind-static-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
50 lines (49 loc) · 1014 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
49
50
module.exports = {
purge: {
options: {
safelist: ['bg-red', 'bg-blue', 'bg-yellow', 'bg-gray', 'bg-gray-light', 'bg-gray-dark', 'bg-black', 'bg-white', 'h-2', 'h-3', 'h-4', 'h-5', 'h-6', 'w-2', 'w-3', 'w-4', 'w-5', 'w-6']
},
},
theme: {
colors: {
'black': '#000',
'gray': '#39373E',
'gray-light': '#A3A3A3',
'gray-dark': '#404040',
'white': '#FFF',
'blue': '#33F',
'red': '#F33',
'yellow': '#FC3',
'transparent': 'transparent'
},
extend: {
fontSize: {
'2xs': '.65rem',
'3xs': '.6rem',
},
height: {
'fit': 'fit-content',
'18': '4.5rem',
},
width: {
'fit': 'fit-content',
'18': '4.5rem',
},
zIndex: {
'-1': '-1',
},
margin: {
'13': '3.25rem',
}
},
screens: {
'sm': '1024px',
'md': '1081px',
'lg': '1920px',
'xl': '2560px',
},
},
variants: {
},
plugins: [],
}