Apply Sunset Riviera color palette to Flutter theme#14
Draft
ether314 wants to merge 1 commit into
Draft
Conversation
Replace teal/coral tropical palette with Product-approved Sunset Riviera tokens (terracotta primary, sapphire secondary, apricot cream surface). Centralize colors in tropical_theme.dart ColorScheme and sweep chat, admin, and shared widgets to use semantic tokens instead of hard-coded Material greys and legacy TropicalColors names. Co-authored-by: Joe M <[email protected]>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Implements the Product-approved Sunset Riviera palette across Paradise Planner, replacing the previous teal/coral tropical theme with warm terracotta + Mediterranean sapphire tones.
Primary touch file:
flutter_app/lib/theme/tropical_theme.dart— colors are now semantic tokens (primary,secondary,surface,success,error, etc.) wired through explicitColorSchemedefinitions for both customer and admin themes.What changed
#C05621#7C2D12#1E40AF#FFF7ED#166534#B91C1CBackground gradient:
#C05621→#FDBA74→#FFF7ED→#93C5FDFiles updated
flutter_app/lib/theme/tropical_theme.dart— palette tokens + customer/adminThemeDataflutter_app/lib/chat/chat_screen.dart— success banner, error pillflutter_app/lib/chat/widgets/chat_widgets.dart— bubbles, typing indicator, send FABflutter_app/lib/admin/*.dart— inbox, detail, login screensflutter_app/web/manifest.json— theme_color →#C05621No changes to prompts, heuristics, or lead-extraction logic.
Before / After
Customer chat
Before (production — teal theme):

After (local — Sunset Riviera):

Admin login
Before:

After:

QA
flutter analyze— no new errors (4 pre-existing infos/warnings)node scripts/test-chat-flow.mjs(no logic changes expected)