From 419e8ce94813e6135e7b8ba58d5b9413251c9387 Mon Sep 17 00:00:00 2001 From: John Leider Date: Sat, 11 May 2024 10:19:49 -0500 Subject: [PATCH] fix(colors): apply color change to on-background instead of on-surface --- packages/vuetify/src/styles/generic/_colors.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/vuetify/src/styles/generic/_colors.scss b/packages/vuetify/src/styles/generic/_colors.scss index 487ebe6ddd53..bc475ef6e128 100644 --- a/packages/vuetify/src/styles/generic/_colors.scss +++ b/packages/vuetify/src/styles/generic/_colors.scss @@ -13,7 +13,7 @@ @mixin background-text-color($color_name, $color_type) { $map_value: map-deep-get(colors.$text-on-colors, $color_name, $color_type); - --v-theme-on-surface: #{$map_value} !important; + --v-theme-on-background: #{$map_value} !important; color: $map_value !important; }