From fdc059b7df34ea7bce58ea23a139136fdf06383a Mon Sep 17 00:00:00 2001 From: Sanchayan Maity Date: Thu, 19 Nov 2020 16:44:50 +0530 Subject: [PATCH] alacritty: Use gruvbox colors --- alacritty/.config/alacritty/alacritty.yml | 42 +++++++++++------------ 1 file changed, 20 insertions(+), 22 deletions(-) diff --git a/alacritty/.config/alacritty/alacritty.yml b/alacritty/.config/alacritty/alacritty.yml index bb85810..2138d77 100644 --- a/alacritty/.config/alacritty/alacritty.yml +++ b/alacritty/.config/alacritty/alacritty.yml @@ -92,34 +92,32 @@ draw_bold_text_with_bright_colors: false # and cursor.background colors, otherwise invert the colors of the cursor. # custom_cursor_colors: false -# Colors +# Colors (Gruvbox dark) +# See https://github.com/alacritty/alacritty/wiki/Color-schemes colors: - # Default colors primary: - background: '0x1f1f1f' - foreground: '0xe5e1d8' + background: '#1d2021' + foreground: '#ebdbb2' - # Normal colors normal: - black: '0x000000' - red: '0xf7786d' - green: '0xbde97c' - yellow: '0xefdfac' - blue: '0x6ebaf8' - magenta: '0xef88ff' - cyan: '0x90fdf8' - white: '0xe5e1d8' + black: '#1d2021' + red: '#cc241d' + green: '#98971a' + yellow: '#d79921' + blue: '#458588' + magenta: '#b16286' + cyan: '#689d6a' + white: '#a89984' - # Bright colors bright: - black: '0xb4b4b4' - red: '0xf99f92' - green: '0xe3f7a1' - yellow: '0xf2e9bf' - blue: '0xb3d2ff' - magenta: '0xe5bdff' - cyan: '0xc2fefa' - white: '0xffffff' + black: '#928374' + red: '#fb4934' + green: '#b8bb26' + yellow: '#fabd2f' + blue: '#83a598' + magenta: '#d3869b' + cyan: '#8ec07c' + white: '#ebdbb2' # Background opacity background_opacity: 0.8