Make the Alacritty theme file cleaner

Transform color keys to lowercase like in all other theme files.
Remove unnecessary comments.
This commit is contained in:
Alexander Oakman 2024-08-22 17:49:44 +03:00
parent 271069c881
commit 778dc6528b

View file

@ -1,96 +1,96 @@
color_set:
text: &TEXT "#CAD3F5"
subtext0: &SUBTEXT0 "#E3E3F3"
subtext1: &SUBTEXT1 "#CED4E0"
surface2: &SURFACE2 "#5B6078"
surface1: &SURFACE1 "#494D64"
index16: &INDEX16 "#ED6C13"
index17: &INDEX17 "#F4DBD6"
base: &BASE "#24273A"
red: &RED "#ED6070"
green: &GREEN "#A6DA95"
blue: &BLUE "#8AADF4"
yellow: &YELLOW "#EED49F"
pink: &PINK "#F5BDE6"
teal: &TEAL "#8BD5CA"
rosewater: &ROSEWATER "#F4DBD6"
lavender: &LAVENDER "#B7BDF8"
text: &TEXT "#cad3f5"
subtext0: &SUBTEXT0 "#e3e3f3"
subtext1: &SUBTEXT1 "#ced4e0"
surface2: &SURFACE2 "#5b6078"
surface1: &SURFACE1 "#494d64"
index16: &INDEX16 "#ed6c13"
index17: &INDEX17 "#f4dbd6"
base: &BASE "#24273a"
red: &RED "#ed6070"
green: &GREEN "#a6da95"
blue: &BLUE "#8aadf4"
yellow: &YELLOW "#eed49f"
pink: &PINK "#f5bde6"
teal: &TEAL "#8bd5ca"
rosewater: &ROSEWATER "#f4dbd6"
lavender: &LAVENDER "#b7bdf8"
colors:
# Default colors
primary:
background: *BASE # base
foreground: *TEXT # text
background: *BASE
foreground: *TEXT
# Bright and dim foreground colors
dim_foreground: *TEXT # text
bright_foreground: *TEXT # text
dim_foreground: *TEXT
bright_foreground: *TEXT
# Cursor colors
cursor:
text: *BASE # base
cursor: *ROSEWATER # rosewater
text: *BASE
cursor: *ROSEWATER
vi_mode_cursor:
text: *BASE # base
cursor: *LAVENDER # lavender
text: *BASE
cursor: *LAVENDER
# Search colors
search:
matches:
foreground: *BASE # base
background: *SUBTEXT0 # subtext0
foreground: *BASE
background: *SUBTEXT0
focused_match:
foreground: *BASE # base
background: *GREEN # green
foreground: *BASE
background: *GREEN
footer_bar:
foreground: *BASE # base
background: *SUBTEXT0 # subtext0
foreground: *BASE
background: *SUBTEXT0
# Keyboard regex hints
hints:
start:
foreground: *BASE # base
background: *YELLOW # yellow
foreground: *BASE
background: *YELLOW
end:
foreground: *BASE # base
background: *SUBTEXT0 # subtext0
foreground: *BASE
background: *SUBTEXT0
# Selection colors
selection:
text: *BASE # base
background: *ROSEWATER # rosewater
text: *BASE
background: *ROSEWATER
# Normal colors
normal:
black: *SURFACE1 # surface1
red: *RED # red
green: *GREEN # green
yellow: *YELLOW # yellow
blue: *BLUE # blue
magenta: *PINK # pink
cyan: *TEAL # teal
white: *SUBTEXT1 # subtext1
black: *SURFACE1
red: *RED
green: *GREEN
yellow: *YELLOW
blue: *BLUE
magenta: *PINK
cyan: *TEAL
white: *SUBTEXT1
# Bright colors
bright:
black: *SURFACE2 # surface2
red: *RED # red
green: *GREEN # green
yellow: *YELLOW # yellow
blue: *BLUE # blue
magenta: *PINK # pink
cyan: *TEAL # teal
white: *SUBTEXT0 # subtext0
black: *SURFACE2
red: *RED
green: *GREEN
yellow: *YELLOW
blue: *BLUE
magenta: *PINK
cyan: *TEAL
white: *SUBTEXT0
# Dim colors
dim:
black: *SURFACE1 # surface1
red: *RED # red
green: *GREEN # green
yellow: *YELLOW # yellow
blue: *BLUE # blue
magenta: *PINK # pink
cyan: *TEAL # teal
white: *SUBTEXT1 # subtext1
black: *SURFACE1
red: *RED
green: *GREEN
yellow: *YELLOW
blue: *BLUE
magenta: *PINK
cyan: *TEAL
white: *SUBTEXT1
indexed_colors:
- { index: 16, color: *INDEX16 }