diff --git a/src/inputs/TextField/index.tsx b/src/inputs/TextField/index.tsx index 78a97427..d83f8735 100644 --- a/src/inputs/TextField/index.tsx +++ b/src/inputs/TextField/index.tsx @@ -26,6 +26,10 @@ const CustomTextField = styled((props: TextFieldProps) => ( cursor: ${({ readOnly }) => (readOnly === true ? 'not-allowed' : 'auto')}; } + .MuiFilledInput-root { + background-color: ${({ theme }) => theme.colors.inputField}; + } + .MuiFormLabel-root.Mui-focused { color: ${({ theme, error }) => error ? theme.colors.error : theme.colors.primary};