1
0
Fork 0
mirror of https://github.com/pawelmalak/flame.git synced 2025-08-03 18:05:18 +02:00

Changed how theme is set and stored on client

This commit is contained in:
Paweł Malak 2022-03-23 14:49:35 +01:00
parent e427fbf54c
commit 89bd921875
12 changed files with 92 additions and 191 deletions

View file

@ -1,8 +1,10 @@
export interface ThemeColors {
background: string;
primary: string;
accent: string;
}
export interface Theme {
name: string;
colors: {
background: string;
primary: string;
accent: string;
}
}
colors: ThemeColors;
}