feat: add 15 secondary accent color options to theme palette#416
Open
EierKopZA wants to merge 2 commits into
Open
feat: add 15 secondary accent color options to theme palette#416EierKopZA wants to merge 2 commits into
EierKopZA wants to merge 2 commits into
Conversation
Contributor
There was a problem hiding this comment.
Pull request overview
Expands the app’s theme accent color palette by adding additional named colors and updating the settings “cycle” behavior so users can rotate through a larger set of accent options.
Changes:
- Added 15 new named accent colors and their hex mappings in
accentColorFromName(). - Updated the accent color cycling order in settings to include the full expanded palette.
Reviewed changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated 2 comments.
| File | Description |
|---|---|
| app/src/main/kotlin/com/arflix/tv/ui/skin/ArvioSkin.kt | Adds new secondary accent color name → hex mappings for theme resolution. |
| app/src/main/kotlin/com/arflix/tv/ui/screens/settings/SettingsViewModel.kt | Updates the accent color cycle list to include the expanded palette and new ordering. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Comment on lines
+1193
to
+1197
| val colors = listOf( | ||
| "White", "Silver", "Slate", "Charcoal", "Cream", | ||
| "Gold", "Bronze", "Amber", "Orange", "Red", "Maroon", | ||
| "Rose Gold", "Magenta", "Lavender", "Violet", "Indigo", "Navy", | ||
| "Blue", "Cyan", "Teal", "Green", "Olive", "Yellow" |
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
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.
feat: Add 15 secondary accent color options to theme palette
Overview
Expands the accent colour picker from 8 primary rainbow colours to 23 total, giving users significantly more control over their UI theme.
New colours
Cycle order
The order flows naturally: neutrals → warm metallics → reds → pinks/purples → blues/cyans → greens → back to White.
Files changed
app/src/main/kotlin/com/arflix/tv/ui/skin/ArvioSkin.ktaccentColorFromName()app/src/main/kotlin/com/arflix/tv/ui/screens/settings/SettingsViewModel.ktcycleAccentColor()Hex values
#FFD700#C0C0C0#EAA6A0#009688#00BCD4#E040FB#5D6D7E#8899AA#FFFDD0#8A9A5B#4A6FA5#FFC107#C62828#B39DDB#CD7F32Testing