-
Notifications
You must be signed in to change notification settings - Fork 2
/
tailwind.config.js
88 lines (88 loc) · 2.22 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
module.exports = {
mode: 'jit',
purge: ['./index.html', './src/**/*.{vue,js,ts,jsx,tsx}'],
darkMode: false, // or 'media' or 'class'
theme: {
boxShadow: {
sm: '0 1px 2px 0 rgba(0, 0, 0, 0.05)',
DEFAULT: '0px 3px 6px 0 rgb(0 0 0 / 1%), 0 1px 2px 0 rgb(0 0 0 / 6%)',
md: '0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06)',
lg: '0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px 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)',
'3xl': '0 35px 60px -15px rgba(0, 0, 0, 0.3)',
inner: 'inset 0 2px 4px 0 rgba(0, 0, 0, 0.06)',
none: 'none',
},
extend: {
fontFamily: {
'sans': ['Open Sans']
},
colors: {
primary: '#0d9677',
secondary: '#00d1b2',
third: '#be465c',
fourth: '#27a5cd',
dark: 'black',
light: '#ffffff',
gray: '#505050',
"gray-medium": '#898989',
"gray-light": '#EBEBEB',
"gray-2xlight": '#F4F6F8',
background: '#f6f6f6',
danger: '#e63755',
warning: '#ED8C1A',
success: '#0d9677',
},
minHeight: {
'0': '0',
'1/4': '25vh',
'1/2': '50vh',
'3/5': '60vh',
'5/10': '50vh',
'7/10': '70vh',
'4/5': '80vh',
'3/4': '75vh',
'full': '100vh'
},
width: {
'1/7': '14.2857143%',
'2/7': '28.5714286%',
'3/7': '42.8571429%',
'4/7': '57.1428571%',
'5/7': '71.4285714%',
'6/7': '85.7142857%',
'9/10': '90%',
'sidebar': '100%',
'scontent': 'calc(100%)',
},
height: {
'navbar': '4.3rem',
},
inset: {
'navbar': '4.3rem',
},
},
minWidth: theme => ({
...theme('width'),
}),
borderColors: theme => ({
...theme('colors'),
DEFAULT: '#EFEFEF',
}),
divideColor: theme => ({
...theme('borderColors'),
'dark': '#898989',
}),
stroke: theme => ({
...theme('colors'),
}),
fill: theme => ({
...theme('colors'),
}),
},
variants: {
extend: {},
},
plugins: [],
}