-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcolors.css
81 lines (65 loc) · 1019 Bytes
/
colors.css
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
78
79
80
81
/* Normal Colors */
body {
color: #222;
background-color: #eef5ee;
}
a {
color: #4b4bff;
}
a:hover {
color: #1919ff;
}
.button {
color: #fffd;
background-color: #fff2;
border-color: #fff4;
}
.button:hover {
color: #fff;
background-color: #fff3;
border-color: #fff6;
}
.button.prominent {
color: #fffe;
}
header {
color: #fff;
background: linear-gradient(to right, #155799, #159957);
}
.developer-info {
background-color: #00eeff1a;
}
.developer-info h2 {
color: #25bb77;
}
/* Dark Mode Colors */
@media (prefers-color-scheme: dark) {
body {
color: #ddd;
background-color: #2b302b;
}
a {
color: #5b6bff;
}
a:hover {
color: #80a0ff;
}
.button {
color: #eeed;
border-color: #eee4;
}
.button:hover {
color: #eeee;
border-color: #eee6;
}
.button.prominent {
color: #eeee;
}
.button.prominent:hover {
color: #eee;
}
header {
color: #ddd;
background: linear-gradient(to right, #155799, #159957);
}
}