Files
nixos/templates/alacritty.toml
2026-01-02 20:43:09 +01:00

33 lines
1.2 KiB
TOML

[colors.primary]
background = '{{colors.surface.default.hex}}'
foreground = '{{colors.on_surface.default.hex}}'
dim_foreground = '{{colors.on_surface_variant.default.hex}}'
[colors.cursor]
text = '{{colors.surface.default.hex}}'
cursor = '{{colors.primary.default.hex}}'
[cursor]
style = { shape = "Block", blinking = "Always" }
vi_mode_style = { shape = "Block" }
[colors.normal]
black = '{{colors.surface_container.default.hex}}'
red = '{{colors.error.default.hex}}'
green = '{{colors.primary.default.hex}}'
yellow = '{{colors.tertiary_container.default.hex}}'
blue = '{{colors.secondary.default.hex}}'
magenta = '{{colors.tertiary.default.hex}}'
cyan = '{{colors.primary_container.default.hex}}'
white = '{{colors.on_surface.default.hex}}'
[colors.bright]
black = '{{colors.surface_container_high.default.hex}}'
red = '{{colors.error_container.default.hex}}'
green = '{{colors.inverse_primary.default.hex}}'
yellow = '{{colors.on_tertiary_container.default.hex}}'
blue = '{{colors.on_secondary_container.default.hex}}'
magenta = '{{colors.on_tertiary.default.hex}}'
cyan = '{{colors.on_primary_container.default.hex}}'
white = '{{colors.inverse_surface.default.hex}}'