Update alacritty template to use '#'s for hex colors

This commit is contained in:
Dakedres 2025-05-12 16:11:26 -06:00
parent f0806686b6
commit 909416b503

View File

@ -6,32 +6,32 @@ draw_bold_text_with_bright_colors = false
# Default colors # Default colors
[colors.primary] [colors.primary]
background = '0x{{base00}}' background = "#{{base00}}"
foreground = '0x{{base05}}' foreground = "#{{base05}}"
# Colors the cursor will use if `custom_cursor_colors` is true # Colors the cursor will use if `custom_cursor_colors` is true
[colors.cursor] [colors.cursor]
text = '0x{{base00}}' text = "#{{base00}}"
cursor = '0x{{base05}}' cursor = "#{{base05}}"
# Normal colors # Normal colors
[colors.normal] [colors.normal]
black = '0x{{base00}}' black = "#{{base00}}"
red = '0x{{base08}}' red = "#{{base08}}"
green = '0x{{base0B}}' green = "#{{base0B}}"
yellow = '0x{{base0A}}' yellow = "#{{base0A}}"
blue = '0x{{base0D}}' blue = "#{{base0D}}"
magenta = '0x{{base0E}}' magenta = "#{{base0E}}"
cyan = '0x{{base0C}}' cyan = "#{{base0C}}"
white = '0x{{base05}}' white = "#{{base05}}"
# Bright colors # Bright colors
[colors.bright] [colors.bright]
black = '0x{{base03}}' black = "#{{base03}}"
red = '0x{{base09}}' red = "#{{base09}}"
green = '0x{{base01}}' green = "#{{base01}}"
yellow = '0x{{base02}}' yellow = "#{{base02}}"
blue = '0x{{base04}}' blue = "#{{base04}}"
magenta = '0x{{base06}}' magenta = "#{{base06}}"
cyan = '0x{{base0F}}' cyan = "#{{base0F}}"
white = '0x{{base07}}' white = "#{{base07}}"