From db329973ec77c3b294e0ffc8228c56164a304558 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hannes=20K=C3=B6rber?= Date: Tue, 5 Jul 2022 22:27:10 +0200 Subject: [PATCH] alacritty: Make black actually black Otherwise, "black" output is just invisible. Mainly visible with ansible DEBUG output, which is "dark gray", which is "1;30", which is black, which was until now the same as the background color. --- alacritty/alacritty.yml.j2 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/alacritty/alacritty.yml.j2 b/alacritty/alacritty.yml.j2 index 8adbbf0..c6d28f2 100644 --- a/alacritty/alacritty.yml.j2 +++ b/alacritty/alacritty.yml.j2 @@ -184,7 +184,7 @@ colors: # Normal colors normal: - black: '#272822' + black: '#000000' red: '#F92672' green: '#A6E22E' yellow: '#F4BF75'