manually set default icon color

This commit is contained in:
MaysWind
2023-08-07 00:48:48 +08:00
parent 195f513416
commit 1753a6c247
2 changed files with 5 additions and 5 deletions
+2 -2
View File
@@ -39,13 +39,13 @@ input[type=number] {
/** Custom class **/
:root {
--default-icon-color: rgba(var(--v-theme-on-background), var(--v-high-emphasis-opacity));
--default-icon-color: #000;
--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: rgba(var(--v-theme-on-background), var(--v-high-emphasis-opacity));
--default-icon-color: #fff;
--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));
}