From 085ebf5187a9c7785a36cb70c304f0aa8c966e1a Mon Sep 17 00:00:00 2001 From: Nathan Knowler Date: Fri, 13 Nov 2020 16:58:24 -0600 Subject: [PATCH] [alacritty] add light and dark colour schemes --- .config/alacritty/alacritty.yml | 88 ++++++++++++++++++++++----------- 1 file changed, 60 insertions(+), 28 deletions(-) diff --git a/.config/alacritty/alacritty.yml b/.config/alacritty/alacritty.yml index 8e344c5..b0554d3 100644 --- a/.config/alacritty/alacritty.yml +++ b/.config/alacritty/alacritty.yml @@ -91,34 +91,66 @@ font: # If `true`, bold text is drawn using the bright color variants. #draw_bold_text_with_bright_colors: false -# Colors (Iceberg Dark) -colors: - # Default colors - primary: - background: '#161821' - foreground: '#d2d4de' - - # Normal colors - normal: - black: '#161821' - red: '#e27878' - green: '#b4be82' - yellow: '#e2a478' - blue: '#84a0c6' - magenta: '#a093c7' - cyan: '#89b8c2' - white: '#c6c8d1' - - # Bright colors - bright: - black: '#6b7089' - red: '#e98989' - green: '#c0ca8e' - yellow: '#e9b189' - blue: '#91acd1' - magenta: '#ada0d3' - cyan: '#95c4ce' - white: '#d2d4de' +schemes: + # Colors (Iceberg Dark) + iceberg_dark: &dark + # Default colors + primary: + background: '#161821' + foreground: '#d2d4de' + + # Normal colors + normal: + black: '#161821' + red: '#e27878' + green: '#b4be82' + yellow: '#e2a478' + blue: '#84a0c6' + magenta: '#a093c7' + cyan: '#89b8c2' + white: '#c6c8d1' + + # Bright colors + bright: + black: '#6b7089' + red: '#e98989' + green: '#c0ca8e' + yellow: '#e9b189' + blue: '#91acd1' + magenta: '#ada0d3' + cyan: '#95c4ce' + white: '#d2d4de' + + # Colors (Iceberg Light) + iceberg_light: &light + # Default colors + primary: + background: '0xe8e9ec' + foreground: '0x33374c' + + # Normal colors + normal: + black: '0xdcdfe7' + red: '0xcc517a' + green: '0x668e3d' + yellow: '0xc57339' + blue: '0x2d539e' + magenta: '0x7759b4' + cyan: '0x3f83a6' + white: '0x33374c' + + # Bright colors + bright: + black: '0x8389a3' + red: '0xcc3768' + green: '0x598030' + yellow: '0xb6662d' + blue: '0x22478e' + magenta: '0x6845ad' + cyan: '0x327698' + white: '0x262a3f' + +colors: *dark # Bell # -- 2.51.2