Skip to content

Commit

Permalink
Fix default button focused bg in dark Int UI standalone
Browse files Browse the repository at this point in the history
  • Loading branch information
rock3r committed Feb 29, 2024
1 parent f318103 commit 3e6d097
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ public object IntUiOutlinedButtonColorFactory {
public fun dark(
background: Brush = SolidColor(Color.Transparent),
backgroundDisabled: Brush = SolidColor(IntUiDarkTheme.colors.grey(5)),
backgroundFocused: Brush = SolidColor(IntUiDarkTheme.colors.grey(6)),
backgroundFocused: Brush = background,
backgroundPressed: Brush = SolidColor(IntUiDarkTheme.colors.grey(2)),
backgroundHovered: Brush = SolidColor(Color.Unspecified),
content: Color = IntUiDarkTheme.colors.grey(12),
Expand Down

0 comments on commit 3e6d097

Please sign in to comment.