[alacritty] Add both light and dark colour schemes to Alacritty

This commit is contained in:
Sebastian Schulze 2020-03-26 13:11:38 +01:00
parent 351594fb51
commit b0e985d58f
Signed by: bascht
GPG Key ID: 5BCB1D3B4D38A35A
1 changed files with 78 additions and 76 deletions

View File

@ -165,85 +165,87 @@ key_bindings:
- { key: F12, mods: Super, chars: "\x1b[24;3~" } - { key: F12, mods: Super, chars: "\x1b[24;3~" }
# Base16 Default Light 256 - alacritty color config # Base16 Default Light 256 - alacritty color config
# Chris Kempson (http://chriskempson.com) # Chris Kempson (http://chriskempson.com)
colors: schemes:
# Default colors base16_default_light: &light
primary: # Default colors
background: '0xf8f8f8' primary:
foreground: '0x383838' background: '0xf8f8f8'
foreground: '0x383838'
# Colors the cursor will use if `custom_cursor_colors` is true
cursor:
text: '0xf8f8f8'
cursor: '0x383838'
# Normal colors
normal:
black: '0xf8f8f8'
red: '0xab4642'
green: '0xa1b56c'
yellow: '0xf7ca88'
blue: '0x7cafc2'
magenta: '0xba8baf'
cyan: '0x86c1b9'
white: '0x383838'
# Bright colors
bright:
black: '0xb8b8b8'
red: '0xab4642'
green: '0xa1b56c'
yellow: '0xf7ca88'
blue: '0x7cafc2'
magenta: '0xba8baf'
cyan: '0x86c1b9'
white: '0x181818'
indexed_colors:
- { index: 16, color: '0xdc9656' }
- { index: 17, color: '0xa16946' }
- { index: 18, color: '0xe8e8e8' }
- { index: 19, color: '0xd8d8d8' }
- { index: 20, color: '0x585858' }
- { index: 21, color: '0x282828' }
# Colors the cursor will use if `custom_cursor_colors` is true base16_nord: &dark
cursor: # Default colors
text: '0xf8f8f8' primary:
cursor: '0x383838' background: '0x2e3440'
foreground: '0xe5e9f0'
# Normal colors # Colors the cursor will use if `custom_cursor_colors` is true
normal: cursor:
black: '0xf8f8f8' text: '0x2e3440'
red: '0xab4642' cursor: '0xe5e9f0'
green: '0xa1b56c'
yellow: '0xf7ca88'
blue: '0x7cafc2'
magenta: '0xba8baf'
cyan: '0x86c1b9'
white: '0x383838'
# Bright colors # Normal colors
bright: normal:
black: '0xb8b8b8' black: '0x2e3440'
red: '0xab4642' red: '0x88c0d0'
green: '0xa1b56c' green: '0xbf616a'
yellow: '0xf7ca88' yellow: '0x5e81ac'
blue: '0x7cafc2' blue: '0xebcb8b'
magenta: '0xba8baf' magenta: '0xa3be8c'
cyan: '0x86c1b9' cyan: '0xd08770'
white: '0x181818' white: '0xe5e9f0'
indexed_colors: # Bright colors
- { index: 16, color: '0xdc9656' } bright:
- { index: 17, color: '0xa16946' } black: '0x4c566a'
- { index: 18, color: '0xe8e8e8' } red: '0x88c0d0'
- { index: 19, color: '0xd8d8d8' } green: '0xbf616a'
- { index: 20, color: '0x585858' } yellow: '0x5e81ac'
- { index: 21, color: '0x282828' } blue: '0xebcb8b'
# Base16 T# omorrow 256 - alacritty color config magenta: '0xa3be8c'
# # Chris Kempson (http://chriskempson.com) cyan: '0xd08770'
# colors: white: '0x8fbcbb'
# # Default colors
# primary:
# background: '0xffffff'
# foreground: '0x4d4d4c'
# # Colors the cursor will use if `custom_cursor_colors` is true indexed_colors:
# cursor: - { index: 16, color: '0x81a1c1' }
# text: '0xffffff' - { index: 17, color: '0xb48ead' }
# cursor: '0x4d4d4c' - { index: 18, color: '0x3b4252' }
- { index: 19, color: '0x434c5e' }
- { index: 20, color: '0xd8dee9' }
- { index: 21, color: '0xeceff4' }
# # Normal colors colors: *light
# normal:
# black: '0xffffff'
# red: '0xc82829'
# green: '0x718c00'
# yellow: '0xeab700'
# blue: '0x4271ae'
# magenta: '0x8959a8'
# cyan: '0x3e999f'
# white: '0x4d4d4c'
# # Bright colors
# bright:
# black: '0x8e908c'
# red: '0xc82829'
# green: '0x718c00'
# yellow: '0xeab700'
# blue: '0x4271ae'
# magenta: '0x8959a8'
# cyan: '0x3e999f'
# white: '0x1d1f21'
# indexed_colors:
# - { index: 16, color: '0xf5871f' }
# - { index: 17, color: '0xa3685a' }
# - { index: 18, color: '0xe0e0e0' }
# - { index: 19, color: '0xd6d6d6' }
# - { index: 20, color: '0x969896' }
# - { index: 21, color: '0x282a2e' }