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:
parent
e427fbf54c
commit
89bd921875
12 changed files with 92 additions and 191 deletions
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue