This commit is contained in:
Salim Zaidi 2023-06-28 18:00:21 +01:00
parent 2d1bd8ac64
commit 5ec3bdebdd
20 changed files with 663 additions and 47 deletions

View file

@ -5,7 +5,7 @@ window:
class:
instance: Alacritty
general: Alacritty
opacity: 0.92
opacity: 0.9
scrolling:
history: 10000
@ -30,4 +30,4 @@ draw_bold_text_with_bright_colors: true
selection:
save_to_clipboard: true
import:
- ~/.config/alacritty/dracula.yml
- ~/.config/alacritty/gray.yml

33
config/alacritty/gray.yml Normal file
View file

@ -0,0 +1,33 @@
# Colors (Base16 Default Dark)
colors:
# Default colors
primary:
background: '0x181818'
foreground: '0xd8d8d8'
# Colors the cursor will use if `custom_cursor_colors` is true
cursor:
text: '0xd8d8d8'
cursor: '0xd8d8d8'
# Normal colors
normal:
black: '0x181818'
red: '0xab4642'
green: '0xa1b56c'
yellow: '0xf7ca88'
blue: '0x7cafc2'
magenta: '0xba8baf'
cyan: '0x86c1b9'
white: '0xd8d8d8'
# Bright colors
bright:
black: '0x585858'
red: '0xab4642'
green: '0xa1b56c'
yellow: '0xf7ca88'
blue: '0x7cafc2'
magenta: '0xba8baf'
cyan: '0x86c1b9'
white: '0xf8f8f8'