Change card colors and add aestheticDark theme.

This commit is contained in:
Sean Morley
2024-09-06 23:35:48 -04:00
parent ee249fd682
commit 5ca5e1f69c
10 changed files with 72 additions and 19 deletions

View File

@@ -9,9 +9,18 @@ export const actions: Actions = {
// change the theme only if it is one of the allowed themes
if (
theme &&
['light', 'dark', 'night', 'retro', 'forest', 'aqua', 'forest', 'garden', 'emerald'].includes(
theme
)
[
'light',
'dark',
'night',
'retro',
'forest',
'aqua',
'forest',
'aestheticLight',
'aestheticDark',
'emerald'
].includes(theme)
) {
cookies.set('colortheme', theme, {
path: '/',