Created
February 27, 2018 18:44
-
-
Save topisani/78e274d8b64cc9d12021e08154f5130c to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# flatblue theme | |
%sh{ | |
bg0="rgb:0d1011" | |
bg="rgb:18191c" | |
bg1="rgb:1E1F21" | |
bg2="rgb:212126" | |
bg3="rgb:323037" | |
bg4="rgb:3c383c" | |
fg0="rgb:ffffdf" | |
fg="rgb:fdf4d1" | |
fg1="rgb:f4e8ca" | |
fg2="rgb:ebdbc2" | |
fg3="rgb:a89994" | |
gray="rgb:766f6f" | |
red="rgb:f24130" | |
red_dark="rgb:d92817" | |
green="rgb:71ba51" | |
green_dark="rgb:3e871e" | |
yellow_light="rgb:ffe000" | |
yellow="rgb:f2bb13" | |
yellow_dark="rgb:f39c12" | |
blue_light="rgb:07b0ff" | |
blue="rgb:178ca6" | |
blue_dark="rgb:005973" | |
purple_light="rgb:ff465a" | |
purple="rgb:dd465a" | |
purple_dark="rgb:8f3f71" | |
aqua="rgb:67c5b4" | |
aqua_dark="rgb:249991" | |
orange="rgb:fe8019" | |
orange_dark="rgb:fe5019" | |
echo " | |
# Markdown highlighting | |
face title ${green}+b | |
face header ${orange} | |
face bold ${fg}+b | |
face italic ${fg3}+i | |
face mono ${fg3} | |
face block default | |
face link default | |
face bullet default | |
face list default | |
face Default ${fg},${bg} | |
face PrimarySelection ${fg},${blue} | |
face SecondarySelection ${bg},${blue} | |
face PrimaryCursor ${bg},${fg} | |
face SecondaryCursor ${bg},${fg} | |
face LineNumbers ${bg4} | |
face LineNumberCursor ${yellow},${bg1} | |
face MenuForeground ${bg2},${blue} | |
face MenuBackground default,${bg2} | |
face MenuInfo ${bg} | |
face Information ${bg},${yellow} | |
face Error default,${red} | |
face StatusLine default | |
face StatusLineMode ${yellow}+b | |
face StatusLineInfo ${purple} | |
face StatusLineValue ${red} | |
face StatusCursor ${bg},${fg} | |
face Prompt ${yellow} | |
face MatchingChar default+b | |
face BufferPadding ${bg2},${bg} | |
face Whitespace ${bg2} | |
# Code highlighting | |
face value ${purple} | |
face type ${blue_light} | |
face variable ${blue} | |
face module ${orange} | |
face function ${yellow_light} | |
face string ${green} | |
face keyword ${red} | |
face operator default | |
face attribute ${red} | |
face comment ${gray} | |
face meta ${orange} | |
face builtin ${red} | |
face comment ${gray}+i | |
face identifier ${orange} | |
# Cquery semantic highlighting | |
face cqueryTypes type | |
face cqueryEnums variable | |
face cqueryTypeAliases type | |
face cqueryTemplateParameters variable | |
face cqueryFreeStandingFunctions function | |
face cqueryMemberFunctions ${yellow_light}+i | |
face cqueryStaticMemberFunctions ${yellow_light} | |
face cqueryFreeStandingVariables default,default | |
face cqueryGlobalVariables default,default | |
face cqueryStaticMemberVariables default,default | |
face cqueryMemberVariables default,default | |
face cqueryParameters default,default | |
face cqueryEnumConstants default,default | |
face cqueryNamespaces default,default | |
face cqueryMacros default,default | |
" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment