Skip to content

fix: expand 3-digit hex colors to 6-digit in standard themes#158

Open
Arvuno wants to merge 1 commit into
warpdotdev:mainfrom
Arvuno:fast-merge-pr-campaign-01/warp-themes-3digit-hex
Open

fix: expand 3-digit hex colors to 6-digit in standard themes#158
Arvuno wants to merge 1 commit into
warpdotdev:mainfrom
Arvuno:fast-merge-pr-campaign-01/warp-themes-3digit-hex

Conversation

@Arvuno
Copy link
Copy Markdown

@Arvuno Arvuno commented May 26, 2026

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.yaml
  • standard/popos_light.yaml
  • standard/vitesse_black.yaml
  • standard/vitesse_dark_soft.yaml

These files use #000, #111, #222, #FFF, #EEE which 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#EEEEEE

No semantic changes — only the color string format.

Files Changed

  • standard/popos_dark.yaml — 4 colors expanded
  • standard/popos_light.yaml — 4 colors expanded
  • standard/vitesse_black.yaml — 1 color expanded
  • standard/vitesse_dark_soft.yaml — 1 color expanded

Expand shorthand hex colors (#RGB → #RRGGBB) in popos_dark.yaml,
popos_light.yaml, vitesse_black.yaml, and vitesse_dark_soft.yaml.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant