-
Notifications
You must be signed in to change notification settings - Fork 1
/
tailwind.config.js
77 lines (77 loc) · 2.4 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
module.exports = {
purge: [
'./src/**/*.js',
'./src/**/*.jsx',
'./src/**/**/*.js',
'./src/**/**/*.jsx',
],
darkMode: 'class',
theme: {
extend: {
colors: {
'red': '#f56c6d',
},
backgroundColor: {
'dark': '#2c2d30',
'light': '#f3f5f8',
'body-light': '#f1f3f6',
'red': '#f56c6d',
},
boxShadow: {
'light-inner': 'inset 3px 3px 3px #cdcdcd, inset -3px -3px 3px #fafafa, 0px 0px 0px #cdcdcd, 0px 0px 0px #fafafa',
'light-outer': 'inset 0px 0px 0px #cdcdcd, inset 0px 0px 0px #fafafa, 3px 3px 3px #cdcdcd, -3px -3px 3px #fafafa',
'dark-inner': 'inset 3px 3px 3px #202125, inset -3px -3px 3px #353535, 0px 0px 0px #202125, 0px 0px 0px #353535',
'dark-outer': 'inset 0px 0px 0px #202125, inset 0px 0px 0px #353535, 3px 3px 3px #202125, -3px -3px 3px #353535',
},
height: {
'160': '40rem',
},
width: {
'0%': '0%',
'5%': '5%',
'10%': '10%',
'15%': '15%',
'20%': '20%',
'25%': '25%',
'30%': '30%',
'35%': '35%',
'40%': '40%',
'45%': '45%',
'50%': '50%',
'55%': '55%',
'60%': '60%',
'65%': '65%',
'70%': '70%',
'75%': '75%',
'80%': '80%',
'85%': '85%',
'90%': '90%',
'95%': '95%',
'100%': '100%',
},
fontFamily: {
'fa': ['font-fa'],
'en': ['font-en'],
},
},
},
variants: {
extend: {
animation: ['responsive', 'hover'],
boxShadow: ['dark'],
darkMode: ['focus'],
flexDirection: ['direction'],
margin: ['direction'],
inset: ['direction'],
response: ['direction'],
borderWidth: ['direction'],
rotate: ['direction'],
textAlign: ['direction'],
fontFamily: ['direction'],
fontWeight: ['direction'],
},
},
plugins: [
require('tailwindcss-dir')(),
],
}