Skip to content

Commit

Permalink
fix: input border color for light theme
Browse files Browse the repository at this point in the history
  • Loading branch information
ankitskvmdam committed Mar 10, 2022
1 parent e4ba1d9 commit 8a3a456
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/input-base/input-base.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ const InputBaseRoot = createStyledComponent<'input', InputBaseProps>(
if (isError) return `${base} ${error.main}`
if (isWarning) return `${base} ${warning.main}`

const _color = tto(themeType, grey[50], darkGrey[50])
const _color = tto(themeType, grey[80], darkGrey[50])
return `${base} ${_color}`
}

Expand Down

0 comments on commit 8a3a456

Please sign in to comment.