File tree Expand file tree Collapse file tree 2 files changed +13
-0
lines changed
frontend/src/ts/constants Expand file tree Collapse file tree 2 files changed +13
-0
lines changed Original file line number Diff line number Diff line change @@ -2325,6 +2325,18 @@ export const themes: Record<ThemeName, Theme> = {
23252325 colorfulError : "#b29a91" ,
23262326 colorfulErrorExtra : "#b29a91" ,
23272327 } ,
2328+ cotton : {
2329+ bg : "#ffffff" ,
2330+ caret : "#636363" ,
2331+ main : "#878787" ,
2332+ sub : "#707070" ,
2333+ subAlt : "#dedede" ,
2334+ text : "#1c1c1c" ,
2335+ error : "#d93f4f" ,
2336+ errorExtra : "#d93f4f" ,
2337+ colorfulError : "#d93f4f" ,
2338+ colorfulErrorExtra : "#d93f4f" ,
2339+ } ,
23282340} ;
23292341
23302342export type ThemeWithName = Theme & { name : ThemeName } ;
Original file line number Diff line number Diff line change @@ -190,6 +190,7 @@ export const ThemeNameSchema = z.enum(
190190 "witch_girl" ,
191191 "pale_nimbus" ,
192192 "spiderman" ,
193+ "cotton" ,
193194 ] ,
194195 {
195196 errorMap : customEnumErrorHandler ( "Must be a known theme" ) ,
You can’t perform that action at this time.
0 commit comments