This commit is contained in:
connermcnicholas 2025-10-29 18:08:08 +07:00 committed by GitHub
commit b754c5aa8e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 19 additions and 0 deletions

View file

@ -1114,6 +1114,12 @@ export const themes: Record<ThemeName, Omit<Theme, "name">> = {
subColor: "#5b578e",
textColor: "#f4e0c9",
},
pale_nimbus: {
bgColor: "#433e4c",
mainColor: "#94ffc2",
subColor: "#ffaca3",
textColor: "#feffdb",
},
};
export const ThemesList: Theme[] = Object.keys(themes)

View file

@ -0,0 +1,12 @@
:root {
--bg-color: #433e4c;
--main-color: #94ffc2;
--caret-color: #9efffd;
--sub-color: #ffaca3;
--sub-alt-color: #694f5e;
--text-color: #feffdb;
--error-color: #ff5c5c;
--error-extra-color: #ff0000;
--colorful-error-color: #ff3874;
--colorful-error-extra-color: #c2386f;
}

View file

@ -187,6 +187,7 @@ export const ThemeNameSchema = z.enum(
"watermelon",
"wavez",
"witch_girl",
"pale_nimbus",
],
{
errorMap: customEnumErrorHandler("Must be a known theme"),