mirror of
https://github.com/BrenBroZAYT/gameyfin.git
synced 2026-06-14 16:20:04 +00:00
21 lines
451 B
TypeScript
21 lines
451 B
TypeScript
export type Theme = {
|
|
name?: string,
|
|
colors: {
|
|
background?: string,
|
|
foreground?: string,
|
|
primary: {
|
|
50: string,
|
|
100: string,
|
|
200: string,
|
|
300: string,
|
|
400: string,
|
|
500: string,
|
|
600: string,
|
|
700: string,
|
|
800: string,
|
|
900: string,
|
|
DEFAULT: string
|
|
},
|
|
focus?: string,
|
|
}
|
|
} |