1
0
Fork 0
mirror of https://github.com/pawelmalak/flame.git synced 2025-07-25 13:59:36 +02:00
flame/client/src/interfaces/Theme.ts

8 lines
123 B
TypeScript
Raw Normal View History

2021-05-06 19:03:31 +02:00
export interface Theme {
name: string;
colors: {
background: string;
primary: string;
accent: string;
}
}