diff --git a/src/App.vue b/src/App.vue index d966dac..7624a57 100644 --- a/src/App.vue +++ b/src/App.vue @@ -72,7 +72,15 @@ const cardOverrides: Partial = { const lightCard: Partial = { ...cardOverrides, - borderColor: '#1D5DEC' + borderColor: '#1D5DEC', + color: '#f9f9f8' +} + +const buttonOverrides: Partial = { + textColorHover: '#3633fa', + borderHover: '1px solid #3633fa', + textColorFocus: '#a2a1ff', + borderFocus: '1px solid #a2a1ff' } const lightThemeOverrides: GlobalThemeOverrides = { @@ -86,6 +94,7 @@ const lightThemeOverrides: GlobalThemeOverrides = { Card: lightCard, GradientText: gradientTextOverrides, Menu: lightMenu, + Button: buttonOverrides, // ... }; @@ -99,49 +108,52 @@ const darkThemeOverrides: GlobalThemeOverrides = { Card: cardOverrides, GradientText: gradientTextOverrides, Menu: darkMenu, + Button: buttonOverrides, // ... };