Like documented in the Alacritty wiki the configuration file can contain multiple color schemes by using the great YAML anchor and aliases feature. This is way better than the currently documented installation method that replaces the whole color scheme that was defined before.
By using YAML anchors the user can simply switch between multiple themes without the need to copy & paste them every time but only changing the reference name of the colors field.
schemes:
nord: &nord
primary:
#...
cursor:
# ...
normal:
#...
bright:
#...
dim:
# ...
colors: *nord
Like documented in the Alacritty wiki the configuration file can contain multiple color schemes by using the great YAML anchor and aliases feature. This is way better than the currently documented installation method that replaces the whole color scheme that was defined before.
By using YAML anchors the user can simply switch between multiple themes without the need to copy & paste them every time but only changing the reference name of the
colorsfield.