Skip to content

Commit b80ea3f

Browse files
committed
Enhance contrast of Snackbar colors for better visibility
1 parent 204c0af commit b80ea3f

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

tools/idea-plugin/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@
66

77
- Add ability to import Material Symbols directly inside plugin and convert it into ImageVector
88

9+
### Changed
10+
11+
- Enhance contrast of Snackbar colors for better visibility
12+
913
## [0.17.4](https://github.com/ComposeGears/Valkyrie/releases/tag/0.17.4) - 2025-10-22
1014

1115
### Fixed

tools/idea-plugin/src/main/kotlin/io/github/composegears/valkyrie/ui/ValkyriePlugin.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -115,8 +115,8 @@ fun ValkyriePlugin(
115115
Snackbar(
116116
snackbarData = it,
117117
shape = MaterialTheme.shapes.small,
118-
containerColor = MaterialTheme.colorScheme.background,
119-
contentColor = MaterialTheme.colorScheme.onBackground,
118+
containerColor = MaterialTheme.colorScheme.inverseSurface,
119+
contentColor = MaterialTheme.colorScheme.inverseOnSurface,
120120
)
121121
},
122122
)

0 commit comments

Comments
 (0)