From 00e06056f084fdce56f98587b39d42a3c6dff0ec Mon Sep 17 00:00:00 2001 From: Juan Ibiapina Date: Tue, 31 Jan 2023 22:39:54 +0100 Subject: [PATCH] alacritty: Change solarized bright black color to be different from background The color is borrowed from https://github.com/jan-warchol/selenized/blob/master/terminals/alacritty/selenized-dark.yml#L16 Issue in solarized repo: https://github.com/altercation/solarized/issues/220 --- .../alacritty/.config/alacritty_base/alacritty_Darwin.yml | 7 +++++-- .../alacritty/.config/alacritty_base/alacritty_Linux.yml | 6 +++++- 2 files changed, 10 insertions(+), 3 deletions(-) diff --git a/dotfiles/alacritty/.config/alacritty_base/alacritty_Darwin.yml b/dotfiles/alacritty/.config/alacritty_base/alacritty_Darwin.yml index e9f79bfc..cfeb1657 100644 --- a/dotfiles/alacritty/.config/alacritty_base/alacritty_Darwin.yml +++ b/dotfiles/alacritty/.config/alacritty_base/alacritty_Darwin.yml @@ -184,7 +184,6 @@ draw_bold_text_with_bright_colors: false # Colors (Solarized Dark) colors: - # Default colors primary: background: '0x002b36' # base03 foreground: '0x839496' # base0 @@ -207,7 +206,11 @@ colors: # Bright colors bright: - black: '0x002b36' # base03 + # I changed bright black not to be the same as background color, otherwise + # it doesn't show up in the terminal (:facepalm:) + # I've only ever seen this color being used by Javascript things, though. + # copied from https://github.com/jan-warchol/selenized/blob/master/terminals/alacritty/selenized-dark.yml#L16 + black: '0x184956' red: '0xcb4b16' # orange green: '0x586e75' # base01 yellow: '0x657b83' # base00 diff --git a/dotfiles/alacritty/.config/alacritty_base/alacritty_Linux.yml b/dotfiles/alacritty/.config/alacritty_base/alacritty_Linux.yml index 4bbdfb4d..e90f4e67 100644 --- a/dotfiles/alacritty/.config/alacritty_base/alacritty_Linux.yml +++ b/dotfiles/alacritty/.config/alacritty_base/alacritty_Linux.yml @@ -207,7 +207,11 @@ colors: # Bright colors bright: - black: '0x002b36' # base03 + # I changed bright black not to be the same as background color, otherwise + # it doesn't show up in the terminal (:facepalm:) + # I've only ever seen this color being used by Javascript things, though. + # copied from https://github.com/jan-warchol/selenized/blob/master/terminals/alacritty/selenized-dark.yml#L16 + black: '0x184956' red: '0xcb4b16' # orange green: '0x586e75' # base01 yellow: '0x657b83' # base00