WalletPanelColors
data class WalletPanelColors(val pillBackground: Color, val pillBorder: Color, val onPill: Color, val onPillDim: Color, val sheetBackground: Color, val onSheet: Color, val onSheetDim: Color, val onSheetSubtle: Color, val accent: Color, val error: Color, val button: Color, val onButton: Color, val buttonDisabled: Color, val onButtonDisabled: Color, val positive: Color = MidnightColors.SuccessText)
Color tokens for WalletStatusPanel. Host apps can pass a custom palette to theme the wallet panel; Default matches the dark-themed example apps already in this repo.
API contract: part of the dapp-ui public surface. @Immutable so Compose treats the type as stable across recompositions.
Constructors
Link copied to clipboard
constructor(pillBackground: Color, pillBorder: Color, onPill: Color, onPillDim: Color, sheetBackground: Color, onSheet: Color, onSheetDim: Color, onSheetSubtle: Color, accent: Color, error: Color, button: Color, onButton: Color, buttonDisabled: Color, onButtonDisabled: Color, positive: Color = MidnightColors.SuccessText)