Skip to content

Commit 8292cae

Browse files
committed
feat(themes): add chocomonkey theme
1 parent a6d15f2 commit 8292cae

3 files changed

Lines changed: 17 additions & 17 deletions

File tree

frontend/src/ts/constants/themes.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1126,10 +1126,10 @@ export const ThemesList: Theme[] = Object.keys(themes)
11261126
.sort()
11271127
.map(
11281128
(it) =>
1129-
({
1130-
...themes[it as ThemeName],
1131-
name: it,
1132-
} as Theme)
1129+
({
1130+
...themes[it as ThemeName],
1131+
name: it,
1132+
} as Theme),
11331133
);
11341134

11351135
export const ThemesListSorted = [
Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
:root {
2-
--bg-color: #1b2228;
3-
--main-color: #a7c080;
4-
--caret-color: #d8a657;
5-
--sub-color: #7f8c8d;
6-
--sub-alt-color: #151a1f;
7-
--text-color: #d3c6aa;
8-
--error-color: #e67e80;
9-
--error-extra-color: #e67e80;
10-
--colorful-error-color: #e67e80;
11-
--colorful-error-extra-color: #d699b6;
12-
}
1+
:root {
2+
--bg-color: #1b2228;
3+
--main-color: #a7c080;
4+
--caret-color: #d8a657;
5+
--sub-color: #7f8c8d;
6+
--sub-alt-color: #151a1f;
7+
--text-color: #d3c6aa;
8+
--error-color: #e67e80;
9+
--error-extra-color: #e67e80;
10+
--colorful-error-color: #e67e80;
11+
--colorful-error-extra-color: #d699b6;
12+
}

packages/schemas/src/themes.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -191,5 +191,5 @@ export const ThemeNameSchema = z.enum(
191191
],
192192
{
193193
errorMap: customEnumErrorHandler("Must be a known theme"),
194-
}
194+
},
195195
);

0 commit comments

Comments
 (0)