forked from outl1ne/nova-tailwind
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
91 lines (90 loc) · 1.86 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
const colors = require('tailwindcss/colors');
module.exports = {
purge: false,
theme: {
extend: {},
colors: colors,
boxShadow: {
xs: '0 0 0 1px rgba(0, 0, 0, 0.05)',
sm: '0 1px 2px 0 rgba(0, 0, 0, 0.05)',
xl: '0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04)',
'2xl': '0 25px 50px -12px rgba(0, 0, 0, 0.25)',
},
margin: {
5: '1.25rem',
10: '2.5rem',
12: '3rem',
16: '4rem',
20: '5rem',
24: '6rem',
32: '8rem',
40: '10rem',
48: '12rem',
56: '14rem',
64: '16rem',
'-5': '-1.25rem',
'-10': '-2.5rem',
'-12': '-3rem',
'-16': '-4rem',
'-20': '-5rem',
'-24': '-6rem',
'-32': '-8rem',
'-40': '-10rem',
'-48': '-12rem',
'-56': '-14rem',
'-64': '-16rem',
},
maxWidth: {
none: 'none',
'6xl': '110rem',
},
width: {
6: '1.5rem',
10: '2.5rem',
24: '6rem',
32: '8rem',
64: '16rem',
'1/2': '50%',
'2/4': '50%',
'2/6': '33.333333%',
'3/6': '50%',
'4/6': '66.666667%',
'1/12': '8.333333%',
'2/12': '16.666667%',
'3/12': '25%',
'4/12': '33.333333%',
'5/12': '41.666667%',
'6/12': '50%',
'7/12': '58.333333%',
'8/12': '66.666667%',
'9/12': '75%',
'10/12': '83.333333%',
'11/12': '91.666667%',
},
borderRadius: {
md: '0.375rem',
},
},
plugins: [],
corePlugins: {
fontSize: false,
fontFamily: false,
fontWeight: false,
lineHeight: false,
textAlign: false,
alignSelf: false,
float: false,
fill: false,
stroke: false,
borderWidth: false,
cursor: false,
maxHeight: false,
minWidth: false,
},
variants: {},
options: {
prefix: '',
important: false,
separator: ':',
},
};