diff options
author | luxagraf <sng@luxagraf.net> | 2020-02-16 13:23:56 -0500 |
---|---|---|
committer | luxagraf <sng@luxagraf.net> | 2020-02-16 13:23:56 -0500 |
commit | cd507c92f617d4a8a3f7bb0b43e425491ef7184d (patch) | |
tree | 42144ef0f35b91e7955f570c5ecc4bcec3c4d780 /.config/kitty |
initial commit of dotfiles
Diffstat (limited to '.config/kitty')
-rw-r--r-- | .config/kitty/kitty.conf | 83 |
1 files changed, 83 insertions, 0 deletions
diff --git a/.config/kitty/kitty.conf b/.config/kitty/kitty.conf new file mode 100644 index 0000000..41bb8e1 --- /dev/null +++ b/.config/kitty/kitty.conf @@ -0,0 +1,83 @@ +# The foreground color +foreground #839496 + +# The background color +background #002b36 + +# The opacity of the background. A number between 0 and 1, where 1 is opaque and 0 is fully transparent. +# This will only work if supported by the OS (for instance, when using a compositor under X11). Note +# that it only sets the default background color's opacity. This is so that +# things like the status bar in vim, powerline prompts, etc. still look good. +# But it means that if you use a color theme with a background color in your +# editor, it will not be rendered as transparent. Instead you should change the +# default background color in your kitty config and not use a background color +# in the editor color scheme. Or use the escape codes to set the terminals +# default colors in a shell script to launch your editor. +# Be aware that using a value less than 1.0 is a (possibly significant) performance hit. +background_opacity .9 + +# The foreground for selections +selection_foreground #002b36 + +# The background for selections +selection_background #586e75 + +# The 16 terminal colors. There are 8 basic colors, each color has a dull and +# bright version. + +# solarized dark +color0 #073642 +color8 #002b36 + +color1 #dc322f +color9 #cb4b16 + +color2 #859900 +color10 #586e75 + +color3 #b58900 +color11 #657b83 + +color4 #268bd2 +color12 #839496 + +color5 #d33682 +color13 #6c71c4 + +color6 #2aa198 +color14 #93a1a1 + +color7 #eee8d5 +color15 #fdf6e3 + +## black +#color0 #000000 +#color8 #4d4d4d +# +## red +#color1 #cc0403 +#color9 #f2201f +# +## green +#color2 #19cb00 +#color10 #23fd00 +# +## yellow +#color3 #cecb00 +#color11 #fffd00 +# +## blue +#color4 #0d73cc +#color12 #1a8fff +# +## magenta +#color5 #cb1ed1 +#color13 #fd28ff +# +## cyan +#color6 #0dcdcd +#color14 #14ffff +# +## white +#color7 #dddddd +#color15 #ffffff |