mirror of
https://github.com/pawelmalak/flame.git
synced 2026-02-28 09:23:12 +08:00
11 lines
159 B
TypeScript
11 lines
159 B
TypeScript
export interface ThemeColors {
|
|
background: string;
|
|
primary: string;
|
|
accent: string;
|
|
}
|
|
|
|
export interface Theme {
|
|
name: string;
|
|
colors: ThemeColors;
|
|
}
|