feat: add Appearance settings screen with accent, font and color picker - #70
Merged
Conversation
Second slice of the appearance-customization feature (docs/sonnet5-specs/02), depends on feat/appearance-data-and-theme. - AppearanceScreen.kt (new): live preview card, accent presets + custom HSV color picker (Canvas saturation/value square + hue slider + hex field), font family list, text size slider, Reset Appearance (with confirmation). - MainActivity.kt: new "Appearance" entry in SettingsDialog, wired to a new showAppearanceDialog state alongside the existing showConfigDialog pattern. Scope note: Theme mode (light/system) and background style are deliberately NOT exposed in this screen yet, even though the data model and buildColorScheme already support them (PR1). Large parts of the UI still read hardcoded colors instead of MaterialTheme, so switching either would visibly break things until the hardcoded-color migration lots land (docs/sonnet5-specs/02 §6/§10). Density/card corner/catalog layout are PR3's scope.
This was referenced Jul 24, 2026
PR Validation Summary ✅Status: All checks passed!
Reports and artifacts (including Lint HTML) are available in the Artifacts Tab of the Action Run Summary |
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.
Adds the Appearance settings screen accessible from Settings → Appearance. Includes accent color picker (presets + custom HSV), font family selector, and text size slider with live preview card. Builds on the appearance data layer merged in #64.