-
Notifications
You must be signed in to change notification settings - Fork 1
/
tailwind.config.js
36 lines (34 loc) · 1.15 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
module.exports = {
theme: {
extend: {
colors: {
menu: 'rgba(61,66,71,.8)',
sectionwhite: '#F0F0F0',
sectiongray: '#E5E5E5',
positiveIcon: '#60d874',
negativeIcon: '#ff6252',
conclusionIcon: '#f6b007'
},
lineHeight: {
3: 3,
},
fontFamily: {
'araby-regular': ['AlarabyTelevision-Regular', 'Helvetica', 'Arial', 'Sans-Serif', '-apple-system', 'BlinkMacSystemFont'],
'araby-medium': ['AlarabyTelevision-Medium', 'Helvetica', 'Arial', 'Sans-Serif', '-apple-system', 'BlinkMacSystemFont'],
'araby-bold': ['AlarabyTelevision-Bold', 'Helvetica', 'Arial', 'Sans-Serif', '-apple-system', 'BlinkMacSystemFont']
},
height: {
siema: '450px'
},
width: {
contentSide: 'calc(100% - 340px)',
sidebarSide: '340px',
},
borderRadius: {
'card': '17px 17px 0'
},
}
},
variants: {},
plugins: []
}