diff --git a/src/App.vue b/src/App.vue index 3a005d2..1b0cee8 100644 --- a/src/App.vue +++ b/src/App.vue @@ -4,12 +4,13 @@ :inline-theme-disabled="configProviderProps.inlineThemeDisabled" :locale="configProviderProps.locale" :style="{ - '--color-error': themeVars.errorColor, - '--color-info': themeVars.infoColor, - '--color-primary': themeVars.primaryColor, - '--color-success': themeVars.successColor, - '--color-warning': themeVars.warningColor, + '--color-error': themeCommon.errorColor, + '--color-info': themeCommon.infoColor, + '--color-primary': themeCommon.primaryColor, + '--color-success': themeCommon.successColor, + '--color-warning': themeCommon.warningColor, }" + :theme-overrides="themeOverrides" > @@ -28,7 +29,7 @@