|
4 | 4 | @media (prefers-color-scheme: light) { |
5 | 5 | :root { |
6 | 6 | --bgcolor: rgba(232, 232, 232, 96%); |
7 | | - --invert: rgba(52, 52, 52, 96%); |
| 7 | + --invert: #262626; |
8 | 8 | --textcolor: #000; |
9 | | - --border: rgba(52, 52, 52, 96%); |
| 9 | + --border: #262626; |
10 | 10 | --linkcolor: #00e; |
11 | 11 | --visitedcolor: #551a8b; |
12 | 12 | --service-hover: rgba(0, 0, 0, 0.1); |
|
17 | 17 | } |
18 | 18 | :root.light { |
19 | 19 | --bgcolor: rgba(232, 232, 232, 96%); |
20 | | - --invert: rgba(52, 52, 52, 96%); |
| 20 | + --invert: #262626; |
21 | 21 | --textcolor: #000; |
22 | | - --border: rgba(52, 52, 52, 96%); |
| 22 | + --border: #262626; |
23 | 23 | --linkcolor: #00e; |
24 | 24 | --visitedcolor: #551a8b; |
25 | 25 | --service-hover: rgba(0, 0, 0, 0.1); |
|
29 | 29 | } |
30 | 30 | @media (prefers-color-scheme: dark) { |
31 | 31 | :root { |
32 | | - --bgcolor: rgba(52, 52, 52, 96%); |
| 32 | + --bgcolor: #262626; |
33 | 33 | --invert: rgba(232, 232, 232, 96%); |
34 | 34 | --textcolor: #fff; |
35 | 35 | --border: rgba(128, 128, 128, 96%); |
|
42 | 42 | } |
43 | 43 | } |
44 | 44 | :root.dark { |
45 | | - --bgcolor: rgba(52, 52, 52, 96%); |
| 45 | + --bgcolor: #262626; |
46 | 46 | --invert: rgba(232, 232, 232, 96%); |
47 | 47 | --textcolor: #fff; |
48 | 48 | --border: rgba(128, 128, 128, 96%); |
|
0 commit comments