-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathtailwind.config.js
More file actions
57 lines (55 loc) · 1.65 KB
/
Copy pathtailwind.config.js
File metadata and controls
57 lines (55 loc) · 1.65 KB
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
const colors = require('tailwindcss/colors');
/**
* suppress the warning od deprecated colors.
* @see https://github.com/tailwindlabs/tailwindcss/issues/4690#issuecomment-1046087220
*/
delete colors['lightBlue'];
delete colors['warmGray'];
delete colors['trueGray'];
delete colors['coolGray'];
delete colors['blueGray'];
module.exports = {
content: ['./src/**/*.html', './src/**/*.{js,jsx,ts,tsx}'],
darkMode: 'class',
theme: {
colors: {
...colors,
custom: {
modal: {
background: 'rgba(26,61,96, 0.9)',
'content-background': '#000',
},
theme: {
blue: {
DEFAULT: '#2267AE',
brand: 'var(--theme-brand)',
light: 'var(--theme-blue-light)',
dark: 'var(--theme-blue-dark)',
},
},
background: {
DEFAULT: '#121212',
},
foreground: {
DEFAULT: '#ccc',
},
'card-background': {
DEFAULT: 'var(--list-card-background)',
},
},
},
extend: {
spacing: {
'header-height': '45px',
'gutter-width': 'var(--gutter-width)',
'sidebar-width': 'var(--sidebar-width)',
'gutter-sidebar-width': 'var(--gutter-sidebar-width)',
'map-action-button-size': '32px',
},
},
},
variants: {
extend: {},
},
plugins: [],
};