Add kitty terminal

This commit is contained in:
Tobias Reisinger 2021-04-16 12:07:15 +02:00
parent 2c53ae9476
commit cbf6944b11
Signed by: serguzim
GPG key ID: 13AD60C237A28DFE
5 changed files with 1385 additions and 2 deletions

View file

@ -0,0 +1,63 @@
# https://draculatheme.com/kitty
#
# Installation instructions:
#
# cp dracula.conf ~/.config/kitty/
# echo "include dracula.conf" >> ~/.config/kitty/kitty.conf
#
# Then reload kitty for the config to take affect.
# Alternatively copy paste below directly into kitty.conf
foreground #f8f8f2
background #22212c
selection_foreground #ffffff
selection_background #44475a
url_color #8be9fd
# black
color0 #22212c
color8 #22212c
# red
color1 #ff9580
color9 #ffaa99
# green
color2 #8aff80
color10 #a2ff99
# yellow
color3 #ffff80
color11 #ffff99
# blue
color4 #9580ff
color12 #aa99ff
# magenta
color5 #ff80bf
color13 #ff99cc
# cyan
color6 #80ffea
color14 #99ffee
# white
color7 #f8f8f2
color15 #ffffff
# Cursor colors
cursor #f8f8f2
cursor_text_color #454158
# Tab bar colors
active_tab_foreground #282a36
active_tab_background #f8f8f2
inactive_tab_foreground #282a36
inactive_tab_background #6272a4
# Marks
mark1_foreground #282a36
mark1_background #ff5555
55