diff --git a/src/containers/LandingThemeProvider/theme-config.ts b/src/containers/LandingThemeProvider/theme-config.ts index 43a0676..19916c4 100644 --- a/src/containers/LandingThemeProvider/theme-config.ts +++ b/src/containers/LandingThemeProvider/theme-config.ts @@ -37,6 +37,44 @@ const overrides = { } }, }, + components: { + Input: { + variants: { + filled: { + field: { + borderRadius: 12, + bgColor: 'primary.50', + color: 'primary.600', + _hover: { + borderColor: 'primary.100', + bgColor: 'primary.50', + }, + _focus: { + borderColor: 'primary.200', + } + } + } + } + }, + Select: { + variants: { + filled: { + field: { + borderRadius: 12, + bgColor: 'primary.50', + color: 'primary.600', + _hover: { + borderColor: 'primary.100', + bgColor: 'primary.50', + }, + _focus: { + borderColor: 'primary.200', + } + } + } + } + } + } }; export default extendTheme(overrides); \ No newline at end of file