1
0
Fork 0

added alacritty theme

This commit is contained in:
Kim, Jimin 2021-11-13 11:30:17 +09:00
parent ce2a0616e0
commit a86067a07e
2 changed files with 35 additions and 0 deletions

View file

@ -175,6 +175,40 @@
# If `true`, bold text is drawn using the bright color variants. # If `true`, bold text is drawn using the bright color variants.
#draw_bold_text_with_bright_colors: false #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 (Tomorrow Night)
#colors: #colors:
# Default colors # Default colors

View file

@ -92,6 +92,7 @@ setup_4kvideodownloader() {
setup_alacritty() { setup_alacritty() {
package_install alacritty package_install alacritty
rm -rf ~/.config/alacritty/
mkdir ~/.config/alacritty/ mkdir ~/.config/alacritty/
cp alacritty.yml ~/.config/alacritty/alacritty.yml cp alacritty.yml ~/.config/alacritty/alacritty.yml
} }