-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
61 lines (61 loc) · 1.28 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
module.exports = {
mode: 'jit',
purge: {
enabled: true,
content: [
'./src/**/*.html',
'./src/**/*.scss'
]
},
darkMode: false, // or 'media' or 'class'
theme: {
extend: {
colors: {
white_light: "#F3F4F6",
gray_background_light: "#37393F",
gray_light_hover: '#323339',
gray_background_dark: "#202225",
gray_subtitle: "#AAAAAB",
gray_subtitle_hover: '#dddddd',
blue_border: "#CDF6FF",
blue_button: "#12606D",
blue_button_hover: "#105662",
img_background: '#53565A',
},
transitionDuration: {
'special': '100ms',
},
borderWidth: {
lign: '0.0938rem',
big: '2.5rem',
cadre: '0.625rem',
biglign: '0.25rem',
},
padding: {
'13': '3.25rem',
'special': '2.5rem',
'special2': '9.8rem', /* de base 7.3*/
},
height: {
'18': '4.6875rem',
'lign':'0.0625rem',
},
width: {
'15': '3.75rem',
'18': '4.6875rem',
'lign':'0.0625rem',
},
margin: {
'footer': '8.75rem',
'special': '2.5rem',
},
inset: {
'button': '9.375rem',
}
},
},
variants: {
extend: {},
},
plugins: [],
}