diff --git a/frontends/ol-components/src/components/Input/Input.tsx b/frontends/ol-components/src/components/Input/Input.tsx index a8492e8bb5..f48316f348 100644 --- a/frontends/ol-components/src/components/Input/Input.tsx +++ b/frontends/ol-components/src/components/Input/Input.tsx @@ -200,6 +200,16 @@ const AdornmentButtonStyled = styled("button")(({ theme }) => ({ ":hover": { background: "rgba(0, 0, 0, 0.06)", }, + color: theme.custom.colors.silverGray, + ".MuiInputBase-root:hover &": { + color: "inherit", + }, + ".MuiInputBase-root.Mui-focused &": { + color: "inherit", + }, + ".MuiInputBase-root.Mui-disabled &": { + color: "inherit", + }, height: "100%", }))