fix default icon color

This commit is contained in:
MaysWind
2023-07-19 00:24:00 +08:00
parent 4c18b3e059
commit 107c9fce94
+2 -2
View File
@@ -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));
}