-
Notifications
You must be signed in to change notification settings - Fork 3
/
tailwind.config.js
49 lines (47 loc) · 1014 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
42
43
44
45
46
47
48
49
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': '#0079c1',
'light': '#56a5d8',
'dark': '#1A3D60'
}
},
'background': {
DEFAULT: '#121212'
},
'foreground': {
DEFAULT: '#ccc'
}
}
},
extend: {},
},
variants: {
extend: {},
},
plugins: [],
}