-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtailwind.config.js
49 lines (49 loc) · 1.23 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
module.exports = {
content: {
files: ["*.html", "./src/**/*.rs"],
},
darkMode: 'class', // Enables dark mode based on class
theme: {
extend: {
colors: {
light: {
100: '#474343'
},
primary: {
900: '#1e1e1e',
800: '#303030',
700: '#383838',
600: '#474343',
500: '#4e4e4e',
400: '#616161',
300: '#aeaeae',
200: '#bbbbbb',
100: '#ffffff'
},
accent: {
red: {
200: '#C08686',
100: '#FFB0B0',
},
green: {
300: '#5F894D',
200: '#74a770',
100: '#9ee19a',
},
blue: {
400: '#0075FF',
300: '#012456',
200: '#006591',
100: '#0178ab',
}
},
console: {
bg: '#012456'
}
},
boxShadow: {
'executing': 'inset 0px 0px 20px 0px #12ff77',
}
},
}
}