Merge remote-tracking branch 'caksoylar/fix-colors'
This commit is contained in:
commit
fcc4db3ee5
|
@ -29,12 +29,12 @@ face global list yellow
|
||||||
|
|
||||||
## builtin
|
## builtin
|
||||||
face global Default rgb:121213,rgb:F8F8FF
|
face global Default rgb:121213,rgb:F8F8FF
|
||||||
face global PrimarySelection default,rgb:A6F3A6+fg
|
face global PrimarySelection rgb:121213,rgb:A6F3A6+fg
|
||||||
face global SecondarySelection default,rgb:DBFFDB+fg
|
face global SecondarySelection rgb:121213,rgb:DBFFDB+fg
|
||||||
face global PrimaryCursor black,rgb:888888+fg
|
face global PrimaryCursor rgb:121213,rgb:888888+fg
|
||||||
face global SecondaryCursor black,rgb:888888+fg
|
face global SecondaryCursor rgb:121213,rgb:AAAAAA+fg
|
||||||
face global PrimaryCursorEol black,rgb:A71D5D+fg
|
face global PrimaryCursorEol rgb:121213,rgb:A71D5D+fg
|
||||||
face global SecondaryCursorEol black,rgb:A71D5D+fg
|
face global SecondaryCursorEol rgb:121213,rgb:A71D5D+fg
|
||||||
face global LineNumbers rgb:A0A0A0,rgb:ECECEC
|
face global LineNumbers rgb:A0A0A0,rgb:ECECEC
|
||||||
face global LineNumberCursor rgb:434343,rgb:DDDDDD
|
face global LineNumberCursor rgb:434343,rgb:DDDDDD
|
||||||
face global MenuForeground rgb:434343,rgb:CDCDFD
|
face global MenuForeground rgb:434343,rgb:CDCDFD
|
||||||
|
|
|
@ -1,78 +1,73 @@
|
||||||
##
|
#
|
||||||
## Tomorrow-night, adapted by nicholastmosher
|
## Tomorrow-night, adapted by nicholastmosher
|
||||||
##
|
##
|
||||||
|
|
||||||
evaluate-commands %sh{
|
evaluate-commands %sh{
|
||||||
foreground="rgb:c5c8c6"
|
foreground="rgb:c5c8c6" # gui05
|
||||||
background="rgb:272727"
|
background="rgb:1d1f21" # gui00
|
||||||
selection="rgb:373b41"
|
selection="rgb:373b41" # gui02
|
||||||
window="rgb:383838"
|
window="rgb:282a2e" # gui01
|
||||||
text="rgb:D8D8D8"
|
comment="rgb:969896" # gui03
|
||||||
text_light="rgb:4E4E4E"
|
red="rgb:cc6666" # gui08
|
||||||
line="rgb:282a2e"
|
orange="rgb:de935f" # gui09
|
||||||
comment="rgb:969896"
|
yellow="rgb:f0c674" # gui0A
|
||||||
red="rgb:cc6666"
|
green="rgb:b5bd68" # gui0B
|
||||||
orange="rgb:d88860"
|
blue="rgb:81a2be" # gui0D
|
||||||
yellow="rgb:f0c674"
|
aqua="rgb:8abeb7" # gui0C
|
||||||
green="rgb:b5bd68"
|
purple="rgb:b294bb" # gui0E
|
||||||
green_dark="rgb:a1b56c"
|
|
||||||
blue="rgb:81a2be"
|
|
||||||
aqua="rgb:87afaf"
|
|
||||||
magenta="rgb:ab4642"
|
|
||||||
purple="rgb:b294bb"
|
|
||||||
|
|
||||||
## code
|
## code
|
||||||
echo "
|
echo "
|
||||||
face global value ${orange}
|
face global value ${orange}
|
||||||
face global type ${yellow}
|
face global type ${yellow}
|
||||||
face global variable ${magenta}
|
face global variable ${red}
|
||||||
face global module ${green}
|
face global module ${blue}
|
||||||
face global function ${aqua}
|
face global function ${blue}
|
||||||
face global string ${green_dark}
|
face global string ${green}
|
||||||
face global keyword ${purple}
|
face global keyword ${purple}
|
||||||
face global operator ${aqua}
|
face global operator ${aqua}
|
||||||
face global attribute ${purple}
|
face global attribute ${purple}
|
||||||
face global comment ${comment}
|
face global comment ${comment}
|
||||||
face global documentation comment
|
face global documentation comment
|
||||||
face global meta ${purple}
|
face global meta ${purple}
|
||||||
face global builtin ${orange}
|
face global builtin ${yellow}
|
||||||
"
|
"
|
||||||
|
|
||||||
## markup
|
## markup
|
||||||
echo "
|
echo "
|
||||||
face global title blue
|
face global title ${blue}
|
||||||
face global header ${aqua}
|
face global header ${aqua}
|
||||||
face global mono ${green_dark}
|
face global mono ${green}
|
||||||
face global block ${orange}
|
face global block ${orange}
|
||||||
face global link blue
|
face global link ${blue}
|
||||||
face global bullet ${red}
|
face global bullet ${red}
|
||||||
face global list ${red}
|
face global list ${red}
|
||||||
"
|
"
|
||||||
|
|
||||||
## builtin
|
## builtin
|
||||||
echo "
|
echo "
|
||||||
face global Default ${text},${background}
|
face global Default ${foreground},${background}
|
||||||
face global PrimarySelection default,${selection}+fg
|
face global PrimarySelection ${foreground},${selection}+fg
|
||||||
face global SecondarySelection default,${selection}+fg
|
face global SecondarySelection ${foreground},${window}+fg
|
||||||
face global PrimaryCursor black,${aqua}+fg
|
face global PrimaryCursor ${background},${foreground}+fg
|
||||||
face global SecondaryCursor black,${aqua}+fg
|
face global SecondaryCursor ${background},${aqua}+fg
|
||||||
face global PrimaryCursorEol black,${green_dark}+fg
|
face global PrimaryCursorEol ${background},${green}+fg
|
||||||
face global SecondaryCursorEol black,${green_dark}+fg
|
face global SecondaryCursorEol ${background},${green}+fg
|
||||||
face global LineNumbers ${text_light},${background}
|
face global LineNumbers ${comment},${window}
|
||||||
face global LineNumberCursor ${yellow},rgb:282828+b
|
face global LineNumberCursor ${yellow},${window}+b
|
||||||
face global MenuForeground ${text_light},blue
|
face global MenuForeground ${window},${foreground}
|
||||||
face global MenuBackground ${aqua},${window}
|
face global MenuBackground ${foreground},${window}
|
||||||
face global MenuInfo ${aqua}
|
face global MenuInfo ${red}
|
||||||
face global Information white,${window}
|
face global Information ${foreground},${window}
|
||||||
face global Error white,${red}
|
face global Error ${foreground},${red}
|
||||||
face global StatusLine ${text},${window}
|
face global StatusLine ${foreground},${selection}
|
||||||
face global StatusLineMode ${yellow}+b
|
face global StatusLineMode ${yellow}+b
|
||||||
face global StatusLineInfo ${aqua}
|
face global StatusLineInfo ${aqua}
|
||||||
face global StatusLineValue ${green_dark}
|
face global StatusLineValue ${green}
|
||||||
face global StatusCursor ${window},${aqua}
|
face global StatusCursor ${window},${aqua}
|
||||||
face global Prompt ${background},${aqua}
|
face global Prompt ${background},${aqua}
|
||||||
face global MatchingChar ${yellow},${background}+b
|
face global MatchingChar ${yellow},${background}+b
|
||||||
face global BufferPadding ${aqua},${background}
|
face global BufferPadding ${aqua},${background}
|
||||||
face global Whitespace ${text_light}+f
|
face global Whitespace ${comment}+f
|
||||||
"
|
"
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user