Change default palette to Modern Premium#2
Merged
evcatalyst merged 2 commits intomainfrom Mar 21, 2026
Merged
Conversation
Co-authored-by: evcatalyst <8740078+evcatalyst@users.noreply.github.com> Agent-Logs-Url: https://github.com/gitbrainlab/BackWords/sessions/9ae245f1-21fa-48bf-84cf-98d330db79e1
Copilot
AI
changed the title
[WIP] Change default color scheme to modern premium
Change default palette to Modern Premium
Mar 21, 2026
evcatalyst
approved these changes
Mar 21, 2026
There was a problem hiding this comment.
Pull request overview
Updates the app’s default UI palette from scholarly to modernPremium, aligning the PWA runtime defaults with the shared settings schema.
Changes:
- Change
DEFAULT_SETTINGS.palettedefault tomodernPremiumin the PWA. - Change the shared schema’s default palette value to
modernPremium.
Reviewed changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated 1 comment.
| File | Description |
|---|---|
| pwa/src/types/settings.ts | Updates the PWA runtime default palette to modernPremium. |
| packages/shared-schema/AppSettings.schema.json | Updates the schema default for the palette-related setting to modernPremium. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
| "enum": ["scholarly", "modernPremium", "consumerFriendly"], | ||
| "default": "scholarly", | ||
| "default": "modernPremium", | ||
| "description": "Default color palette" |
There was a problem hiding this comment.
In this schema, the property name defaultPerspective appears to represent the UI color palette (per the description). Consider renaming the schema property to something palette-related (e.g., palette/defaultPalette) or adjust the description to explicitly explain why it's called “perspective”, to avoid confusion for schema consumers.
Suggested change
| "description": "Default color palette" | |
| "description": "Default visual perspective (UI color palette/theme)" |
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.
The default color palette was
scholarly; change it tomodernPremiumacross both the runtime defaults and the shared schema.Changes
pwa/src/types/settings.ts—DEFAULT_SETTINGS.palette: 'scholarly'→'modernPremium'packages/shared-schema/AppSettings.schema.json—defaultPerspective.default: "scholarly"→"modernPremium"Original prompt
💡 You can make Copilot smarter by setting up custom instructions, customizing its development environment and configuring Model Context Protocol (MCP) servers. Learn more Copilot coding agent tips in the docs.