diff options
| author | Craig Jennings <c@cjennings.net> | 2026-06-13 17:57:30 -0500 |
|---|---|---|
| committer | Craig Jennings <c@cjennings.net> | 2026-06-13 17:57:30 -0500 |
| commit | 3de8afea1214884b00df6ad90176caa9bcadfe6c (patch) | |
| tree | ae8bd9064f241010fb40f4a30bcf8e97500b5e46 /scripts/theme-studio/palette-actions.js | |
| parent | 5f7481fb1d8b2a448b0c7031bde4138297946958 (diff) | |
| download | dotemacs-3de8afea1214884b00df6ad90176caa9bcadfe6c.tar.gz dotemacs-3de8afea1214884b00df6ad90176caa9bcadfe6c.zip | |
Fix theme studio fg endpoint selection
Diffstat (limited to 'scripts/theme-studio/palette-actions.js')
| -rw-r--r-- | scripts/theme-studio/palette-actions.js | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/scripts/theme-studio/palette-actions.js b/scripts/theme-studio/palette-actions.js index a7b3b28e..11f37d2f 100644 --- a/scripts/theme-studio/palette-actions.js +++ b/scripts/theme-studio/palette-actions.js @@ -28,7 +28,12 @@ function normalizePaletteEntry(entry){ const hex=entry&&entry[0],name=(entry&&entry[1])||'color'; return [hex,name,(entry&&entry[2])||columnIdOf(entry)]; } -function normalizePalette(){PALETTE=PALETTE.map(normalizePaletteEntry);} +function ensureGroundEndpoints(){ + const ground={bg:MAP['bg'],fg:MAP['p']}; + if(ground.bg&&!PALETTE.some(entry=>groundRoleOfEntry(entry,ground)==='bg'))PALETTE.unshift([ground.bg,'bg','ground']); + if(ground.fg&&!PALETTE.some(entry=>groundRoleOfEntry(entry,ground)==='fg'))PALETTE.push([ground.fg,'fg','ground']); +} +function normalizePalette(){PALETTE=PALETTE.map(normalizePaletteEntry);ensureGroundEndpoints();} // The ground column is explicit: bg pins the top endpoint, fg pins the bottom // endpoint, and generated ground-N steps live between them. function groundColumnMembers(){ |
