-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathtailwind.js
43 lines (38 loc) · 1.51 KB
/
tailwind.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
const defaultTheme = require("tailwindcss/defaultTheme");
module.exports = {
theme: {
extend: {
textColor: {
default: "var(--text-default-colour)"
},
backgroundColor: {
header: "var(--header-bg-colour)",
container: "var(--container-bg-colour)",
button: "var(--button-bg-colour)",
/*
Some colours to play with from various dark themes that we know
work well, until we can figure out our own colour scheme.
*/
"discord-bg-1": "var(--discord-channel-list-bg)",
"discord-bg-2": "var(--discord-channel-list-active-bg)",
"discord-bg-3": "var(--discord-channel-list-hover-bg)",
"discord-bg-4": "var(--discord-server-list-hover-bg)",
"discord-bg-5": "var(--discord-main-content-bg)",
"discord-bg-6": "var(--discord-text-input-bg)",
"discord-bg-7": "var(--discord-search-input-bg)",
"discord-bg-8": "var(--discord-server-popup-item-bg)",
"discord-bg-9": "var(--discord-server-popup-item-hover-bg)",
"vscode-bg-1": "var(--vscode-activity-bar-bg)",
"vscode-bg-2": "var(--vscode-main-content-bg)",
"vscode-bg-3": "var(--vscode-explorer-bg)",
"vscode-bg-4": "var(--vscode-explorer-hover-bg)",
"vscode-bg-5": "var(--vscode-explorer-active-bg)",
"vscode-bg-6": "var(--vscode-menu-bar-bg)",
"vscode-bg-7": "var(--vscode-icon-bg)",
"vscode-bg-8": "var(--vscode-icon-active-bg)"
}
}
},
variants: {},
plugins: []
};