-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathtailwind.config.js
53 lines (53 loc) · 1.05 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./assets/src/**/*.js',
'./inc/admin.php',
'./inc/dashboard_widget.php'
],
theme: {
extend: {
backgroundPosition: {
'promo': '90% 70%'
},
colors: {
'promo-orange': '#FF8811',
'primary': '#EF686B',
'success': '#5F9D61',
'danger': '#E77777',
'info': '#577BF9',
'warning': '#ffebeb',
'light-blue': '#EEF2FE',
'dark-blue': '#3557A6',
'purple-gray': '#757296',
'grayish-blue': '#f6f6fa',
'light-black': '#626262',
'opaque-black': '#0000006E',
'stale-yellow': '#FFF0C9',
'mango-yellow': '#FBBF24',
'disabled': '#6786F4',
'light-gray': 'rgba(87, 123, 249, 0.36)'
},
fontFamily: {
'serif': [ '-apple-system', 'BlinkMacSystemFont', 'sans-serif' ]
},
fontSize: {
'2': '2rem',
's': '13px'
},
maxWidth: {
'64': '64px',
'screen-xl': 'min( 1320px, 90%)'
},
minHeight: {
'40': '40px'
},
outlineWidth: {
3: '3px'
},
outlineOffset: {
3: '3px'
}
}
}
};