-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
62 lines (61 loc) · 1.26 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
54
55
56
57
58
59
60
61
62
/** @type {import('tailwindcss').Config} */
const config = {
darkMode: 'selector',
content: [, './index.html', './src/**/*.{ts,tsx}'],
theme: {
extend: {
fontFamily: {
fonts: ['Open Sans', 'Roboto', 'Helvetica Neue', 'Arial', 'sans-serif'],
},
colors: {
bg: {
DEFAULT: '#e6e6e6',
},
base: {
light: '#262119',
DEFAULT: '#28282e',
dark: '#1f1b13',
},
t: {
sec: '#aca6ac',
DEFAULT: '#ccc8cc',
dark: '#9b949',
},
hl: {
light: '#6599ff',
DEFAULT: '#0055ff',
dark: '#003fbd',
},
shl: {
light: '#4ce6ff',
DEFAULT: '#00ceef',
dark: '#00acc8',
},
secondary: {
DEFAULT: '#FFAA00',
dark: '#E29700',
},
error: {
DEFAULT: '#d73241',
dark: '#bc2532',
},
success: {
DEFAULT: '#00f000',
},
gray: {
light: '#d6d3d1',
DEFAULT: '#a8a29e',
dark: '#78716c',
},
},
opacity: {
disabled: '0.6',
},
},
},
plugins: [],
future: {
hoverOnlyWhenSupported: true,
},
}
export default config