Made default theme's feature foreground dark rather than light

This commit is contained in:
thepaperpilot 2022-04-23 22:34:13 -05:00
parent b161151424
commit 7f63bf5d79
2 changed files with 2 additions and 2 deletions

View file

@ -70,7 +70,7 @@ function onUpdate(value: SelectOption) {
}
.vue-dropdown-item {
color: var(--feature-foreground);
color: var(--foreground);
}
.vue-dropdown-item,

View file

@ -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",