Rename bg/fg palette keys to background/foreground

The canonical colors.toml keys are now background/foreground, including
all permutations (dark_background, darker_background, lighter_background,
dark_foreground, light_foreground, bright_foreground). The old short
names are gone entirely, not kept as aliases; legacy alacritty-generated
themes still resolve through the ANSI color0/color7 fallback.

Theme files are also regrouped: accent/selection/muted first, then the
backgrounds, then the foregrounds, then the named colors.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
This commit is contained in:
David Heinemeier Hansson
2026-07-18 16:24:51 -07:00
co-authored by Claude Fable 5
parent 72d7646c64
commit afa2839a5a
46 changed files with 747 additions and 718 deletions
+13 -11
View File
@@ -1,19 +1,21 @@
mode = "dark"
accent = "#8bc9eb"
active_border_color = "#f2fcff"
active_tab_background = "#6fb8e3"
bg = "#16242d"
dark_bg = "#101b21"
darker_bg = "#0b1216"
lighter_bg = "#1b2d40"
selection = "#243d56"
muted = "#304860"
dark_fg = "#4d86b0"
fg = "#d6e2ee"
light_fg = "#d6e2ee"
bright_fg = "#f2fcff"
background = "#16242d"
dark_background = "#101b21"
darker_background = "#0b1216"
lighter_background = "#1b2d40"
foreground = "#d6e2ee"
dark_foreground = "#4d86b0"
light_foreground = "#d6e2ee"
bright_foreground = "#f2fcff"
active_border_color = "#f2fcff"
active_tab_background = "#6fb8e3"
red = "#4d86b0"
yellow = "#6fa4c9"