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>
53 lines
1.4 KiB
Smarty
53 lines
1.4 KiB
Smarty
return {
|
|
{
|
|
"bjarneo/aether.nvim",
|
|
branch = "v3",
|
|
name = "aether",
|
|
priority = 1000,
|
|
opts = {
|
|
colors = {
|
|
bg = "{{ background }}",
|
|
dark_bg = "{{ dark_background }}",
|
|
darker_bg = "{{ darker_background }}",
|
|
lighter_bg = "{{ lighter_background }}",
|
|
|
|
fg = "{{ foreground }}",
|
|
dark_fg = "{{ dark_foreground }}",
|
|
light_fg = "{{ light_foreground }}",
|
|
bright_fg = "{{ bright_foreground }}",
|
|
muted = "{{ muted }}",
|
|
|
|
red = "{{ red }}",
|
|
yellow = "{{ yellow }}",
|
|
orange = "{{ orange }}",
|
|
green = "{{ green }}",
|
|
cyan = "{{ cyan }}",
|
|
blue = "{{ blue }}",
|
|
magenta = "{{ magenta }}",
|
|
brown = "{{ brown }}",
|
|
|
|
bright_red = "{{ bright_red }}",
|
|
bright_yellow = "{{ bright_yellow }}",
|
|
bright_green = "{{ bright_green }}",
|
|
bright_cyan = "{{ bright_cyan }}",
|
|
bright_blue = "{{ bright_blue }}",
|
|
bright_magenta = "{{ bright_magenta }}",
|
|
|
|
accent = "{{ accent }}",
|
|
cursor = "{{ bright_foreground }}",
|
|
foreground = "{{ foreground }}",
|
|
background = "{{ background }}",
|
|
selection = "{{ selection }}",
|
|
selection_foreground = "{{ selection_foreground }}",
|
|
selection_background = "{{ selection_background }}",
|
|
},
|
|
},
|
|
},
|
|
{
|
|
"LazyVim/LazyVim",
|
|
opts = {
|
|
colorscheme = "aether",
|
|
},
|
|
},
|
|
}
|