Files
flame/client/src/interfaces/Theme.ts
2022-03-23 16:13:34 +01:00

12 lines
180 B
TypeScript

export interface ThemeColors {
background: string;
primary: string;
accent: string;
}
export interface Theme {
name: string;
colors: ThemeColors;
isCustom: boolean;
}