Skip to content
Open
Show file tree
Hide file tree
Changes from 1 commit
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 @@ -1114,6 +1114,12 @@ export const themes: Record<ThemeName, Omit<Theme, "name">> = {
subColor: "#5b578e",
textColor: "#f4e0c9",
},
chocomonkey: {
bgColor: "#1b2228",
mainColor: "#a7c080",
subColor: "#7f8c8d",
textColor: "#d3c6aa",
}
};

export const ThemesList: Theme[] = Object.keys(themes)
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;
--color-error-extra-color: #d699d6;
Comment thread
Garu006 marked this conversation as resolved.
Outdated
}
1 change: 1 addition & 0 deletions packages/schemas/src/themes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -187,6 +187,7 @@ export const ThemeNameSchema = z.enum(
"watermelon",
"wavez",
"witch_girl",
"chocomonkey",
],
Comment on lines 188 to 191
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

{
errorMap: customEnumErrorHandler("Must be a known theme"),
Expand Down
Loading