blob: 8020491ede90237c49d755cb91f630572be5fd51 (
plain)
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
|
* {
/* Main */
--main-bg: #333;
--main-color: white;
/* Server */
--server-bg-ok: #0B0;
--server-bg-loading: #DA0;
--server-bg-closed: #D00;
--server-color-ok: white;
--server-color-loading: white;
--server-color-closed: white;
/* Gui and topbar */
--gui-bg-main: #555;
--gui-bg-game: #777;
--gui-color-game: white;
--gui-shadow-game: #222;
--top-border: #999;
--top-bg: #333;
--top-bg-button: #555;
--top-bg-button-hover: #999;
--top-bg-button-active: #777;
--top-color-button: white;
--top-color-button-hover: white;
--top-color-button-active: white;
/* Table */
/* Card defaults */
--card-color: black;
--card-bg: white;
--card-border: #bbb;
--card-hover: #0f0;
/* Input */
--input-color-text: white;
--input-color-text-hover: white;
--input-color-text-active: white;
--input-bg-text: #777;
--input-bg-text-hover: #777;
--input-bg-text-active: #777;
--input-border-text: #222;
--input-border-text-hover: #AAA;
--input-border-text-active: #3ea2ff;
--input-color-button: white;
--input-color-button-hover: white;
--input-color-button-active: white;
--input-bg-button: #0084ff;
--input-bg-button-hover: #3ea2ff;
--input-bg-button-active:#0056a7;
--input-bg-bool: #555;
--input-bg-bool-hover: #999;
--input-bg-bool-active: #777;
--input-bg-bool-true: white;
--input-border-bool: #999;
--input-border-bool-hover: #999;
--input-border-bool-active: #999;
--input-border-bool-true: #999;
--input-color-select: white;
--input-color-select-hover: white;
--input-color-select-active: white;
--input-bg-select: #777;
--input-bg-select-hover: #888;
--input-bg-select-active: #777;
--input-border-select: #222;
--input-border-select-hover: #AAA;
--input-border-select-active: #3ea2ff;
--input-bg-multi: rgba(30, 30, 30, 0.3);
--input-bg-multi-hover: rgba(200, 200, 200, 0.3);
}
|