Skip to content

Commit

Permalink
Add missing colors to catalog app
Browse files Browse the repository at this point in the history
  • Loading branch information
wmontwe committed Sep 27, 2023
1 parent 3b7111d commit dd7aaf2
Showing 1 changed file with 18 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -52,12 +52,30 @@ fun LazyGridScope.colorItems() {
color = MainTheme.colors.surface,
)
}
item {
ColorContent(
name = "Success",
color = MainTheme.colors.success
)
}
item {
ColorContent(
name = "Error",
color = MainTheme.colors.error,
)
}
item {
ColorContent(
name = "Warning",
color = MainTheme.colors.warning,
)
}
item {
ColorContent(
name = "Info",
color = MainTheme.colors.info
)
}
}

@Composable
Expand Down

0 comments on commit dd7aaf2

Please sign in to comment.