From 98034ae621fc1f956ef81163c1bccadc86206126 Mon Sep 17 00:00:00 2001 From: Bauke Date: Fri, 14 Jan 2022 20:11:12 +0100 Subject: [PATCH] Add the Love Light theme. --- source/scss/themes/_love.scss | 9 ++++++++- source/ts/utilities/themes.ts | 4 ++++ 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/source/scss/themes/_love.scss b/source/scss/themes/_love.scss index 1202b18..1f8bc8d 100644 --- a/source/scss/themes/_love.scss +++ b/source/scss/themes/_love.scss @@ -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; } diff --git a/source/ts/utilities/themes.ts b/source/ts/utilities/themes.ts index 3cf852d..6eec3bb 100644 --- a/source/ts/utilities/themes.ts +++ b/source/ts/utilities/themes.ts @@ -10,6 +10,10 @@ export const themes: Theme[] = [ cssClass: 'love-dark', name: 'Love Dark', }, + { + cssClass: 'love-light', + name: 'Love Light', + }, ]; export const themeContext = createContext(themes[0]);