Skip to content

Commit 94a320e

Browse files
authored
feat(theme): add solarized osaka (@H4-MM-3R) (monkeytypegame#6287)
1 parent 04797b2 commit 94a320e

File tree

2 files changed

+63
-0
lines changed

2 files changed

+63
-0
lines changed

frontend/static/themes/_list.json

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -398,6 +398,13 @@
398398
"subColor": "#2aa198",
399399
"textColor": "#181819"
400400
},
401+
{
402+
"name": "solarized_osaka",
403+
"bgColor": "#00141a",
404+
"mainColor": "#859900",
405+
"subColor": "#2aa198",
406+
"textColor": "#b58900"
407+
},
401408
{
402409
"name": "terra",
403410
"bgColor": "#0c100e",
Lines changed: 56 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
1+
:root {
2+
--bg-color: #00141a;
3+
--main-color: #859900;
4+
--caret-color: #b58900;
5+
--sub-color: #2aa198;
6+
--sub-alt-color: #00222b;
7+
--text-color: #eee8d5;
8+
--error-color: #dc322f;
9+
--error-extra-color: #9b225c;
10+
--colorful-error-color: #d33682;
11+
--colorful-error-extra-color: #9b225c;
12+
}
13+
14+
#words {
15+
--correct-letter-color: var(--text-color);
16+
--untyped-letter-color: #586e75;
17+
}
18+
19+
header #logo {
20+
color: var(--text-color);
21+
}
22+
23+
header #logo .icon {
24+
color: var(--text-color) !important;
25+
}
26+
27+
key {
28+
color: var(--text-color);
29+
background-color: var(--sub-alt-color);
30+
}
31+
32+
button.text:hover,
33+
.button.text:hover,
34+
.textButton:hover {
35+
color: var(--caret-color);
36+
}
37+
38+
button.text.active,
39+
.button.text.active,
40+
.textButton.active {
41+
color: var(--main-color);
42+
}
43+
44+
button:hover,
45+
.button:hover,
46+
input[type="button"]:hover,
47+
input[type="reset"]:hover,
48+
input[type="submit"]:hover {
49+
color: var(--bg-color);
50+
background: var(--caret-color);
51+
}
52+
53+
.scrollToTopButton:hover {
54+
background: var(--caret-color);
55+
color: var(--bg-color);
56+
}

0 commit comments

Comments
 (0)