mirror of
https://github.com/pawelmalak/flame.git
synced 2026-03-06 12:33:12 +08:00
12 lines
180 B
TypeScript
12 lines
180 B
TypeScript
export interface ThemeColors {
|
|
background: string;
|
|
primary: string;
|
|
accent: string;
|
|
}
|
|
|
|
export interface Theme {
|
|
name: string;
|
|
colors: ThemeColors;
|
|
isCustom: boolean;
|
|
}
|