From 7f63bf5d79ef7bc7b7e48fa1d6cbfcb3deef5938 Mon Sep 17 00:00:00 2001 From: thepaperpilot Date: Sat, 23 Apr 2022 22:34:13 -0500 Subject: [PATCH] Made default theme's feature foreground dark rather than light --- src/components/fields/Select.vue | 2 +- src/data/themes.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/fields/Select.vue b/src/components/fields/Select.vue index d727d14..417d122 100644 --- a/src/components/fields/Select.vue +++ b/src/components/fields/Select.vue @@ -70,7 +70,7 @@ function onUpdate(value: SelectOption) { } .vue-dropdown-item { - color: var(--feature-foreground); + color: var(--foreground); } .vue-dropdown-item, diff --git a/src/data/themes.ts b/src/data/themes.ts index 148114e..a83e61a 100644 --- a/src/data/themes.ts +++ b/src/data/themes.ts @@ -35,7 +35,7 @@ const defaultTheme: Theme = { variables: { "--foreground": "#dfdfdf", "--background": "#0f0f0f", - "--feature-foreground": "#eee", + "--feature-foreground": "#0f0f0f", "--tooltip-background": "rgba(0, 0, 0, 0.75)", "--raised-background": "#0f0f0f", "--points": "#ffffff",