Files
flame/client/src/interfaces/Theme.ts
2022-03-23 14:49:35 +01:00

11 lines
159 B
TypeScript

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