mirror of
https://github.com/BrenBroZAYT/gameyfin.git
synced 2026-06-15 08:15:37 +00:00
20 lines
398 B
TypeScript
20 lines
398 B
TypeScript
import {Theme} from "Frontend/components/theming/Theme";
|
|
|
|
export class Themes {
|
|
public static LIGHT_DEFAULT = new Theme(
|
|
"Light default",
|
|
"#ffffff",
|
|
"#000000"
|
|
)
|
|
|
|
public static DARK_DEFAULT = new Theme(
|
|
"Dark default",
|
|
"#161B22",
|
|
"#ffffff"
|
|
)
|
|
|
|
public static all = [
|
|
Themes.LIGHT_DEFAULT,
|
|
Themes.DARK_DEFAULT
|
|
];
|
|
} |