2020-06-06 02:50:44 +02:00
|
|
|
#
|
2017-02-02 22:06:21 +01:00
|
|
|
## Tomorrow-night, adapted by nicholastmosher
|
|
|
|
##
|
|
|
|
|
2018-05-06 23:29:52 +02:00
|
|
|
evaluate-commands %sh{
|
2020-06-06 02:50:44 +02:00
|
|
|
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
|
2017-02-02 22:06:21 +01:00
|
|
|
|
|
|
|
## code
|
|
|
|
echo "
|
2018-04-07 07:36:39 +02:00
|
|
|
face global value ${orange}
|
|
|
|
face global type ${yellow}
|
2020-06-06 02:50:44 +02:00
|
|
|
face global variable ${red}
|
|
|
|
face global module ${blue}
|
|
|
|
face global function ${blue}
|
|
|
|
face global string ${green}
|
2018-04-07 07:36:39 +02:00
|
|
|
face global keyword ${purple}
|
|
|
|
face global operator ${aqua}
|
|
|
|
face global attribute ${purple}
|
|
|
|
face global comment ${comment}
|
2018-06-23 07:38:46 +02:00
|
|
|
face global documentation comment
|
2018-04-07 07:36:39 +02:00
|
|
|
face global meta ${purple}
|
2020-06-06 02:50:44 +02:00
|
|
|
face global builtin ${yellow}
|
2017-02-02 22:06:21 +01:00
|
|
|
"
|
|
|
|
|
|
|
|
## markup
|
|
|
|
echo "
|
2020-06-06 02:50:44 +02:00
|
|
|
face global title ${blue}
|
2018-04-07 07:36:39 +02:00
|
|
|
face global header ${aqua}
|
2020-06-06 02:50:44 +02:00
|
|
|
face global mono ${green}
|
2018-04-07 07:36:39 +02:00
|
|
|
face global block ${orange}
|
2020-06-06 02:50:44 +02:00
|
|
|
face global link ${blue}
|
2018-04-07 07:36:39 +02:00
|
|
|
face global bullet ${red}
|
|
|
|
face global list ${red}
|
2017-02-02 22:06:21 +01:00
|
|
|
"
|
|
|
|
|
|
|
|
## builtin
|
|
|
|
echo "
|
2020-06-06 02:50:44 +02:00
|
|
|
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}
|
2018-04-07 07:36:39 +02:00
|
|
|
face global StatusLineMode ${yellow}+b
|
|
|
|
face global StatusLineInfo ${aqua}
|
2020-06-06 02:50:44 +02:00
|
|
|
face global StatusLineValue ${green}
|
2018-04-07 07:36:39 +02:00
|
|
|
face global StatusCursor ${window},${aqua}
|
|
|
|
face global Prompt ${background},${aqua}
|
|
|
|
face global MatchingChar ${yellow},${background}+b
|
|
|
|
face global BufferPadding ${aqua},${background}
|
2020-06-06 02:50:44 +02:00
|
|
|
face global Whitespace ${comment}+f
|
2017-02-02 22:06:21 +01:00
|
|
|
"
|
|
|
|
}
|