alacritty.yml: change colours to base16-espresso

This commit is contained in:
Callum Renwick 2020-09-06 20:58:47 +01:00
parent 29e7913420
commit ebdf12c48a
1 changed files with 22 additions and 22 deletions

View File

@ -159,40 +159,40 @@ font:
# If `true`, bold text is drawn using the bright color variants.
#draw_bold_text_with_bright_colors: false
# Colors (base16-woodland)
# by Jay Cornwall (https://jcornwall.com)
# Colors (base16-espresso)
# by Alex Mirrington (https://github.com/alexmirrington)
colors:
# Default colors
primary:
background: '0x231e18'
foreground: '0xcabcb1'
background: '0x2d2d2d'
foreground: '0xcccccc'
# Colors the cursor will use if `custom_cursor_colors` is true
cursor:
text: '0x231e18'
cursor: '0xcabcb1'
text: '0x2d2d2d'
cursor: '0xcccccc'
# Normal colors
normal:
black: '0x231e18'
red: '0xd35c5c'
green: '0xb7ba53'
yellow: '0xe0ac16'
blue: '0x88a4d3'
magenta: '0xbb90e2'
cyan: '0x6eb958'
white: '0xcabcb1'
black: '0x2d2d2d'
red: '0xd25252'
green: '0xa5c261'
yellow: '0xffc66d'
blue: '0x6c99bb'
magenta: '0xd197d9'
cyan: '0xbed6ff'
white: '0xcccccc'
# Bright colors
bright:
black: '0x9d8b70'
red: '0xca7f32'
green: '0x302b25'
yellow: '0x48413a'
blue: '0xb4a490'
magenta: '0xd7c8bc'
cyan: '0xb49368'
white: '0xe4d4c8'
black: '0x777777'
red: '0xf9a959'
green: '0x393939'
yellow: '0x515151'
blue: '0xb4b7b4'
magenta: '0xe0e0e0'
cyan: '0xf97394'
white: '0xffffff'
draw_bold_text_with_bright_colors: false