From 215cb73a0c1bb275946a1871cea09ab48df0bf3f Mon Sep 17 00:00:00 2001 From: Maxime Coste Date: Fri, 2 Oct 2015 14:00:06 +0100 Subject: [PATCH] Add a port of solarized colorscheme --- colors/solarized.kak | 55 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 55 insertions(+) create mode 100644 colors/solarized.kak diff --git a/colors/solarized.kak b/colors/solarized.kak new file mode 100644 index 000000000..e98956858 --- /dev/null +++ b/colors/solarized.kak @@ -0,0 +1,55 @@ +# solarized theme + +%sh{ + # Base color definitions + base03="rgb:002b36" + base02="rgb:073642" + base01="rgb:586e75" + base00="rgb:657b83" + base0="rgb:839496" + base1="rgb:93a1a1" + base2="rgb:eee8d5" + base3="rgb:fdf6e3" + + yellow="rgb:b58900" + orange="rgb:cb4b16" + red="rgb:dc322f" + magenta="rgb:d33682" + violet="rgb:6c71c4" + blue="rgb:268bd2" + cyan="rgb:2aa198" + green="rgb:859900" + + echo " + # then we map them to code + face value ${cyan} + face type ${yellow} + face identifier ${blue} + face string ${cyan} + face error ${base03},${red} + face keyword ${green} + face operator default + face attribute ${violet} + face comment ${base01} + face meta ${orange} + + # and markup + face title ${yellow} + face header ${blue} + face bold ${base1} + face italic ${base2} + face mono ${base3} + face block ${violet} + face link ${magenta} + face bullet ${orange} + face list ${yellow} + + # and built in faces + face Default ${base0},${base03} + face StatusLine default,${base02} + face StatusCursor ${base00},${base3} + face Information ${base02},${base1} + face MenuBackground ${base02},${base01} + face MenuForeground ${cyan},${base01} + " +}