mirror of
https://github.com/pawelmalak/flame.git
synced 2025-07-25 13:59:36 +02:00
8 lines
123 B
TypeScript
8 lines
123 B
TypeScript
|
export interface Theme {
|
||
|
name: string;
|
||
|
colors: {
|
||
|
background: string;
|
||
|
primary: string;
|
||
|
accent: string;
|
||
|
}
|
||
|
}
|