Add the Love Light theme.
This commit is contained in:
parent
521de9ec70
commit
98034ae621
|
@ -4,5 +4,12 @@
|
||||||
--foreground-2: #e6deff;
|
--foreground-2: #e6deff;
|
||||||
--background-1: #1f1731;
|
--background-1: #1f1731;
|
||||||
--background-2: #2a2041;
|
--background-2: #2a2041;
|
||||||
--accent-1: #d2b83a;
|
}
|
||||||
|
|
||||||
|
.love-light {
|
||||||
|
--border-radius: 8px;
|
||||||
|
--foreground-1: #1f1731;
|
||||||
|
--foreground-2: #2a2041;
|
||||||
|
--background-1: #f2efff;
|
||||||
|
--background-2: #e6deff;
|
||||||
}
|
}
|
||||||
|
|
|
@ -10,6 +10,10 @@ export const themes: Theme[] = [
|
||||||
cssClass: 'love-dark',
|
cssClass: 'love-dark',
|
||||||
name: 'Love Dark',
|
name: 'Love Dark',
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
cssClass: 'love-light',
|
||||||
|
name: 'Love Light',
|
||||||
|
},
|
||||||
];
|
];
|
||||||
|
|
||||||
export const themeContext = createContext<Theme>(themes[0]);
|
export const themeContext = createContext<Theme>(themes[0]);
|
||||||
|
|
Loading…
Reference in New Issue