1
0
Fork 0
mirror of https://github.com/pawelmalak/flame.git synced 2025-07-24 05:39:35 +02:00
flame/client/src/interfaces/Theme.ts
2021-05-06 19:04:00 +02:00

8 lines
No EOL
123 B
TypeScript

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