Commit 351f66a8 authored by Callil Capuozzo's avatar Callil Capuozzo Committed by GitHub

fix: Update input placeholder text color (#4848)

Update input placeholder text color
parent 79c7c019
...@@ -36,7 +36,7 @@ const StyledInput = styled.input<{ error?: boolean; fontSize?: string; align?: s ...@@ -36,7 +36,7 @@ const StyledInput = styled.input<{ error?: boolean; fontSize?: string; align?: s
} }
::placeholder { ::placeholder {
color: ${({ theme, redesignFlag }) => (redesignFlag ? theme.textSecondary : theme.deprecated_text4)}; color: ${({ theme, redesignFlag }) => (redesignFlag ? theme.textTertiary : theme.deprecated_text4)};
} }
` `
......
...@@ -300,7 +300,7 @@ export const colorsDark: Palette = { ...@@ -300,7 +300,7 @@ export const colorsDark: Palette = {
backgroundModule: colors.gray800, backgroundModule: colors.gray800,
backgroundInteractive: colors.gray700, backgroundInteractive: colors.gray700,
backgroundFloating: opacify(12, colors.black), backgroundFloating: opacify(12, colors.black),
backgroundOutline: opacify(24, colors.gray300), backgroundOutline: opacify(14, colors.gray300),
backgroundScrim: opacify(72, colors.gray900), backgroundScrim: opacify(72, colors.gray900),
backgroundScrolledSurface: opacify(72, colors.gray900), backgroundScrolledSurface: opacify(72, colors.gray900),
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment