1
Fork 0

Add the Love Light theme.

This commit is contained in:
Bauke 2022-01-14 20:11:12 +01:00
parent 521de9ec70
commit 98034ae621
Signed by: Bauke
GPG Key ID: C1C0F29952BCF558
2 changed files with 12 additions and 1 deletions

View File

@ -4,5 +4,12 @@
--foreground-2: #e6deff;
--background-1: #1f1731;
--background-2: #2a2041;
--accent-1: #d2b83a;
}
.love-light {
--border-radius: 8px;
--foreground-1: #1f1731;
--foreground-2: #2a2041;
--background-1: #f2efff;
--background-2: #e6deff;
}

View File

@ -10,6 +10,10 @@ export const themes: Theme[] = [
cssClass: 'love-dark',
name: 'Love Dark',
},
{
cssClass: 'love-light',
name: 'Love Light',
},
];
export const themeContext = createContext<Theme>(themes[0]);