Skip to content

Commit

Permalink
Fix color for chip using light theme (#1757)
Browse files Browse the repository at this point in the history
  • Loading branch information
nilsreichardt authored Oct 10, 2024
1 parent aaca4a1 commit 364a256
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,10 @@ ThemeData getLightTheme({
),
),
chipTheme: ChipThemeData(
backgroundColor: Colors.grey[100],
shape: RoundedRectangleBorder(
borderRadius: BorderRadius.circular(512),
borderRadius: BorderRadius.circular(8),
side: BorderSide(color: Colors.grey[300]!),
),
),
listTileTheme: ListTileThemeData(
Expand Down

0 comments on commit 364a256

Please sign in to comment.