💄(demo) add reflux theme

Add a dark theme inspired by a famous streaming platform
with red tint.
This commit is contained in:
jbpenrath
2024-02-14 00:44:33 +01:00
committed by Jean-Baptiste PENRATH
parent cd476ae82b
commit 270357bc7e
6 changed files with 289 additions and 2 deletions

View File

@@ -5,6 +5,7 @@ import { Home } from "./Home";
enum Theme {
CUNNINGHAM = "cunningham",
REDFLUX = "redflux",
}
enum Variant {
@@ -17,6 +18,10 @@ const THEMES: Record<Theme, Record<Variant, string | undefined>> = {
light: "default",
dark: "dark",
},
[Theme.REDFLUX]: {
light: undefined,
dark: "redflux_dark",
},
};
export enum Page {