-
Notifications
You must be signed in to change notification settings - Fork 20
/
tailwind.config.js
63 lines (62 loc) · 1.17 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
63
const defaultTheme = require("tailwindcss/defaultTheme")
module.exports = {
content: [
"./index.html",
"./src/**/*.rs",
],
theme: {
fontFamily: {
default: [defaultTheme.fontFamily.mono],
},
colors: {
white: "#FFFFFF",
default: {
bg: "#0D0D0D",
border: "#333333",
},
"title-bar": {
bg: "#191919",
close: "#AA0000",
},
"menu-bar": "#242424",
"scroll-bar": {
bg: "#090909",
fg: "#4F4F4F",
},
table: {
odd: "#121212",
even: "#1A1A1A",
},
popup: "#121212",
me1: {
bg: "#1C526E",
tab: "#296B94",
active: "#478CAB",
hover: "#D46E2B",
},
me2: {
bg: "#A3521F",
tab: "#B35E29",
active: "#D97D40",
hover: "#38853B",
},
me3: {
bg: "#660000",
tab: "#870000",
active: "#B30000",
hover: "#05476E",
},
theme: {
bg: "var(--bg)",
tab: "var(--tab)",
active: "var(--active)",
hover: "var(--hover)",
},
},
extend: {},
},
variants: {
extend: {},
},
plugins: [],
}