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>
30 lines
557 B
TOML
30 lines
557 B
TOML
mode = "light"
|
|
|
|
accent = "#6e6e6e"
|
|
selection = "#c0c0c0"
|
|
muted = "#c0c0c0"
|
|
|
|
background = "#ffffff"
|
|
dark_background = "#bfbfbf"
|
|
darker_background = "#808080"
|
|
lighter_background = "#c0c0c0"
|
|
|
|
foreground = "#000000"
|
|
dark_foreground = "#c0c0c0"
|
|
light_foreground = "#000000"
|
|
bright_foreground = "#000000"
|
|
|
|
red = "#2a2a2a"
|
|
yellow = "#4a4a4a"
|
|
green = "#3a3a3a"
|
|
cyan = "#3e3e3e"
|
|
blue = "#1a1a1a"
|
|
magenta = "#2e2e2e"
|
|
|
|
bright_red = "#2a2a2a"
|
|
bright_yellow = "#4a4a4a"
|
|
bright_green = "#3a3a3a"
|
|
bright_cyan = "#3e3e3e"
|
|
bright_blue = "#1a1a1a"
|
|
bright_magenta = "#2e2e2e"
|