From 92f431aa1ee32d34fa000a56496e4e175bc9de1c Mon Sep 17 00:00:00 2001 From: Gianni Ceccarelli Date: Tue, 10 Oct 2023 14:14:58 +0100 Subject: alacritty better colors --- .config/alacritty.yml | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) diff --git a/.config/alacritty.yml b/.config/alacritty.yml index c706268..f0ba8ef 100644 --- a/.config/alacritty.yml +++ b/.config/alacritty.yml @@ -26,6 +26,43 @@ font: size: 8.0 builtin_box_drawing: false +# theme: high-contrast, plus the blues from github-dark, from +# https://github.com/alacritty/alacritty-theme +colors: + # Default colors + primary: + background: '0x444444' + foreground: '0xdddddd' + + # Colors the cursor will use if `custom_cursor_colors` is true + cursor: + text: '0xaaaaaa' + cursor: '0xffffff' + + # Normal colors + normal: + black: '0x000000' + red: '0xff0000' + green: '0x00ff00' + yellow: '0xffff00' + blue: '0x2188ff' + magenta: '0xff00ff' + cyan: '0x00ffff' + white: '0xffffff' + + # Bright colors + bright: + black: '0x000000' + red: '0xff0000' + green: '0x00ff00' + yellow: '0xffff00' + blue: '0x79b8ff' + magenta: '0xff00ff' + cyan: '0x00ffff' + white: '0xffffff' + +draw_bold_text_with_bright_colors: true + selection: semantic_escape_chars: " !@#$%^&*(){}[]'\",.<>/?=+-\\|`~;:" -- cgit v1.2.3