diff --git a/alacritty.yml b/alacritty.yml index 72119fa..081c7c7 100644 --- a/alacritty.yml +++ b/alacritty.yml @@ -175,6 +175,40 @@ # If `true`, bold text is drawn using the bright color variants. #draw_bold_text_with_bright_colors: false +# https://github.com/monsonjeremy/onedark.nvim/blob/master/extras/alacritty_onedark_.yml +# onedark Alacritty Colors +colors: + # Default colors + primary: + background: '0x282c34' + foreground: '0xabb2bf' + + # Normal colors + normal: + black: '0x20232A' + red: '0xe86671' + green: '0x98c379' + yellow: '0xe0af68' + blue: '0x61afef' + magenta: '0xc678dd' + cyan: '0x56b6c2' + white: '0x798294' + + # Bright colors + bright: + black: '0x21252b' + red: '0xe86671' + green: '0x98c379' + yellow: '0xe0af68' + blue: '0x61afef' + magenta: '0xc678dd' + cyan: '0x56b6c2' + white: '0xabb2bf' + + indexed_colors: + - { index: 16, color: '0xd19a66' } + - { index: 17, color: '0xf65866' } + # Colors (Tomorrow Night) #colors: # Default colors diff --git a/setup.sh b/setup.sh index 9510cf4..9f3ca49 100755 --- a/setup.sh +++ b/setup.sh @@ -92,6 +92,7 @@ setup_4kvideodownloader() { setup_alacritty() { package_install alacritty + rm -rf ~/.config/alacritty/ mkdir ~/.config/alacritty/ cp alacritty.yml ~/.config/alacritty/alacritty.yml }