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