mirror of
https://github.com/ajnart/homarr.git
synced 2026-02-27 08:50:56 +01:00
* fix: prevent flickering by removing auto color scheme and default background color * fix: typecheck issue
3 lines
113 B
TypeScript
3 lines
113 B
TypeScript
export const colorSchemes = ["light", "dark"] as const;
|
|
export type ColorScheme = (typeof colorSchemes)[number];
|