forked from librenms/librenms
-
Notifications
You must be signed in to change notification settings - Fork 3
/
tailwind.config.js
41 lines (41 loc) · 890 Bytes
/
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
module.exports = {
prefix: 'tw-',
content: [
'./storage/framework/views/*.php',
'./resources/**/*.blade.php',
'./resources/**/*.js',
'./resources/**/*.vue',
'./html/js/boot.js',
],
darkMode: 'class',
theme: {
extend: {
colors: {
dark: {
'gray-100': '#4f565d',
'gray-200': '#3e444c',
'gray-300': '#353a41',
'gray-400': '#2e3338',
'gray-500': '#272b30',
'white-100': '#f9fafb',
'white-200': '#c8c8c8',
'white-300': '#bebfbf',
'white-400': '#acb6bf',
}
},
borderWidth: {
'0.5': '0.5px',
},
boxShadow: {
'inner-glow': 'inset 0 0 11px rgba(0, 0, 0, 0.1)',
}
},
screens: {
'sm': '576px',
'md': '768px',
'lg': '992px',
'xl': '1200px',
}
},
plugins: [],
}