SnackBarThemeOptions

data class SnackBarThemeOptions(val messageTextColor: String = "#FFFFFF", val actionTextColor: String = "#FFCB05", val backgroundColor: String = "#004F71")

Theming options for a snackbar, specifying colors as hex strings for message text, action text, and background.

Used only for in-memory UI configuration — no serialization needed.

Constructors

Link copied to clipboard
constructor(messageTextColor: String = "#FFFFFF", actionTextColor: String = "#FFCB05", backgroundColor: String = "#004F71")

Properties

Link copied to clipboard

Hex color string for the snackbar action button text; defaults to yellow.

Link copied to clipboard

Hex color string for the snackbar background; defaults to a warm orange.

Link copied to clipboard

Hex color string for the snackbar message text; defaults to white.