Skip to content

Commit

Permalink
Fix global border colors (#569)
Browse files Browse the repository at this point in the history
fix global border colors

Signed-off-by: Ivan Morgillo <[email protected]>
  • Loading branch information
hamen authored Aug 30, 2024
1 parent 67aad58 commit 008d969
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -39,14 +39,14 @@ public fun GlobalColors.Companion.dark(

@Composable
public fun BorderColors.Companion.light(
normal: Color = IntUiLightTheme.colors.gray(9),
normal: Color = IntUiLightTheme.colors.gray(12),
focused: Color = IntUiLightTheme.colors.gray(14),
disabled: Color = IntUiLightTheme.colors.gray(11),
): BorderColors = BorderColors(normal, focused, disabled)

@Composable
public fun BorderColors.Companion.dark(
normal: Color = IntUiDarkTheme.colors.gray(5),
normal: Color = IntUiDarkTheme.colors.gray(1),
focused: Color = IntUiDarkTheme.colors.gray(2),
disabled: Color = IntUiDarkTheme.colors.gray(4),
): BorderColors = BorderColors(normal, focused, disabled)
Expand Down

0 comments on commit 008d969

Please sign in to comment.