-
Notifications
You must be signed in to change notification settings - Fork 1
/
tailwind.config.js
72 lines (72 loc) · 1.44 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
module.exports = {
purge: ['./src/**/*.{js,jsx,ts,tsx}', './public/index.html'],
darkMode: false, // or 'media' or 'class'
theme: {
extend: {
colors: {
primary: "#ff0000",
secondary: "red",
three: '#b5e745',
four: '#4f4f4f',
five: '#FF4D00',
background: {
DEFAULT: "#0F1416",
lighter: '#263238',
darker: "#0B0E0F",
}
},
spacing: {
in: 'inherit'
},
maxHeight: {
106: '34rem'
},
maxWidth: {
106: '34rem',
"1/4": "25%",
},
width: {
106: '34rem'
},
minHeight: {
1: '1rem',
2: '2rem',
3: '3rem',
4: '4rem',
5: '5rem',
11: "9.5rem",
12: '11rem',
106: '34rem'
},
minWidth: {
36: '9rem',
"1/4": "25%",
},
borderWidth: {
DEFAULT: '1px',
'0': '0',
'2': '2px',
'3': '3px',
'4': '4px',
'6': '6px',
'8': '8px',
}
},
},
variants: {
extend: {
display: ["group-hover"],
borderRadius: ["group-hover"],
visibility: ["group-hover"],
zIndex: ["hover"],
opacity: ['disabled'],
border: ['first', 'last'],
borderColor: ['focus-visible', 'first'],
borderWidth: ['first', 'last']
},
},
plugins: [
require("@tailwindcss/line-clamp")
],
mode: 'jit',
}