Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions frontend/src/ts/constants/themes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2322,6 +2322,12 @@ export const themes: Record<ThemeName, Theme> = {
colorfulError: "#b29a91",
colorfulErrorExtra: "#b29a91",
},
chocomonkey: {
bgColor: "#1b2228",
mainColor: "#a7c080",
subColor: "#7f8c8d",
textColor: "#d3c6aa",
}
};

export type ThemeWithName = Theme & { name: ThemeName };
Expand Down
12 changes: 12 additions & 0 deletions frontend/static/themes/chocomonkey.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
:root {
--bg-color: #1b2228;
--main-color: #a7c080;
--caret-color: #d8a657;
--sub-color: #7f8c8d;
--sub-alt-color: #151a1f;
--text-color: #d3c6aa;
--error-color: #e67e80;
--error-extra-color: #e67e87;
--colorful-error-color: #e67e80;
--colorful-error-extra-color: #d699d6;
}
1 change: 1 addition & 0 deletions packages/schemas/src/themes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -188,6 +188,7 @@ export const ThemeNameSchema = z.enum(
"watermelon",
"wavez",
"witch_girl",
"chocomonkey",
"pale_nimbus",
"spiderman",
],
Comment on lines 188 to 194
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

the list is ordered by date added

Expand Down
Loading