|
1 | 1 | :root { |
2 | 2 | /* Background color of the body */ |
3 | 3 | /* Text color for the borg screen of death */ |
4 | | - --color-bg: #ffffff; |
| 4 | + --color-bg: #1e1e1e; |
5 | 5 | /* Background color for man messages */ |
6 | | - --color-man-bg: #edf3ff; |
| 6 | + --color-man-bg: #272727; |
7 | 7 | /* Background color for the header bar */ |
8 | 8 | /* Line color between log messages */ |
9 | | - --color-header-bg: #eeeeee; |
| 9 | + --color-header-bg: #303030; |
10 | 10 | /* Background color of the line that shows the builder (below the header) */ |
11 | | - --color-builder-bg: #fffaaf; |
| 11 | + --color-builder-bg: #cd9309; |
12 | 12 | /* Foreground color of the line that shows the builder (below the header) */ |
13 | | - --color-builder: #5270a3; |
| 13 | + --color-builder: rgba(0, 0, 0, 0.8); |
14 | 14 |
|
15 | 15 | /* Background color for the selected header tab if it is not focused */ |
16 | | - --color-tab-selected: #005fff; |
| 16 | + --color-tab-selected: #444444; |
17 | 17 | /* Background color for non-selected tabs */ |
18 | 18 | /* Background color for hovered, focused or active links */ |
19 | | - --color-tab-unselected: #afffff; |
| 19 | + --color-tab-unselected: #00000000; |
20 | 20 | /* Background color of the focused tab */ |
21 | | - --color-tab-focus: #dc00b8; |
| 21 | + --color-tab-focus: #4b4b4b; |
22 | 22 | /* Text color for the header bar */ |
23 | 23 | /* Text color of unclicked links. */ |
24 | | - --color-tab-text: var(--color-tab-selected); |
| 24 | + --color-tab-text: var(--color-text); |
25 | 25 | /* Text color for selected tabs (also if they are selected) */ |
26 | | - --color-tab-selected-text: var(--color-bg); |
| 26 | + --color-tab-selected-text: var(--color-text); |
27 | 27 |
|
28 | 28 | /* Default text color of the body */ |
29 | | - --color-text: #000000; |
| 29 | + --color-text: #ffffff; |
30 | 30 | /* Text color for ofborg and stomp messages */ |
31 | 31 | /* Color of the message that you require js */ |
32 | 32 | /* Text color of the line that shows the builder (below the header) */ |
33 | | - --color-info: rgba(0, 0, 0, 0.5); |
| 33 | + --color-info: rgba(255, 255, 255, 0.5); |
34 | 34 | /* Text color for error messages */ |
35 | | - --color-error: #ba3300; |
| 35 | + --color-error: #ff7b63; |
36 | 36 |
|
37 | 37 | /* Left border color for borg messages, like man or system information */ |
38 | 38 | /* Background of the borg screen of death */ |
39 | | - --color-borg: #2d8f34; |
| 39 | + --color-borg: #26a269; |
40 | 40 | /* Left border color for man messages */ |
41 | | - --color-man: #424775; |
| 41 | + --color-man: #1a5fb4; |
42 | 42 | /* Text color for stompjs debug messages */ |
43 | 43 | /* Text color for visited links */ |
44 | | - --color-debug: #8f2d87; |
| 44 | + --color-debug: #613583; |
45 | 45 |
|
46 | 46 | /* Line height */ |
47 | 47 | --line-height: 1.3rem; |
48 | 48 | /* Header height */ |
49 | 49 | --header-height: var(--line-height); |
50 | 50 | } |
51 | 51 |
|
52 | | -@media (prefers-color-scheme: dark) { |
| 52 | +@media (prefers-color-scheme: light) { |
53 | 53 | :root { |
54 | | - --color-bg: #1e1e1e; |
55 | | - --color-man-bg: #272727; |
56 | | - --color-header-bg: #303030; |
57 | | - --color-builder-bg: #cd9309; |
58 | | - --color-builder: rgba(0, 0, 0, 0.8); |
59 | | - --color-tab-selected: #444444; |
60 | | - --color-tab-unselected: #00000000; |
61 | | - --color-tab-focus: #4b4b4b; |
62 | | - --color-tab-text: var(--color-text); |
63 | | - --color-tab-selected-text: var(--color-text); |
64 | | - --color-text: #ffffff; |
65 | | - --color-info: rgba(255, 255, 255, 0.5); |
66 | | - --color-error: #ff7b63; |
67 | | - --color-borg: #26a269; |
68 | | - --color-man: #1a5fb4; |
69 | | - --color-debug: #613583; |
| 54 | + --color-bg: #ffffff; |
| 55 | + --color-man-bg: #edf3ff; |
| 56 | + --color-header-bg: #eeeeee; |
| 57 | + --color-builder-bg: #fffaaf; |
| 58 | + --color-builder: #5270a3; |
| 59 | + --color-tab-selected: #005fff; |
| 60 | + --color-tab-unselected: #afffff; |
| 61 | + --color-tab-focus: #dc00b8; |
| 62 | + --color-tab-text: var(--color-tab-selected); |
| 63 | + --color-tab-selected-text: var(--color-bg); |
| 64 | + --color-text: #000000; |
| 65 | + --color-info: rgba(0, 0, 0, 0.5); |
| 66 | + --color-error: #ba3300; |
| 67 | + --color-borg: #2d8f34; |
| 68 | + --color-man: #424775; |
| 69 | + --color-debug: #8f2d87; |
70 | 70 | } |
71 | 71 | } |
72 | 72 |
|
|
0 commit comments