Fix alacritty colours

This commit is contained in:
2021-12-04 15:05:43 +00:00
parent 9517872a86
commit c3a1bf7d5b

View File

@@ -9,72 +9,72 @@
family = "Iosevka"; family = "Iosevka";
style = "Regular"; style = "Regular";
}; };
};
colors = { colors = {
primary = { primary = {
background = "0x282a36";
foreground = "0xf8f8f2";
};
cursor = {
text = "CellBackground";
cursor = "CellForeground";
};
vi_mode_cursor = {
text = "CellBackground";
cursor = "CellForeground";
};
search = {
matches = {
foreground = "0x44475a";
background = "0x50fa7b";
};
focused_match = {
foreground = "0x44475a";
background = "0xffb86c";
};
bar = {
background = "0x282a36"; background = "0x282a36";
foreground = "0xf8f8f2"; foreground = "0xf8f8f2";
}; };
cursor = { };
text = "CellBackground"; line_indicator = {
cursor = "CellForeground"; foreground = "None";
}; background = "None";
vi_mode_cursor = { };
text = "CellBackground"; selection = {
cursor = "CellForeground"; text = "CellForeground";
}; background = "0x44475a";
search = { };
matches = { normal = {
foreground = "0x44475a"; black = "0x000000";
background = "0x50fa7b"; red = "0xff5555";
}; green = "0x50fa7b";
focused_match = { yellow = "0xf1fa8c";
foreground = "0x44475a"; blue = "0xbd93f9";
background = "0xffb86c"; magenta = "0xff79c6";
}; cyan = "0x8be9fd";
bar = { white = "0xbfbfbf";
background = "0x282a36"; };
foreground = "0xf8f8f2"; bright = {
}; black = "0x4d4d4d";
}; red = "0xff6e67";
line_indicator = { green = "0x5af78e";
foreground = "None"; yellow = "0xf4f99d";
background = "None"; blue = "0xcaa9fa";
}; magenta = "0xff92d0";
selection = { cyan = "0x9aedfe";
text = "CellForeground"; white = "0xe6e6e6";
background = "0x44475a"; };
}; dim = {
normal = { black = "0x14151b";
black = "0x000000"; red = "0xff2222";
red = "0xff5555"; green = "0x1ef956";
green = "0x50fa7b"; yellow = "0xebf85b";
yellow = "0xf1fa8c"; blue = "0x4d5b86";
blue = "0xbd93f9"; magenta = "0xff46b0";
magenta = "0xff79c6"; cyan = "0x59dffc";
cyan = "0x8be9fd"; white = "0xe6e6d1";
white = "0xbfbfbf";
};
bright = {
black = "0x4d4d4d";
red = "0xff6e67";
green = "0x5af78e";
yellow = "0xf4f99d";
blue = "0xcaa9fa";
magenta = "0xff92d0";
cyan = "0x9aedfe";
white = "0xe6e6e6";
};
dim = {
black = "0x14151b";
red = "0xff2222";
green = "0x1ef956";
yellow = "0xebf85b";
blue = "0x4d5b86";
magenta = "0xff46b0";
cyan = "0x59dffc";
white = "0xe6e6d1";
};
}; };
}; };
}; };