fix: expand 3-digit hex colors to 6-digit in standard themes#158
Open
Arvuno wants to merge 1 commit into
Open
Conversation
Expand shorthand hex colors (#RGB → #RRGGBB) in popos_dark.yaml, popos_light.yaml, vitesse_black.yaml, and vitesse_dark_soft.yaml.
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
Expand shorthand 3-digit hex colors to 6-digit format in 4 theme files for YAML schema compliance.
Problem
The Warp theme schema expects 6-digit hex colors (#RRGGBB) but 4 theme files use 3-digit shorthand (#RGB):
standard/popos_dark.yamlstandard/popos_light.yamlstandard/vitesse_black.yamlstandard/vitesse_dark_soft.yamlThese files use
#000,#111,#222,#FFF,#EEEwhich are technically valid YAML but may cause issues with theme preview generators and color parsers expecting consistent 6-digit format.Solution
Expand each 3-digit hex to 6-digit equivalent:
#000→#000000#111→#111111#222→#222222#FFF→#FFFFFF#EEE→#EEEEEENo semantic changes — only the color string format.
Files Changed
standard/popos_dark.yaml— 4 colors expandedstandard/popos_light.yaml— 4 colors expandedstandard/vitesse_black.yaml— 1 color expandedstandard/vitesse_dark_soft.yaml— 1 color expanded