-
Notifications
You must be signed in to change notification settings - Fork 6
/
tailwind.config.js
62 lines (62 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
module.exports = {
theme: {
extend: {
colors: {
primary: '#81a78f',
dark: '#313131',
'yellow-main': {
300: '#beb950',
500: '#f1e05a',
},
'green-main': {
100: '#ebffeb',
400: '#4fc08d',
600: '#9bd681',
700: '#81a78f',
'700-40': '#81a78f47',
800: '#435d4c',
},
'gray-main': {
50: '#ebf4f1',
100: '#f5f5f5',
200: '#eaecef',
300: '#e4e4e4',
350: '#E5E5E5',
400: '#e7e9db',
600: '#586069',
700: '#808080',
750: '#444444',
800: '#313131',
950: '#1a1a1a',
},
'blue-main': {
300: '#09f',
400: '#1f8ed5',
500: '#526488',
600: '#0366d6',
700: '#35495e',
750: '#1f8ed540',
800: '#2c3e50',
900: '#243746',
950: '#091a28',
},
},
borderWidth: {
6: '6px',
},
},
},
variants: {},
plugins: [],
content: [
'components/**/*.vue',
'layouts/**/*.vue',
'pages/**/*.vue',
'plugins/**/*.js',
'nuxt.config.js',
],
experimental: {
darkModeVariant: true,
},
dark: 'class',
}