From cca886af4d8a89a1981a18ef57962939ef9703d8 Mon Sep 17 00:00:00 2001 From: Cem Aksoylar Date: Fri, 5 Jun 2020 17:50:44 -0700 Subject: [PATCH] Fix-up tomorrow-night --- colors/tomorrow-night.kak | 81 ++++++++++++++++++--------------------- 1 file changed, 38 insertions(+), 43 deletions(-) diff --git a/colors/tomorrow-night.kak b/colors/tomorrow-night.kak index f12740a1..31d5577d 100644 --- a/colors/tomorrow-night.kak +++ b/colors/tomorrow-night.kak @@ -1,78 +1,73 @@ -## +# ## Tomorrow-night, adapted by nicholastmosher ## evaluate-commands %sh{ - foreground="rgb:c5c8c6" - background="rgb:272727" - selection="rgb:373b41" - window="rgb:383838" - text="rgb:D8D8D8" - text_light="rgb:4E4E4E" - line="rgb:282a2e" - comment="rgb:969896" - red="rgb:cc6666" - orange="rgb:d88860" - yellow="rgb:f0c674" - green="rgb:b5bd68" - green_dark="rgb:a1b56c" - blue="rgb:81a2be" - aqua="rgb:87afaf" - magenta="rgb:ab4642" - purple="rgb:b294bb" + foreground="rgb:c5c8c6" # gui05 + background="rgb:1d1f21" # gui00 + selection="rgb:373b41" # gui02 + window="rgb:282a2e" # gui01 + comment="rgb:969896" # gui03 + red="rgb:cc6666" # gui08 + orange="rgb:de935f" # gui09 + yellow="rgb:f0c674" # gui0A + green="rgb:b5bd68" # gui0B + blue="rgb:81a2be" # gui0D + aqua="rgb:8abeb7" # gui0C + purple="rgb:b294bb" # gui0E ## code echo " face global value ${orange} face global type ${yellow} - face global variable ${magenta} - face global module ${green} - face global function ${aqua} - face global string ${green_dark} + face global variable ${red} + face global module ${blue} + face global function ${blue} + face global string ${green} face global keyword ${purple} face global operator ${aqua} face global attribute ${purple} face global comment ${comment} face global documentation comment face global meta ${purple} - face global builtin ${orange} + face global builtin ${yellow} " ## markup echo " - face global title blue + face global title ${blue} face global header ${aqua} - face global mono ${green_dark} + face global mono ${green} face global block ${orange} - face global link blue + face global link ${blue} face global bullet ${red} face global list ${red} " ## builtin echo " - face global Default ${text},${background} - face global PrimarySelection default,${selection}+fg - face global SecondarySelection default,${selection}+fg - face global PrimaryCursor black,${aqua}+fg - face global SecondaryCursor black,${aqua}+fg - face global PrimaryCursorEol black,${green_dark}+fg - face global SecondaryCursorEol black,${green_dark}+fg - face global LineNumbers ${text_light},${background} - face global LineNumberCursor ${yellow},rgb:282828+b - face global MenuForeground ${text_light},blue - face global MenuBackground ${aqua},${window} - face global MenuInfo ${aqua} - face global Information white,${window} - face global Error white,${red} - face global StatusLine ${text},${window} + face global Default ${foreground},${background} + face global PrimarySelection ${foreground},${selection}+fg + face global SecondarySelection ${foreground},${window}+fg + face global PrimaryCursor ${background},${foreground}+fg + face global SecondaryCursor ${background},${aqua}+fg + face global PrimaryCursorEol ${background},${green}+fg + face global SecondaryCursorEol ${background},${green}+fg + face global LineNumbers ${comment},${window} + face global LineNumberCursor ${yellow},${window}+b + face global MenuForeground ${window},${foreground} + face global MenuBackground ${foreground},${window} + face global MenuInfo ${red} + face global Information ${foreground},${window} + face global Error ${foreground},${red} + face global StatusLine ${foreground},${selection} face global StatusLineMode ${yellow}+b face global StatusLineInfo ${aqua} - face global StatusLineValue ${green_dark} + face global StatusLineValue ${green} face global StatusCursor ${window},${aqua} face global Prompt ${background},${aqua} face global MatchingChar ${yellow},${background}+b face global BufferPadding ${aqua},${background} - face global Whitespace ${text_light}+f + face global Whitespace ${comment}+f " }