From 107c9fce94c0a61cb1690da64c0321866d33b237 Mon Sep 17 00:00:00 2001 From: MaysWind Date: Wed, 19 Jul 2023 00:24:00 +0800 Subject: [PATCH] fix default icon color --- src/styles/desktop/global.scss | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/styles/desktop/global.scss b/src/styles/desktop/global.scss index 50f2fd18..da4e4b82 100644 --- a/src/styles/desktop/global.scss +++ b/src/styles/desktop/global.scss @@ -30,13 +30,13 @@ input[type=number] { /** Custom class **/ :root { - --default-icon-color: var(--v-theme-on-surface); + --default-icon-color: rgba(var(--v-theme-on-background), var(--v-high-emphasis-opacity)); --v-expand-panel-title-bg: rgba(var(--v-theme-on-surface), var(--v-hover-opacity)); --v-card-title-bg: rgba(var(--v-theme-on-surface), var(--v-hover-opacity)); } :root .v-theme--dark { - --default-icon-color: var(--v-theme-on-surface); + --default-icon-color: rgba(var(--v-theme-on-background), var(--v-high-emphasis-opacity)); --v-expand-panel-title-bg: rgba(var(--v-theme-on-surface), var(--v-hover-opacity)); --v-card-title-bg: rgba(var(--v-theme-on-surface), var(--v-hover-opacity)); }