cometchat-flutter-v6-theming
Installation
SKILL.md
CometChat Flutter UIKit — Theming & Styling
How to customize the visual appearance of all CometChat components.
Theme System Architecture
Three layers, resolved via Flutter's ThemeExtension system:
CometChatColorPalette— all colors (primary, neutral, alert, background, text, icon, button, border)CometChatSpacing— spacing tokensCometChatTypography— text styles (heading1-4, body, caption1-2, button, link, title)
Access via static helpers:
final colors = CometChatThemeHelper.getColorPalette(context);
final spacing = CometChatThemeHelper.getSpacing(context);
final typography = CometChatThemeHelper.getTypography(context);