├── .gitignore ├── templates ├── _info.colortemplate ├── space_vim_theme.colortemplate ├── _neutral_colors.colortemplate ├── _neovim.colortemplate ├── _light.colortemplate ├── _help.colortemplate ├── _plugins.colortemplate ├── _common.colortemplate ├── _dark.colortemplate └── _filetypes.colortemplate ├── make_colorschemes.vim ├── README.md ├── doc └── space_vim_theme.txt └── colors └── space_vim_theme.vim /.gitignore: -------------------------------------------------------------------------------- 1 | tags 2 | -------------------------------------------------------------------------------- /templates/_info.colortemplate: -------------------------------------------------------------------------------- 1 | # vim: ft=colortemplate 2 | 3 | Author: Liu-Cheng Xu 4 | Maintainer: Liu-Cheng Xu 5 | Website: https://github.com/liuchengxu/space-vim-theme 6 | Description: Light and dark theme inspired by spacemacs-theme 7 | Terminal Colors: 256 8 | Option Prefix: space_vim 9 | -------------------------------------------------------------------------------- /templates/space_vim_theme.colortemplate: -------------------------------------------------------------------------------- 1 | # vim: ft=colortemplate 2 | 3 | Full name: Space-vim theme 4 | Short name: space_vim_theme 5 | 6 | Include: _info.colortemplate 7 | Include: _help.colortemplate 8 | Include: _neutral_colors.colortemplate 9 | 10 | Background: dark 11 | Include: _dark.colortemplate 12 | 13 | Background: light 14 | Include: _light.colortemplate 15 | -------------------------------------------------------------------------------- /templates/_neutral_colors.colortemplate: -------------------------------------------------------------------------------- 1 | # vim: ft=colortemplate 2 | 3 | # Neutral colors 4 | Color: neutralred #d26487 ~ 5 | Color: neutralgreen #35a8a5 ~ 6 | Color: neutralyellow #b89f33 ~ 7 | Color: neutralblue #6981c5 ~ 8 | Color: neutralpurple #a15ea7 ~ 9 | Color: neutralaqua #288668 ~ 10 | Color: neutralorange #ca754b ~ 11 | -------------------------------------------------------------------------------- /templates/_neovim.colortemplate: -------------------------------------------------------------------------------- 1 | # vim: ft=colortemplate 2 | 3 | verbatim 4 | if has('nvim') 5 | let g:terminal_color_0 = '@guibg0' 6 | let g:terminal_color_8 = '@guigrey' 7 | let g:terminal_color_1 = '@guineutralred' 8 | let g:terminal_color_9 = '@guired' 9 | let g:terminal_color_2 = '@guineutralgreen' 10 | let g:terminal_color_10 = '@guigreen' 11 | let g:terminal_color_3 = '@guineutralyellow' 12 | let g:terminal_color_11 = '@guiyellow' 13 | let g:terminal_color_4 = '@guineutralblue' 14 | let g:terminal_color_12 = '@guiblue' 15 | let g:terminal_color_5 = '@guineutralpurple' 16 | let g:terminal_color_13 = '@guipurple' 17 | let g:terminal_color_6 = '@guineutralaqua' 18 | let g:terminal_color_14 = '@guiaqua' 19 | let g:terminal_color_7 = '@guifg4' 20 | let g:terminal_color_15 = '@guifg1' 21 | endverbatim 22 | TermCursor -> Cursor 23 | TermCursorNC bg1 fg1 24 | verbatim 25 | endif 26 | endverbatim 27 | 28 | -------------------------------------------------------------------------------- /make_colorschemes.vim: -------------------------------------------------------------------------------- 1 | " Source this script to parse all the templates in the templates folder and 2 | " generate corresponding colorschemes in the colors folder (the colors and doc 3 | " folders will be created they do not exist). 4 | " Note: existing files in the colors and doc folders are overridden. 5 | 6 | let s:curdir = fnamemodify(resolve(expand(':p')), ':h') 7 | let s:templates = s:curdir.'/templates' 8 | let s:errors = 0 9 | 10 | execute 'lcd' s:templates 11 | 12 | for s:template in glob(s:templates . '/space_vim_theme.colortemplate', 1, 1) 13 | let s:template_name = fnamemodify(s:template, ':t:r') 14 | execute "edit" s:template 15 | execute "Colortemplate!" fnameescape(s:curdir) 16 | if g:colortemplate_exit_status != 0 17 | echoerr 'ERROR:' s:template_name 'could not be built' 18 | let s:errors = 1 19 | endif 20 | endfor 21 | 22 | if s:errors > 0 23 | redraw 24 | echo "\r" 25 | echoerr "There were errors: see messages" 26 | endif 27 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # space-vim-theme - Vim Colorscheme 2 | 3 | badge 4 | 5 | dark | light 6 | :----: | :----: 7 | ![](https://raw.githubusercontent.com/liuchengxu/img/master/space-vim-theme/dark.png) | ![](https://raw.githubusercontent.com/liuchengxu/img/master/space-vim-theme/light.png) 8 | 9 | [kitty](https://github.com/kovidgoyal/kitty) with `set termguicolors` 10 | 11 | [space-vim-dark](https://github.com/liuchengxu/space-vim-dark) is a dark only theme, [space-vim-theme](https://github.com/liuchengxu/space-vim-theme) as its successor now supports both dark and light background. This coloescheme originates from [spacemacs-theme](https://github.com/nashamri/spacemacs-theme) with some alterations. 12 | 13 | ## Installation 14 | 15 | Use [vim-plug](https://github.com/junegunn/vim-plug): 16 | 17 | ```vim 18 | Plug 'liuchengxu/space-vim-theme' 19 | ``` 20 | 21 | ## Usage 22 | 23 | ```vim 24 | colorscheme space_vim_theme 25 | ``` 26 | 27 | `:h space_vim_theme` for detailed information. 28 | 29 | ## Hacking 30 | 31 | Do you want to hack the theme? 32 | 33 | 1. Install [Colortemplate](https://github.com/lifepillar/vim-colortemplate). 34 | 35 | 2. Edit the files in the `templates` folder. 36 | 37 | 3. Rebuild the colorscheme by sourcing `make_colorschemes.vim`. 38 | 39 | ## Credits 40 | 41 | - [Colortemplate](https://github.com/lifepillar/vim-colortemplate) 42 | - `templates` is based on [vim-gruvbox8](https://github.com/lifepillar/vim-gruvbox8) 43 | -------------------------------------------------------------------------------- /doc/space_vim_theme.txt: -------------------------------------------------------------------------------- 1 | *space_vim_theme.txt* 2 | 3 | 4 | VIM REFERENCE MANUAL by Liu-Cheng Xu 5 | 6 | 7 | Space-vim theme colorscheme *space_vim_theme* 8 | 9 | Space-vim-theme originates from 10 | [spacemacs-theme](https://github.com/nashamri/spacemacs-theme). 11 | 12 | Both dark and light backgrounds are supported, you must set 'background' 13 | before loading the colorscheme. For example: 14 | > 15 | set background=dark 16 | colorscheme space_vim_theme 17 | < 18 | Space-vim theme requires at least 256 colors and supports "true color" terminals. 19 | 20 | ============================================================================== 21 | 1. Colorscheme options *space_vim-options* 22 | 23 | *g:space_vim_filetype_hi_groups* 24 | Set to 0 to disable syntax highlighting definitions for several filetypes. 25 | > 26 | let g:space_vim_filetype_hi_groups = 0 27 | < 28 | Note: setting this to 1 may leave "a wake of destruction when switching away" 29 | (Tim Pope), that is, when you switch to a different colorscheme the 30 | highlighting may look wrong or disabled. 31 | 32 | *g:space_vim_italic* 33 | Set to 1 if you want to enable italics in the terminal. Note that the terminal 34 | must support italics. 35 | > 36 | let g:space_vim_italic = 0 37 | < 38 | *g:space_vim_italicize_strings* 39 | Set to 1 if you want strings in italics. 40 | > 41 | let g:space_vim_italicize_strings = 0 42 | < 43 | *g:space_vim_plugin_hi_groups* 44 | Set to 0 to disable syntax highlighting definitions for a number of popular 45 | plugins: 46 | > 47 | let g:space_vim_plugin_hi_groups = 0 48 | < 49 | Note: setting this to 1 may leave "a wake of destruction when switching away" 50 | (Tim Pope), that is, when you switch to a different colorscheme the 51 | highlighting may look wrong or disabled. 52 | 53 | *g:space_vim_transp_bg* 54 | Set to 1 if you want a transparent background. Takes effect only in the 55 | terminal. 56 | > 57 | let g:space_vim_transp_bg = 0 58 | < 59 | 60 | vim:tw=78:ts=8:ft=help:norl: 61 | -------------------------------------------------------------------------------- /templates/_light.colortemplate: -------------------------------------------------------------------------------- 1 | # vim: ft=colortemplate 2 | 3 | Color: bg0 #fbf8ef ~ 4 | Color: bg1 #efeae9 ~ 5 | Color: bg2 #e3dedd ~ 6 | Color: bg3 #d2ceda ~ 7 | Color: bg4 #a8a4ae ~ 8 | 9 | Color: fg0 #83758c ~ 10 | # base 11 | Color: fg1 #655370 ~ 12 | Color: fg2 #5a4a64 ~ 13 | Color: fg3 #504259 ~ 14 | Color: fg4 #463a4e ~ 15 | Color: fg5 #8c799f ~ 16 | Color: fg6 #c8c6dd ~ 17 | 18 | # LineNr 19 | Color: grey #a8a8bf ~ 20 | Color: grey1 #768294 ~ 21 | 22 | Color: red #f2241f ~ 23 | Color: red1 #ba2f59 ~ 24 | Color: red2 #f54e3c ~ 25 | 26 | Color: blue0 #58b0d9 ~ 27 | Color: blue #3a81c3 ~ 28 | # Var 29 | Color: blue1 #715ab1 ~ 30 | 31 | Color: purple #6c3163 ~ 32 | Color: purple0 #86589e ~ 33 | Color: purple1 #4e3163 ~ 34 | Color: purple2 #d3d3e7 ~ 35 | Color: purple3 #544a65 ~ 36 | Color: purple4 #e2e0ea ~ 37 | 38 | Color: green #67b11d ~ 39 | # Comment 40 | Color: green1 #2aa1ae ~ 41 | 42 | Color: aqua #24775c ~ 43 | Color: aqua1 #4495b4 ~ 44 | 45 | Color: orange0 #d79650 ~ 46 | Color: orange #b46843 ~ 47 | 48 | Color: yellow #b1951d ~ 49 | Color: yellow1 #e5d11c ~ 50 | 51 | Color: cyan #21b8c7 ~ 52 | 53 | Color: meta #da8b55 ~ 54 | Color: mat #ba2f59 ~ 55 | Color: highlight #d3d3e7 ~ 56 | Color: war #dc752f ~ 57 | Color: cblk #655370 ~ 58 | Color: comp #6c4173 ~ 59 | 60 | Color: number #e697e6 ~ 61 | Color: debug #ffc8c8 ~ 62 | Color: float #b7b7ff ~ 63 | Color: delimiter #74baac ~ 64 | 65 | verbatim 66 | let g:terminal_ansi_colors = [ 67 | \ '@guibg0', '@guineutralred', '@guineutralgreen', '@guineutralyellow', '@guineutralblue', '@guineutralpurple', '@guineutralaqua', '@guifg3', 68 | \ '@guibg4', '@guired', '@guigreen', '@guiyellow', '@guiblue', '@guipurple', '@guiaqua', '@guifg1'] 69 | endverbatim 70 | 71 | Include: _common.colortemplate 72 | 73 | StatusLineNC purple2 bg1 74 | Visual none bg2 75 | -------------------------------------------------------------------------------- /templates/_help.colortemplate: -------------------------------------------------------------------------------- 1 | # vim: ft=colortemplate fdm=marker noet ts=8 tw=78 2 | 3 | documentation 4 | *@shortname.txt* 5 | 6 | 7 | VIM REFERENCE MANUAL by Liu-Cheng Xu 8 | 9 | 10 | @fullname colorscheme *@shortname* 11 | 12 | Space-vim-theme originates from 13 | [spacemacs-theme](https://github.com/nashamri/spacemacs-theme). 14 | 15 | Both dark and light backgrounds are supported, you must set 'background' 16 | before loading the colorscheme. For example: 17 | > 18 | set background=dark 19 | colorscheme space_vim_theme 20 | < 21 | @fullname requires at least 256 colors and supports "true color" terminals. 22 | 23 | ============================================================================== 24 | 1. Colorscheme options *@optionprefix-options* 25 | 26 | *g:@optionprefix_filetype_hi_groups* 27 | Set to 0 to disable syntax highlighting definitions for several filetypes. 28 | > 29 | let g:@optionprefix_filetype_hi_groups = 0 30 | < 31 | Note: setting this to 1 may leave "a wake of destruction when switching away" 32 | (Tim Pope), that is, when you switch to a different colorscheme the 33 | highlighting may look wrong or disabled. 34 | 35 | *g:@optionprefix_italic* 36 | Set to 1 if you want to enable italics in the terminal. Note that the terminal 37 | must support italics. 38 | > 39 | let g:@optionprefix_italic = 0 40 | < 41 | *g:@optionprefix_italicize_strings* 42 | Set to 1 if you want strings in italics. 43 | > 44 | let g:@optionprefix_italicize_strings = 0 45 | < 46 | *g:@optionprefix_plugin_hi_groups* 47 | Set to 0 to disable syntax highlighting definitions for a number of popular 48 | plugins: 49 | > 50 | let g:@optionprefix_plugin_hi_groups = 0 51 | < 52 | Note: setting this to 1 may leave "a wake of destruction when switching away" 53 | (Tim Pope), that is, when you switch to a different colorscheme the 54 | highlighting may look wrong or disabled. 55 | 56 | *g:@optionprefix_transp_bg* 57 | Set to 1 if you want a transparent background. Takes effect only in the 58 | terminal. 59 | > 60 | let g:@optionprefix_transp_bg = 0 61 | < 62 | enddocumentation 63 | -------------------------------------------------------------------------------- /templates/_plugins.colortemplate: -------------------------------------------------------------------------------- 1 | # vim: ft=colortemplate fdm=marker 2 | 3 | # Plugin specific groups 4 | verbatim 5 | if get(g:, "@optionprefix_plugin_hi_groups", 1) 6 | endverbatim 7 | # Asynchronous Lint Engine {{{ 8 | ALEError none none t=underline g=undercurl s=red 9 | ALEWarning none none t=underline g=undercurl s=red 10 | ALEInfo none none t=underline g=undercurl s=blue 11 | ALEErrorSign red none 12 | ALEWarningSign yellow none 13 | ALEInfoSign blue none 14 | # }}} 15 | # BufTabLine {{{ 16 | BufTabLineCurrent bg0 fg4 17 | BufTabLineActive fg4 bg2 18 | BufTabLineHidden bg4 bg1 19 | BufTabLineFill bg0 bg0 20 | # }}} 21 | # CtrlP {{{ 22 | CtrlPMatch yellow none 23 | CtrlPNoEntries red none 24 | CtrlPPrtBase bg2 none 25 | CtrlPPrtCursor blue none 26 | CtrlPLinePre bg2 none 27 | CtrlPMode1 blue bg2 bold 28 | CtrlPMode2 bg0 blue bold 29 | CtrlPStats fg4 bg2 bold 30 | # }}} 31 | # Dirvish {{{ 32 | DirvishPathTail aqua none 33 | DirvishArg yellow none 34 | # }}} 35 | # EasyMotion {{{ 36 | EasyMotionTarget -> Search 37 | EasyMotionShade -> Comment 38 | # }}} 39 | # GitCommit {{{ 40 | gitcommitSelectedFile green none 41 | gitcommitDiscardedFile red none 42 | # }}} 43 | # GitGutter {{{ 44 | GitGutterAdd green bg0 bold 45 | GitGutterChange orange bg0 bold 46 | GitGutterDelete red bg0 bold 47 | GitGutterChangeDelete red1 bg0 bold 48 | # }}} 49 | # Indent Guides {{{ 50 | verbatim 51 | if get(g:, "indent_guides_auto_colors", 0) 52 | if get(g:, "@optionprefix_invert_indent_guides", 0) 53 | endverbatim 54 | IndentGuidesOdd bg0 bg2 reverse 55 | IndentGuidesEven bg0 bg1 reverse 56 | verbatim 57 | else 58 | endverbatim 59 | IndentGuidesOdd bg0 bg2 60 | IndentGuidesEven bg0 bg1 61 | verbatim 62 | endif 63 | endif 64 | endverbatim 65 | # }}} 66 | # IndentLine {{{ 67 | verbatim 68 | " IndentLine 69 | if !exists('g:indentLine_color_term') 70 | let g:indentLine_color_term = @termbg2 71 | endif 72 | if !exists('g:indentLine_color_gui') 73 | let g:indentLine_color_gui = '@guibg2' 74 | endif 75 | endverbatim 76 | # }}} 77 | # NERDTree {{{ 78 | NERDTreeDir blue none bold 79 | NERDTreeDirSlash blue none 80 | NERDTreeOpenable blue none 81 | NERDTreeClosable blue none 82 | 83 | NERDTreeFile fg1 none 84 | NERDTreeExecFile yellow none 85 | 86 | NERDTreeUp red1 none 87 | NERDTreeCWD purple none 88 | NERDTreeHelp fg1 none 89 | 90 | NERDTreeToggleOn green none 91 | NERDTreeToggleOff red none 92 | # }}} 93 | # Netrw {{{ 94 | netrwDir blue none 95 | netrwClassify blue none 96 | netrwLink grey none 97 | netrwSymLink fg1 none 98 | netrwExe yellow none 99 | netrwComment grey none 100 | netrwList blue none 101 | netrwHelpCmd aqua none 102 | netrwCmdSep fg3 none 103 | netrwVersion green none 104 | # }}} 105 | # Rainbow Parentheses {{{ 106 | verbatim 107 | " Rainbow Parentheses 108 | if !exists('g:rbpt_colorpairs') 109 | let g:rbpt_colorpairs = [['blue', '@guineutralblue'], ['magenta', '@guineutralpurple'], 110 | \ ['red', '@guineutralred'], ['@termneutralorange', '@guineutralorange']] 111 | endif 112 | 113 | let g:rainbow_guifgs = [ '@guineutralorange', '@guineutralred', '@guineutralpurple', '@guineutralblue' ] 114 | let g:rainbow_ctermfgs = [ '@termneutralorange', 'red', 'magenta', 'blue' ] 115 | 116 | if !exists('g:rainbow_conf') 117 | let g:rainbow_conf = {} 118 | endif 119 | if !has_key(g:rainbow_conf, 'guifgs') 120 | let g:rainbow_conf['guifgs'] = g:rainbow_guifgs 121 | endif 122 | if !has_key(g:rainbow_conf, 'ctermfgs') 123 | let g:rainbow_conf['ctermfgs'] = g:rainbow_ctermfgs 124 | endif 125 | 126 | let g:niji_dark_colours = g:rbpt_colorpairs 127 | let g:niji_light_colours = g:rbpt_colorpairs 128 | endverbatim 129 | # }}} 130 | # ShowMarks {{{ 131 | ShowMarksHLl blue bg0 bold 132 | ShowMarksHLu blue bg0 bold 133 | ShowMarksHLo blue bg0 bold 134 | ShowMarksHLm blue bg0 bold 135 | # }}} 136 | # Signify {{{ 137 | SignifySignAdd green none 138 | SignifySignChange orange none 139 | SignifySignDelete red none 140 | # }}} 141 | # Signature {{{ 142 | SignatureMarkText blue bg0 bold 143 | SignatureMarkerText purple bg0 bold 144 | # }}} 145 | # Startify {{{ 146 | StartifyBracket fg3 none 147 | StartifyFile fg1 bg0 148 | StartifyNumber blue none 149 | StartifyPath blue1 none bold 150 | StartifySlash blue none 151 | StartifySection blue none bold 152 | StartifySpecial -> Type 153 | StartifyHeader purple1 none 154 | StartifyFooter purple1 none 155 | # }}} 156 | # Syntastic {{{ 157 | SyntasticError none none t=underline g=undercurl s=red 158 | SyntasticWarning none none t=underline g=undercurl s=yellow 159 | SyntasticErrorSign red bg0 160 | SyntasticWarningSign yellow bg0 161 | # }}} 162 | # Vim Multiple Cursors {{{ 163 | multiple_cursors_cursor none none reverse 164 | multiple_cursors_visual none bg2 165 | # }}} 166 | 167 | CurrentWord none purple3 underline 168 | CurrentWordTwins none purple3 169 | 170 | # vim-which-key {{{ 171 | WhichKey -> Function 172 | WhichKeySeperator green none 173 | WhichKeyGroup -> Keyword 174 | WhichKeyDesc -> Identifier 175 | # }}} 176 | 177 | # Vimshell {{{ 178 | verbatim 179 | let g:vimshell_escape_colors = [ 180 | \ '@guibg4', '@guired', '@guigreen', '@guiyellow', 181 | \ '@guiblue', '@guipurple', '@guiaqua', '@guifg4', 182 | \ '@guibg0', '@guired', '@guigreen', '@guiorange', 183 | \ '@guiblue', '@guipurple', '@guiaqua', '@guifg0' 184 | \ ] 185 | endverbatim 186 | # }}} 187 | verbatim 188 | endif 189 | endverbatim 190 | -------------------------------------------------------------------------------- /templates/_common.colortemplate: -------------------------------------------------------------------------------- 1 | # vim: ft=colortemplate fdm=marker 2 | 3 | # Default highlight groups {{{ 4 | verbatim 5 | if !has('gui_running') && get(g:, '@optionprefix_transp_bg', 0) 6 | endverbatim 7 | # Transparent background 8 | Normal fg1 none 9 | CursorLineNr purple none 10 | FoldColumn purple none 11 | SignColumn fg1 none 12 | VertSplit bg1 none 13 | verbatim 14 | else 15 | endverbatim 16 | # Opaque background 17 | Normal fg1 bg0 18 | CursorLineNr purple bg1 19 | FoldColumn purple bg1 20 | SignColumn fg1 bg0 21 | VertSplit bg1 bg0 22 | verbatim 23 | endif 24 | endverbatim 25 | 26 | # Group Fg Bg Attributes 27 | ColorColumn none bg1 28 | Conceal blue none 29 | Cursor orange none bold,reverse 30 | CursorColumn -> CursorLine 31 | CursorLine none bg1 32 | DiffAdd green bg0 reverse 33 | DiffChange orange bg0 reverse 34 | DiffDelete red bg0 reverse 35 | DiffText yellow bg0 reverse 36 | Directory blue none bold 37 | EndOfBuffer bg0 none 38 | Error red bg0 bold,reverse 39 | ErrorMsg bg0 red 40 | Folded purple1 bg1 g=italic 41 | IncSearch orange bg0 bold,reverse 42 | LineNr grey none 43 | MatchParen green none bold,underline 44 | ModeMsg yellow1 none 45 | MoreMsg -> ModeMsg 46 | NonText grey none 47 | 48 | Pmenu fg5 purple4 49 | PmenuSbar none bg1 50 | PmenuSel none fg6 51 | PmenuThumb none purple2 52 | 53 | Question orange none bold 54 | QuickFixLine -> Search 55 | qfLineNr -> Type 56 | Search green bg0 bold,reverse 57 | SpecialKey purple none 58 | SpellBad red none t=underline g=italic,undercurl s=red 59 | SpellCap blue none t=underline g=italic,undercurl s=blue 60 | SpellLocal aqua none t=underline g=italic,undercurl s=aqua 61 | SpellRare purple none t=underline g=italic,undercurl s=purple 62 | StatusLine fg1 purple2 63 | StatusLineNC purple2 bg4 64 | StatusLineTerm -> StatusLine 65 | StatusLineTermNC -> StatusLineNC 66 | TabLineFill purple3 bg1 67 | TabLineSel green bg1 68 | TabLine -> TabLineFill 69 | Title green none bold 70 | Visual none purple3 71 | VisualNOS -> Visual 72 | WarningMsg red none 73 | WildMenu orange bg1 bold 74 | # Other conventional group names (see `:help group-name`) 75 | Boolean war none 76 | Character purple none 77 | Comment green1 none none g=italic 78 | Conditional blue none bold 79 | Constant orange none 80 | Define aqua none 81 | Debug red2 none 82 | Delimiter delimiter none 83 | Error red bg0 bold,reverse 84 | Exception red none 85 | Float float none 86 | Function purple none bold 87 | Identifier blue1 none 88 | Ignore fg none 89 | Include yellow none 90 | Keyword blue none bold 91 | Label red1 none 92 | Macro blue1 none bold 93 | Number number none 94 | Operator blue0 none 95 | PreCondit purple1 none 96 | PreProc purple0 none 97 | Repeat red1 none bold 98 | SpecialChar cyan none 99 | SpecialComment grey1 none 100 | Statement blue none 101 | StorageClass yellow none bold 102 | Special orange0 none 103 | String aqua none 104 | Structure aqua1 none bold 105 | Tag orange none 106 | Todo orange none t=bold g=bold,italic 107 | Type red1 none 108 | Typedef yellow none 109 | Underlined blue none underline 110 | # Language mapping cursor 111 | lCursor -> Cursor 112 | # See `:help CursorIM` 113 | CursorIM none none reverse 114 | # See `:help window-toolbar` 115 | ToolbarLine none bg3 116 | ToolbarButton fg0 bg3 bold 117 | # }}} 118 | 119 | # Italics {{{ 120 | verbatim 121 | if get(g:, "@optionprefix_italic", 0) 122 | hi Comment cterm=italic 123 | hi Folded cterm=italic 124 | hi SpellBad cterm=italic,underline 125 | hi SpellCap cterm=italic,underline 126 | hi SpellLocal cterm=italic,underline 127 | hi SpellRare cterm=italic,underline 128 | hi Todo cterm=italic 129 | endif 130 | if get(g:, "@optionprefix_italicize_strings", 0) 131 | hi Special cterm=italic gui=italic 132 | hi String cterm=italic gui=italic 133 | endif 134 | endverbatim 135 | # }}} 136 | 137 | # Additional highlight groups {{{ 138 | # Input mode cursor 139 | iCursor -> Cursor 140 | # Visual mode cursor, selection 141 | vCursor -> Cursor 142 | 143 | # Useful for custom status lines 144 | NormalMode fg4 bg0 reverse 145 | InsertMode blue bg0 reverse 146 | ReplaceMode aqua bg0 reverse 147 | VisualMode orange bg0 reverse 148 | CommandMode purple bg0 reverse 149 | Warnings orange bg0 reverse 150 | # }}} 151 | 152 | # NeoVim terminal colors {{{ 153 | Include: _neovim.colortemplate 154 | # }}} 155 | 156 | verbatim 157 | if !(get(g:, "@optionprefix_plugin_hi_groups", 1) || get(g:, "@optionprefix_filetype_hi_groups", 1)) 158 | finish 159 | endif 160 | endverbatim 161 | 162 | Include: _plugins.colortemplate 163 | Include: _filetypes.colortemplate 164 | -------------------------------------------------------------------------------- /templates/_dark.colortemplate: -------------------------------------------------------------------------------- 1 | # vim: ft=colortemplate 2 | 3 | # ;; generic 4 | # act1 dark #222226 light #e7e5eb gui00 5 | # act2 dark #5d4d7a light #d3d3e7 gui01 6 | # base dark #b2b2b2 light #655370 gui02 7 | # base-dim dark #686868 light #a094a2 gui03 8 | # bg1 dark #292b2e light #fbf8ef gui04 => Normal-bg 9 | # bg2 dark #212026 light #efeae9 gui05 10 | # bg3 dark #100a14 light #e3dedd gui06 11 | # bg4 dark #0a0814 light #d2ceda gui07 12 | # border dark #5d4d7a light #b3b9be gui08 13 | # cblk dark #cbc1d5 light #655370 gui09 14 | # cblk-bg dark #2f2b33 light #e8e3f0 gui0A 15 | # cblk-ln dark #827591 light #9380b2 gui0B 16 | # cblk-ln-bg dark #373040 light #ddd8eb gui0C 17 | # cursor dark #e3dedd light #100a14 gui0D 18 | # const dark #a45bad light #4e3163 gui0E => Const 19 | # comment dark #2aa1ae light #2aa1ae gui0F green1 => Comment 20 | # comment-light dark #2aa1ae light #a49da5 gui10 21 | # comment-bg dark #292e34 light #ecf3ec gui11 22 | # comp dark #c56ec3 light #6c4173 gui12 23 | # err dark #e0211d light #e0211d gui13 => Error 24 | # func dark #bc6ec5 light #6c3163 gui14 => Function ? 25 | # head1 dark #4f97d7 light #3a81c3 gui15 blue => markdownH1 26 | # head1-bg dark #293239 light #edf1ed gui16 blue-bg 27 | # head2 dark #2d9574 light #2d9574 gui17 aqua => markdownH2 28 | # head2-bg dark #293235 light #edf2e9 gui18 aqua-bg 29 | # head3 dark #67b11d light #67b11d gui19 green => markdownH3 30 | # head3-bg dark #293235 light #edf2e9 gui1A green-bg 31 | # head4 dark #b1951d light #b1951d gui1B yellow => markdownH4 32 | # head4-bg dark #32322c light #f6f1e1 gui1C yellow-bg 33 | # highlight dark #444155 light #d3d3e7 gui1D 34 | # highlight-dim dark #3b314d light #e7e7fc gui1E 35 | # keyword dark #4f97d7 light #3a81c3 gui1F blue => Keyword 36 | # lnum dark #44505c light #a8a8bf gui20 => LineNr 37 | # mat dark #86dc2f light #ba2f59 gui21 => Search-bg 38 | # meta dark #9f8766 light #da8b55 gui22 39 | # str dark #2d9574 light #2d9574 gui23 aqua => String ? 40 | # suc dark #86dc2f light #42ae2c gui24 41 | # ttip dark #9a9aba light #8c799f gui25 => Pmenu 42 | # ttip-sl dark #5e5079 light #c8c6dd gui26 => PmenuSel 43 | # ttip-bg dark #34323e light #e2e0ea gui27 44 | # type dark #ce537a light #ba2f59 gui28 red1 45 | # var dark #7590db light #715ab1 gui29 blue1 46 | # war dark #dc752f light #dc752f gui2A 47 | # 48 | # ;; colors 49 | # aqua dark #2d9574 light #2d9574 gui30 50 | # aqua-bg dark #293235 light #edf2e9 gui31 51 | # green dark #67b11d light #67b11d gui32 52 | # green-bg dark #293235 light #edf2e9 gui33 53 | # green-bg-s dark #29422d light #dae6d0 gui34 54 | # cyan dark #28def0 light #21b8c7 gui35 55 | # red dark #f2241f light #f2241f gui36 56 | # red-bg dark #3c2a2c light #faede4 gui37 57 | # red-bg-s dark #512e31 light #eed9d2 gui38 58 | # blue dark #4f97d7 light #3a81c3 gui39 59 | # blue-bg dark #293239 light #edf1ed gui3A 60 | # blue-bg-s dark #2d4252 light #d1dcdf gui3B 61 | # magenta dark #a31db1 light #a31db1 gui3C 62 | # yellow dark #b1951d light #b1951d gui3D 63 | # yellow-bg dark #32322c light #f6f1e1 gui3E 64 | 65 | # blue: #8ebbe6 --> #e6b98e orange 66 | # blue: #4f97d7 --> #d78f4f orange 67 | # blue: #7590db --> #dbc075 orange 68 | 69 | # func 70 | # magenta: #bc6ec5 --> #77c56e green 71 | # blue magenta: 5d4d7a --> #6a7a4d yellow green 72 | 73 | # green diffadded 74 | # green cyan: #1db167 --> #b11d67 magenta red 75 | # 76 | # GUI color definitions 77 | # ---|-----------------------|-------------- 78 | # ## | ORIGINAL THEME SWATCH | ACTUAL COLOUR 79 | # ---|-----------------------|-------------- 80 | # 00 | bg1 | dark grey 81 | # 01 | bg2 | darker grey 82 | # 02 | act2 | dark purple 83 | # 03 | n/a | medium cool grey 84 | # 04 | base | light grey 85 | # 05 | base | light grey 86 | # 06 | cblk-ln | purple grey 87 | # 07 | cblk-ln-bg | dark purple grey 88 | # 08 | var | azure 89 | # 09 | const | medium purple 90 | # 0A | comment | teal 91 | # 0B | str | cool green 92 | # 0C | type | coral 93 | # 0D | func | pink 94 | # 0E | keyword | blue 95 | # 0F | act2 | dark purple 96 | # ---|-----------------------|-------------- 97 | # let s:gui00 = "292b2e" 98 | # let s:gui01 = "212026" 99 | # let s:gui02 = "5d4d7a" 100 | # let s:gui03 = "68727c" 101 | # let s:gui04 = "b2b2b2" 102 | # let s:gui05 = "b2b2b2" 103 | # let s:gui06 = "827591" 104 | # let s:gui07 = "373040" 105 | # let s:gui08 = "7590db" 106 | # let s:gui09 = "a45bad" 107 | # let s:gui0A = "2aa1ae" 108 | # let s:gui0B = "2d9574" 109 | # let s:gui0C = "ce537a" 110 | # let s:gui0D = "bc6ec5" 111 | # let s:gui0E = "4f97d7" 112 | # let s:gui0F = "5d4d7a" 113 | 114 | ###################### 115 | # Color: green #67b11d 116 | # Color: red #f2241f 117 | 118 | 119 | # Color palette for dark background 120 | # bg0 ----> spacemacs-theme bg1 121 | Color: bg0 #292b2e ~ 122 | Color: bg1 #212026 ~ 123 | Color: bg2 #100a14 ~ 124 | Color: bg3 #0a0814 ~ 125 | Color: bg4 #34323e ~ 126 | 127 | Color: fg0 #cdcdcd ~ 128 | # fg1 ----> spacemacs-theme base 129 | Color: fg1 #b2b2b2 ~ 130 | Color: fg2 #8e8e8e ~ 131 | Color: fg3 #727272 ~ 132 | Color: fg4 #5b5b5b ~ 133 | # pmenu fg 134 | Color: fg5 #9a9aba ~ 135 | # pmenu sel fg 136 | Color: fg6 #5e5079 ~ 137 | Color: fg7 #666666 ~ 138 | 139 | # LineNr 140 | Color: grey #44505c ~ 141 | Color: grey1 #768294 ~ 142 | 143 | # red -> ErrorMsg 144 | Color: red #f2241f ~ 145 | # Type 146 | Color: red1 #ce537a ~ 147 | 148 | Color: red2 #f54e3c ~ 149 | 150 | Color: green #67b11d ~ 151 | # Comment 152 | Color: green1 #2aa1ae ~ 153 | 154 | Color: blue0 #58b0d9 ~ 155 | Color: blue #4f97d7 ~ 156 | # Var 157 | Color: blue1 #7590db ~ 158 | 159 | # Function 160 | Color: purple #bc6ec5 ~ 161 | # light purple 162 | Color: purple0 #d698fe ~ 163 | # Const 164 | Color: purple1 #a45bad ~ 165 | # statusline --> act2 166 | Color: purple2 #5d4d7a ~ 167 | # dark purple 168 | Color: purple3 #544a65 ~ 169 | # pmemu bg 170 | Color: purple4 #34323e ~ 171 | 172 | # spacemacs-theme: string 173 | Color: aqua #2d9574 ~ 174 | Color: aqua1 #4495b4 ~ 175 | 176 | # spacemacs-theme ttip-sl 177 | # 5e5079 178 | 179 | Color: orange0 #d79650 ~ 180 | Color: orange #e18254 ~ 181 | 182 | Color: yellow #b1951d ~ 183 | Color: yellow1 #e5d11c ~ 184 | 185 | Color: cyan #28def0 ~ 186 | 187 | Color: mat #86dc2f ~ 188 | Color: meta #9f8766 ~ 189 | Color: highlight #444155 ~ 190 | 191 | Color: comp #c56ec3 ~ 192 | Color: cblk #cbc1d5 ~ 193 | Color: war #dc752f ~ 194 | Color: float #b7b7ff ~ 195 | Color: delimiter #74baac ~ 196 | Color: debug #ffc8c8 ~ 197 | Color: number #e697e6 ~ 198 | 199 | verbatim 200 | let g:terminal_ansi_colors = [ 201 | \ '@guibg0', '@guineutralred', '@guineutralgreen', '@guineutralyellow', '@guineutralblue', '@guineutralpurple', '@guineutralaqua', '@guifg3', 202 | \ '@guibg4', '@guired', '@guigreen', '@guiyellow', '@guiblue', '@guipurple', '@guiaqua', '@guifg1'] 203 | endverbatim 204 | 205 | Include: _common.colortemplate 206 | -------------------------------------------------------------------------------- /templates/_filetypes.colortemplate: -------------------------------------------------------------------------------- 1 | # vim: ft=colortemplate fdm=marker 2 | 3 | # Filetype specific groups 4 | verbatim 5 | if get(g:, "@optionprefix_filetype_hi_groups", 1) 6 | endverbatim 7 | # Diff {{{ 8 | diffAdded green none 9 | diffRemoved red none 10 | diffChanged aqua none 11 | 12 | diffFile orange none 13 | diffNewFile yellow none 14 | 15 | diffLine blue none 16 | # }}} 17 | # HTML {{{ 18 | htmlTag blue none 19 | htmlEndTag blue none 20 | 21 | htmlTagName purple1 none 22 | htmlArg aqua none 23 | 24 | htmlScriptTag purple none 25 | htmlTagN fg1 none 26 | htmlSpecialTagName aqua none bold 27 | 28 | htmlLink blue none underline 29 | 30 | htmlSpecialChar orange none 31 | 32 | htmlBold fg bg0 bold 33 | htmlBoldUnderline fg bg0 bold,underline 34 | htmlBoldItalic fg bg0 bold,italic 35 | htmlBoldUnderlineItalic fg bg0 bold,underline,italic 36 | 37 | htmlUnderline fg bg0 underline 38 | htmlUnderlineItalic fg bg0 underline,italic 39 | htmlItalic blue1 none italic 40 | # }}} 41 | # XML {{{ 42 | xmlTag blue none 43 | xmlEndTag blue none 44 | xmlTagName blue none 45 | xmlEqual blue none 46 | docbkKeyword aqua none bold 47 | 48 | xmlDocTypeDecl grey none 49 | xmlDocTypeKeyword purple none 50 | xmlCdataStart grey none 51 | xmlCdataCdata purple none 52 | dtdFunction grey none 53 | dtdTagName purple none 54 | 55 | xmlAttrib aqua none 56 | xmlProcessingDelim grey none 57 | dtdParamEntityPunct grey none 58 | dtdParamEntityDPunct grey none 59 | xmlAttribPunct grey none 60 | 61 | xmlEntity orange none 62 | xmlEntityPunct orange none 63 | # }}} 64 | # Vim {{{ 65 | vimCommentTitle blue1 none bold 66 | vimNotation orange none 67 | vimBracket orange none 68 | vimMapModKey orange none 69 | vimCommand blue none bold 70 | vimLet blue none 71 | vimNorm blue none 72 | vimFuncSID -> Function 73 | vimFunction -> Function 74 | vimGroup blue1 none 75 | vimHiGroup -> Type 76 | vimSetSep fg3 none 77 | vimSep fg3 none 78 | vimContinue yellow none 79 | # }}} 80 | # Clojure {{{ 81 | clojureKeyword blue none 82 | clojureCond orange none 83 | clojureSpecial orange none 84 | clojureDefine orange none 85 | 86 | clojureFunc yellow none 87 | clojureRepeat yellow none 88 | clojureCharacter aqua none 89 | clojureStringEscape aqua none 90 | clojureException red none 91 | 92 | clojureRegexp aqua none 93 | clojureRegexpEscape aqua none 94 | clojureRegexpCharClass fg3 none bold 95 | clojureRegexpMod -> clojureRegexpCharClass 96 | clojureRegexpQuantifier -> clojureRegexpCharClass 97 | 98 | clojureParen fg3 none 99 | clojureAnonArg yellow none 100 | clojureVariable blue none 101 | clojureMacro orange none 102 | 103 | clojureMeta yellow none 104 | clojureDeref yellow none 105 | clojureQuote yellow none 106 | clojureUnquote yellow none 107 | # }}} 108 | # C {{{ 109 | cOperator purple none 110 | cStructure orange none 111 | # }}} 112 | # rust {{{ 113 | rustSelf blue none bold 114 | rustPanic red1 none bold 115 | rustAssert blue1 none bold 116 | #}}} 117 | # Python {{{ 118 | # pythonBuiltin orange none 119 | # pythonBuiltinObj orange none 120 | # pythonBuiltinFunc orange none 121 | # pythonFunction -> Function 122 | # pythonDecorator red none 123 | # pythonInclude blue none 124 | # pythonImport blue none 125 | # pythonRun blue none 126 | pythonCoding -> Comment 127 | # pythonOperator red none 128 | # pythonException red none 129 | # pythonExceptions purple none 130 | # pythonBoolean purple none 131 | # pythonDot fg3 none 132 | # pythonConditional red none 133 | # pythonRepeat red none 134 | # pythonDottedName green none bold 135 | # }}} 136 | # CSS {{{ 137 | cssBraces blue none 138 | cssFunctionName yellow none 139 | cssIdentifier orange none 140 | cssClassName green none 141 | cssColor blue none 142 | cssSelectorOp blue none 143 | cssSelectorOp2 blue none 144 | cssImportant green none 145 | cssVendor fg1 none 146 | 147 | cssTextProp aqua none 148 | cssAnimationProp aqua none 149 | cssUIProp yellow none 150 | cssTransformProp aqua none 151 | cssTransitionProp aqua none 152 | cssPrintProp aqua none 153 | cssPositioningProp yellow none 154 | cssBoxProp aqua none 155 | cssFontDescriptorProp aqua none 156 | cssFlexibleBoxProp aqua none 157 | cssBorderOutlineProp aqua none 158 | cssBackgroundProp aqua none 159 | cssMarginProp aqua none 160 | cssListProp aqua none 161 | cssTableProp aqua none 162 | cssFontProp aqua none 163 | cssPaddingProp aqua none 164 | cssDimensionProp aqua none 165 | cssRenderProp aqua none 166 | cssColorProp aqua none 167 | cssGeneratedContentProp aqua none 168 | # }}} 169 | # JavaScript {{{ 170 | javaScriptBraces fg1 none 171 | javaScriptFunction aqua none 172 | javaScriptIdentifier red none 173 | javaScriptMember blue none 174 | javaScriptNumber purple none 175 | javaScriptNull purple none 176 | javaScriptParens fg3 none 177 | # }}} 178 | # YAJS {{{ 179 | javascriptImport aqua none 180 | javascriptExport aqua none 181 | javascriptClassKeyword aqua none 182 | javascriptClassExtends aqua none 183 | javascriptDefault aqua none 184 | 185 | javascriptClassName yellow none 186 | javascriptClassSuperName yellow none 187 | javascriptGlobal yellow none 188 | 189 | javascriptEndColons fg1 none 190 | javascriptFuncArg fg1 none 191 | javascriptGlobalMethod fg1 none 192 | javascriptNodeGlobal fg1 none 193 | javascriptBOMWindowProp fg1 none 194 | javascriptArrayMethod fg1 none 195 | javascriptArrayStaticMethod fg1 none 196 | javascriptCacheMethod fg1 none 197 | javascriptDateMethod fg1 none 198 | javascriptMathStaticMethod fg1 none 199 | 200 | javascriptURLUtilsProp fg1 none 201 | javascriptBOMNavigatorProp fg1 none 202 | javascriptDOMDocMethod fg1 none 203 | javascriptDOMDocProp fg1 none 204 | javascriptBOMLocationMethod fg1 none 205 | javascriptBOMWindowMethod fg1 none 206 | javascriptStringMethod fg1 none 207 | 208 | javascriptVariable orange none 209 | javascriptIdentifier orange none 210 | javascriptClassSuper orange none 211 | 212 | javascriptFuncKeyword aqua none 213 | javascriptAsyncFunc aqua none 214 | javascriptClassStatic orange none 215 | 216 | javascriptOperator red1 none 217 | javascriptForOperator red1 none 218 | javascriptYield red1 none 219 | javascriptExceptions red1 none 220 | javascriptMessage red1 none 221 | 222 | javascriptTemplateSB aqua none 223 | javascriptTemplateSubstitution fg1 none 224 | 225 | javascriptLabel fg1 none 226 | javascriptObjectLabel fg1 none 227 | javascriptPropertyName fg1 none 228 | 229 | javascriptLogicSymbols fg1 none 230 | javascriptArrowFunc yellow none 231 | 232 | javascriptDocParamName fg4 none 233 | javascriptDocTags fg4 none 234 | javascriptDocNotation fg4 none 235 | javascriptDocParamType fg4 none 236 | javascriptDocNamedParamType fg4 none 237 | 238 | javascriptBrackets fg1 none 239 | javascriptDOMElemAttrs fg1 none 240 | javascriptDOMEventMethod fg1 none 241 | javascriptDOMNodeMethod fg1 none 242 | javascriptDOMStorageMethod fg1 none 243 | javascriptHeadersMethod fg1 none 244 | 245 | javascriptAsyncFuncKeyword red1 none bold 246 | javascriptAwaitFuncKeyword red1 none bold 247 | # }}} 248 | # PanglossJS {{{ 249 | jsClassKeyword -> Keyword 250 | jsExtendsKeyword -> Keyword 251 | jsExportDefault blue none bold 252 | jsTemplateBraces aqua none 253 | jsGlobalNodeObjects -> Keyword 254 | jsGlobalObjects -> Keyword 255 | jsFunction -> Function 256 | jsFuncParens orange none 257 | jsParens red1 none 258 | jsNull purple none 259 | jsUndefined -> ErrorMsg 260 | jsClassDefinition yellow none 261 | jsObjectProp -> Identifier 262 | jsObjectKey blue0 none 263 | jsFunctionKey blue1 none 264 | jsBracket red1 none 265 | jsObjectColon red1 none 266 | jsFuncArgs blue0 none 267 | jsFuncBraces blue1 none 268 | jsVariableDef fg1 none 269 | jsObjectBraces -> Special 270 | jsObjectValue float none 271 | jsClassBlock blue1 none 272 | jsFutureKeys orange none bold 273 | jsFuncArgs blue none 274 | jsStorageClass blue none 275 | jsxRegion blue none 276 | # }}} 277 | # TypeScript {{{ 278 | typeScriptReserved aqua none 279 | typeScriptLabel -> Label 280 | typeScriptFuncKeyword -> Function 281 | typeScriptIdentifier -> Identifier 282 | typeScriptBraces red1 none 283 | typeScriptEndColons fg1 none 284 | typeScriptDOMObjects fg1 none 285 | typeScriptAjaxMethods -> Function 286 | typeScriptLogicSymbols fg1 none 287 | typeScriptDocSeeTag -> Comment 288 | typeScriptDocParam -> Comment 289 | typeScriptDocTags -> vimCommentTitle 290 | typeScriptGlobalObjects -> Keyword 291 | typeScriptParens blue1 none 292 | typeScriptOpSymbols -> Operator 293 | typeScriptHtmlElemProperties -> Special 294 | typeScriptNull purple none bold 295 | typeScriptInterpolationDelimiter aqua none 296 | # }}} 297 | # PureScript {{{ 298 | purescriptModuleKeyword aqua none 299 | purescriptModuleName red1 none bold 300 | purescriptWhere aqua none 301 | purescriptDelimiter fg4 none 302 | purescriptType -> Type 303 | purescriptImportKeyword -> Keyword 304 | purescriptHidingKeyword -> Keyword 305 | purescriptAsKeyword -> Keyword 306 | purescriptStructure -> Structure 307 | purescriptOperator -> Operator 308 | 309 | purescriptTypeVar -> Type 310 | purescriptConstructor -> Function 311 | purescriptFunction -> Function 312 | purescriptConditional -> Conditional 313 | purescriptBacktick orange none 314 | # }}} 315 | # CoffeeScript {{{ 316 | coffeeExtendedOp fg3 none 317 | coffeeSpecialOp fg3 none 318 | coffeeCurly orange none 319 | coffeeParen fg3 none 320 | coffeeBracket orange none 321 | # }}} 322 | # Ruby {{{ 323 | rubyStringDelimiter green none 324 | rubyInterpolationDelimiter aqua none 325 | # }}} 326 | # ObjectiveC {{{ 327 | objcTypeModifier red none 328 | objcDirective blue none 329 | # }}} 330 | # Go {{{ 331 | goDirective aqua none 332 | goConstants purple none 333 | goDeclaration -> Keyword 334 | goDeclType blue none 335 | goBuiltins orange none 336 | # }}} 337 | # Lua {{{ 338 | luaIn red1 none 339 | luaFunction aqua none 340 | luaTable orange none 341 | # }}} 342 | # MoonScript {{{ 343 | moonSpecialOp fg3 none 344 | moonExtendedOp fg3 none 345 | moonFunction fg3 none 346 | moonObject yellow none 347 | # }}} 348 | # Java {{{ 349 | javaAnnotation blue none 350 | javaDocTags aqua none 351 | javaCommentTitle -> vimCommentTitle 352 | javaParen fg3 none 353 | javaParen1 fg3 none 354 | javaParen2 fg3 none 355 | javaParen3 fg3 none 356 | javaParen4 fg3 none 357 | javaParen5 fg3 none 358 | javaOperator orange none 359 | 360 | javaVarArg green none 361 | # }}} 362 | # Elixir {{{ 363 | elixirDocString -> Comment 364 | 365 | elixirStringDelimiter green none 366 | elixirInterpolationDelimiter aqua none 367 | 368 | elixirModuleDeclaration yellow none 369 | # }}} 370 | # Scala {{{ 371 | scalaNameDefinition fg1 none 372 | scalaCaseFollowing fg1 none 373 | scalaCapitalWord fg1 none 374 | scalaTypeExtension fg1 none 375 | 376 | scalaKeyword red1 none bold 377 | scalaKeywordModifier red1 none 378 | 379 | scalaSpecial aqua none 380 | scalaOperator fg1 none 381 | 382 | scalaTypeDeclaration yellow none 383 | scalaTypeTypePostDeclaration yellow none 384 | 385 | scalaInstanceDeclaration fg1 none 386 | scalaInterpolation aqua none 387 | # }}} 388 | # Markdown {{{ 389 | markdownItalic fg3 none italic 390 | 391 | markdownH1 blue none bold 392 | markdownH2 aqua none bold 393 | markdownH3 green none bold 394 | markdownH4 yellow none bold 395 | markdownH5 yellow none 396 | markdownH6 yellow none 397 | 398 | htmlH1 -> markdownH1 399 | htmlH2 -> markdownH2 400 | htmlH3 -> markdownH3 401 | htmlH4 -> markdownH4 402 | htmlH5 -> markdownH5 403 | htmlH6 -> markdownH6 404 | 405 | markdownCode purple1 none 406 | mkdCode -> markdownCode 407 | markdownCodeBlock aqua none 408 | markdownCodeDelimiter orange none 409 | mkdCodeDelimiter -> markdownCodeDelimiter 410 | 411 | markdownBlockquote grey none 412 | markdownListMarker grey none 413 | markdownOrderedListMarker grey none 414 | markdownRule grey none 415 | markdownHeadingRule grey none 416 | 417 | markdownUrlDelimiter fg3 none 418 | markdownLinkDelimiter fg3 none 419 | markdownLinkTextDelimiter fg3 none 420 | 421 | markdownHeadingDelimiter orange none 422 | markdownUrl purple none 423 | markdownUrlTitleDelimiter green none 424 | 425 | markdownLinkText -> htmlLink 426 | markdownIdDeclaration -> markdownLinkText 427 | # }}} 428 | # Haskell {{{ 429 | haskellType fg1 none 430 | haskellIdentifier fg1 none 431 | haskellSeparator fg1 none 432 | haskellDelimiter fg4 none 433 | haskellOperators blue none 434 | 435 | haskellBacktick orange none 436 | haskellStatement orange none 437 | haskellConditional orange none 438 | 439 | haskellLet aqua none 440 | haskellDefault aqua none 441 | haskellWhere aqua none 442 | haskellBottom aqua none 443 | haskellBlockKeywords aqua none 444 | haskellImportKeywords aqua none 445 | haskellDeclKeyword aqua none 446 | haskellDeriving aqua none 447 | haskellAssocType aqua none 448 | 449 | haskellNumber purple none 450 | haskellPragma purple none 451 | 452 | haskellString green none 453 | haskellChar green none 454 | # }}} 455 | # JSON {{{ 456 | jsonKeyword green none 457 | jsonQuote green none 458 | jsonBraces fg1 none 459 | jsonString fg1 none 460 | # }}} 461 | verbatim 462 | endif 463 | endverbatim 464 | -------------------------------------------------------------------------------- /colors/space_vim_theme.vim: -------------------------------------------------------------------------------- 1 | " Name: Space-vim theme 2 | " Description: Light and dark theme inspired by spacemacs-theme 3 | " Author: Liu-Cheng Xu 4 | " Maintainer: Liu-Cheng Xu 5 | " Website: https://github.com/liuchengxu/space-vim-theme 6 | " License: Vim License (see `:help license`) 7 | " Last Updated: Mon 25 Mar 2019 05:22:40 PM CST 8 | 9 | if !(has('termguicolors') && &termguicolors) && !has('gui_running') 10 | \ && (!exists('&t_Co') || &t_Co < 256) 11 | echoerr '[Space-vim theme] There are not enough colors.' 12 | finish 13 | endif 14 | 15 | hi clear 16 | if exists('syntax_on') 17 | syntax reset 18 | endif 19 | 20 | let g:colors_name = 'space_vim_theme' 21 | 22 | if &background ==# 'dark' 23 | let g:terminal_ansi_colors = [ 24 | \ '#292b2e', '#d26487', '#35a8a5', '#b89f33', '#6981c5', '#a15ea7', '#288668', '#727272', 25 | \ '#34323e', '#f2241f', '#67b11d', '#b1951d', '#4f97d7', '#bc6ec5', '#2d9574', '#b2b2b2'] 26 | if !has('gui_running') && get(g:, 'space_vim_transp_bg', 0) 27 | hi Normal ctermfg=249 ctermbg=NONE guifg=#b2b2b2 guibg=NONE guisp=NONE cterm=NONE gui=NONE 28 | hi CursorLineNr ctermfg=170 ctermbg=NONE guifg=#bc6ec5 guibg=NONE guisp=NONE cterm=NONE gui=NONE 29 | hi FoldColumn ctermfg=170 ctermbg=NONE guifg=#bc6ec5 guibg=NONE guisp=NONE cterm=NONE gui=NONE 30 | hi SignColumn ctermfg=249 ctermbg=NONE guifg=#b2b2b2 guibg=NONE guisp=NONE cterm=NONE gui=NONE 31 | hi VertSplit ctermfg=234 ctermbg=NONE guifg=#212026 guibg=NONE guisp=NONE cterm=NONE gui=NONE 32 | else 33 | hi Normal ctermfg=249 ctermbg=235 guifg=#b2b2b2 guibg=#292b2e guisp=NONE cterm=NONE gui=NONE 34 | hi CursorLineNr ctermfg=170 ctermbg=234 guifg=#bc6ec5 guibg=#212026 guisp=NONE cterm=NONE gui=NONE 35 | hi FoldColumn ctermfg=170 ctermbg=234 guifg=#bc6ec5 guibg=#212026 guisp=NONE cterm=NONE gui=NONE 36 | hi SignColumn ctermfg=249 ctermbg=235 guifg=#b2b2b2 guibg=#292b2e guisp=NONE cterm=NONE gui=NONE 37 | hi VertSplit ctermfg=234 ctermbg=235 guifg=#212026 guibg=#292b2e guisp=NONE cterm=NONE gui=NONE 38 | endif 39 | hi ColorColumn ctermfg=NONE ctermbg=234 guifg=NONE guibg=#212026 guisp=NONE cterm=NONE gui=NONE 40 | hi Conceal ctermfg=32 ctermbg=NONE guifg=#4f97d7 guibg=NONE guisp=NONE cterm=NONE gui=NONE 41 | hi Cursor ctermfg=173 ctermbg=NONE guifg=#e18254 guibg=NONE guisp=NONE cterm=NONE,bold,reverse gui=NONE,bold,reverse 42 | hi! link CursorColumn CursorLine 43 | hi CursorLine ctermfg=NONE ctermbg=234 guifg=NONE guibg=#212026 guisp=NONE cterm=NONE gui=NONE 44 | hi DiffAdd ctermfg=70 ctermbg=235 guifg=#67b11d guibg=#292b2e guisp=NONE cterm=NONE,reverse gui=NONE,reverse 45 | hi DiffChange ctermfg=173 ctermbg=235 guifg=#e18254 guibg=#292b2e guisp=NONE cterm=NONE,reverse gui=NONE,reverse 46 | hi DiffDelete ctermfg=196 ctermbg=235 guifg=#f2241f guibg=#292b2e guisp=NONE cterm=NONE,reverse gui=NONE,reverse 47 | hi DiffText ctermfg=136 ctermbg=235 guifg=#b1951d guibg=#292b2e guisp=NONE cterm=NONE,reverse gui=NONE,reverse 48 | hi Directory ctermfg=32 ctermbg=NONE guifg=#4f97d7 guibg=NONE guisp=NONE cterm=NONE,bold gui=NONE,bold 49 | hi EndOfBuffer ctermfg=235 ctermbg=NONE guifg=#292b2e guibg=NONE guisp=NONE cterm=NONE gui=NONE 50 | hi Error ctermfg=196 ctermbg=235 guifg=#f2241f guibg=#292b2e guisp=NONE cterm=NONE,bold,reverse gui=NONE,bold,reverse 51 | hi ErrorMsg ctermfg=235 ctermbg=196 guifg=#292b2e guibg=#f2241f guisp=NONE cterm=NONE gui=NONE 52 | hi Folded ctermfg=133 ctermbg=234 guifg=#a45bad guibg=#212026 guisp=NONE cterm=NONE gui=NONE,italic 53 | hi IncSearch ctermfg=173 ctermbg=235 guifg=#e18254 guibg=#292b2e guisp=NONE cterm=NONE,bold,reverse gui=NONE,bold,reverse 54 | hi LineNr ctermfg=239 ctermbg=NONE guifg=#44505c guibg=NONE guisp=NONE cterm=NONE gui=NONE 55 | hi MatchParen ctermfg=70 ctermbg=NONE guifg=#67b11d guibg=NONE guisp=NONE cterm=NONE,bold,underline gui=NONE,bold,underline 56 | hi ModeMsg ctermfg=184 ctermbg=NONE guifg=#e5d11c guibg=NONE guisp=NONE cterm=NONE gui=NONE 57 | hi! link MoreMsg ModeMsg 58 | hi NonText ctermfg=239 ctermbg=NONE guifg=#44505c guibg=NONE guisp=NONE cterm=NONE gui=NONE 59 | hi Pmenu ctermfg=103 ctermbg=236 guifg=#9a9aba guibg=#34323e guisp=NONE cterm=NONE gui=NONE 60 | hi PmenuSbar ctermfg=NONE ctermbg=234 guifg=NONE guibg=#212026 guisp=NONE cterm=NONE gui=NONE 61 | hi PmenuSel ctermfg=NONE ctermbg=60 guifg=NONE guibg=#5e5079 guisp=NONE cterm=NONE gui=NONE 62 | hi PmenuThumb ctermfg=NONE ctermbg=60 guifg=NONE guibg=#5d4d7a guisp=NONE cterm=NONE gui=NONE 63 | hi Question ctermfg=173 ctermbg=NONE guifg=#e18254 guibg=NONE guisp=NONE cterm=NONE,bold gui=NONE,bold 64 | hi! link QuickFixLine Search 65 | hi! link qfLineNr Type 66 | hi Search ctermfg=70 ctermbg=235 guifg=#67b11d guibg=#292b2e guisp=NONE cterm=NONE,bold,reverse gui=NONE,bold,reverse 67 | hi SpecialKey ctermfg=170 ctermbg=NONE guifg=#bc6ec5 guibg=NONE guisp=NONE cterm=NONE gui=NONE 68 | hi SpellBad ctermfg=196 ctermbg=NONE guifg=#f2241f guibg=NONE guisp=#f2241f cterm=NONE,underline gui=NONE,italic,undercurl 69 | hi SpellCap ctermfg=32 ctermbg=NONE guifg=#4f97d7 guibg=NONE guisp=#4f97d7 cterm=NONE,underline gui=NONE,italic,undercurl 70 | hi SpellLocal ctermfg=29 ctermbg=NONE guifg=#2d9574 guibg=NONE guisp=#2d9574 cterm=NONE,underline gui=NONE,italic,undercurl 71 | hi SpellRare ctermfg=170 ctermbg=NONE guifg=#bc6ec5 guibg=NONE guisp=#bc6ec5 cterm=NONE,underline gui=NONE,italic,undercurl 72 | hi StatusLine ctermfg=249 ctermbg=60 guifg=#b2b2b2 guibg=#5d4d7a guisp=NONE cterm=NONE gui=NONE 73 | hi StatusLineNC ctermfg=60 ctermbg=236 guifg=#5d4d7a guibg=#34323e guisp=NONE cterm=NONE gui=NONE 74 | hi! link StatusLineTerm StatusLine 75 | hi! link StatusLineTermNC StatusLineNC 76 | hi TabLineFill ctermfg=60 ctermbg=234 guifg=#544a65 guibg=#212026 guisp=NONE cterm=NONE gui=NONE 77 | hi TabLineSel ctermfg=70 ctermbg=234 guifg=#67b11d guibg=#212026 guisp=NONE cterm=NONE gui=NONE 78 | hi! link TabLine TabLineFill 79 | hi Title ctermfg=70 ctermbg=NONE guifg=#67b11d guibg=NONE guisp=NONE cterm=NONE,bold gui=NONE,bold 80 | hi Visual ctermfg=NONE ctermbg=60 guifg=NONE guibg=#544a65 guisp=NONE cterm=NONE gui=NONE 81 | hi! link VisualNOS Visual 82 | hi WarningMsg ctermfg=196 ctermbg=NONE guifg=#f2241f guibg=NONE guisp=NONE cterm=NONE gui=NONE 83 | hi WildMenu ctermfg=173 ctermbg=234 guifg=#e18254 guibg=#212026 guisp=NONE cterm=NONE,bold gui=NONE,bold 84 | hi Boolean ctermfg=166 ctermbg=NONE guifg=#dc752f guibg=NONE guisp=NONE cterm=NONE gui=NONE 85 | hi Character ctermfg=170 ctermbg=NONE guifg=#bc6ec5 guibg=NONE guisp=NONE cterm=NONE gui=NONE 86 | hi Comment ctermfg=37 ctermbg=NONE guifg=#2aa1ae guibg=NONE guisp=NONE cterm=NONE,none gui=NONE,italic,none 87 | hi Conditional ctermfg=32 ctermbg=NONE guifg=#4f97d7 guibg=NONE guisp=NONE cterm=NONE,bold gui=NONE,bold 88 | hi Constant ctermfg=173 ctermbg=NONE guifg=#e18254 guibg=NONE guisp=NONE cterm=NONE gui=NONE 89 | hi Define ctermfg=29 ctermbg=NONE guifg=#2d9574 guibg=NONE guisp=NONE cterm=NONE gui=NONE 90 | hi Debug ctermfg=196 ctermbg=NONE guifg=#f54e3c guibg=NONE guisp=NONE cterm=NONE gui=NONE 91 | hi Delimiter ctermfg=73 ctermbg=NONE guifg=#74baac guibg=NONE guisp=NONE cterm=NONE gui=NONE 92 | hi Error ctermfg=196 ctermbg=235 guifg=#f2241f guibg=#292b2e guisp=NONE cterm=NONE,bold,reverse gui=NONE,bold,reverse 93 | hi Exception ctermfg=196 ctermbg=NONE guifg=#f2241f guibg=NONE guisp=NONE cterm=NONE gui=NONE 94 | hi Float ctermfg=147 ctermbg=NONE guifg=#b7b7ff guibg=NONE guisp=NONE cterm=NONE gui=NONE 95 | hi Function ctermfg=170 ctermbg=NONE guifg=#bc6ec5 guibg=NONE guisp=NONE cterm=NONE,bold gui=NONE,bold 96 | hi Identifier ctermfg=68 ctermbg=NONE guifg=#7590db guibg=NONE guisp=NONE cterm=NONE gui=NONE 97 | hi Ignore ctermfg=fg ctermbg=NONE guifg=fg guibg=NONE guisp=NONE cterm=NONE gui=NONE 98 | hi Include ctermfg=136 ctermbg=NONE guifg=#b1951d guibg=NONE guisp=NONE cterm=NONE gui=NONE 99 | hi Keyword ctermfg=32 ctermbg=NONE guifg=#4f97d7 guibg=NONE guisp=NONE cterm=NONE,bold gui=NONE,bold 100 | hi Label ctermfg=168 ctermbg=NONE guifg=#ce537a guibg=NONE guisp=NONE cterm=NONE gui=NONE 101 | hi Macro ctermfg=68 ctermbg=NONE guifg=#7590db guibg=NONE guisp=NONE cterm=NONE,bold gui=NONE,bold 102 | hi Number ctermfg=176 ctermbg=NONE guifg=#e697e6 guibg=NONE guisp=NONE cterm=NONE gui=NONE 103 | hi Operator ctermfg=74 ctermbg=NONE guifg=#58b0d9 guibg=NONE guisp=NONE cterm=NONE gui=NONE 104 | hi PreCondit ctermfg=133 ctermbg=NONE guifg=#a45bad guibg=NONE guisp=NONE cterm=NONE gui=NONE 105 | hi PreProc ctermfg=177 ctermbg=NONE guifg=#d698fe guibg=NONE guisp=NONE cterm=NONE gui=NONE 106 | hi Repeat ctermfg=168 ctermbg=NONE guifg=#ce537a guibg=NONE guisp=NONE cterm=NONE,bold gui=NONE,bold 107 | hi SpecialChar ctermfg=80 ctermbg=NONE guifg=#28def0 guibg=NONE guisp=NONE cterm=NONE gui=NONE 108 | hi SpecialComment ctermfg=67 ctermbg=NONE guifg=#768294 guibg=NONE guisp=NONE cterm=NONE gui=NONE 109 | hi Statement ctermfg=32 ctermbg=NONE guifg=#4f97d7 guibg=NONE guisp=NONE cterm=NONE gui=NONE 110 | hi StorageClass ctermfg=136 ctermbg=NONE guifg=#b1951d guibg=NONE guisp=NONE cterm=NONE,bold gui=NONE,bold 111 | hi Special ctermfg=172 ctermbg=NONE guifg=#d79650 guibg=NONE guisp=NONE cterm=NONE gui=NONE 112 | hi String ctermfg=29 ctermbg=NONE guifg=#2d9574 guibg=NONE guisp=NONE cterm=NONE gui=NONE 113 | hi Structure ctermfg=31 ctermbg=NONE guifg=#4495b4 guibg=NONE guisp=NONE cterm=NONE,bold gui=NONE,bold 114 | hi Tag ctermfg=173 ctermbg=NONE guifg=#e18254 guibg=NONE guisp=NONE cterm=NONE gui=NONE 115 | hi Todo ctermfg=173 ctermbg=NONE guifg=#e18254 guibg=NONE guisp=NONE cterm=NONE,bold gui=NONE,bold,italic 116 | hi Type ctermfg=168 ctermbg=NONE guifg=#ce537a guibg=NONE guisp=NONE cterm=NONE gui=NONE 117 | hi Typedef ctermfg=136 ctermbg=NONE guifg=#b1951d guibg=NONE guisp=NONE cterm=NONE gui=NONE 118 | hi Underlined ctermfg=32 ctermbg=NONE guifg=#4f97d7 guibg=NONE guisp=NONE cterm=NONE,underline gui=NONE,underline 119 | hi! link lCursor Cursor 120 | hi CursorIM ctermfg=NONE ctermbg=NONE guifg=NONE guibg=NONE guisp=NONE cterm=NONE,reverse gui=NONE,reverse 121 | hi ToolbarLine ctermfg=NONE ctermbg=232 guifg=NONE guibg=#0a0814 guisp=NONE cterm=NONE gui=NONE 122 | hi ToolbarButton ctermfg=252 ctermbg=232 guifg=#cdcdcd guibg=#0a0814 guisp=NONE cterm=NONE,bold gui=NONE,bold 123 | if get(g:, "space_vim_italic", 0) 124 | hi Comment cterm=italic 125 | hi Folded cterm=italic 126 | hi SpellBad cterm=italic,underline 127 | hi SpellCap cterm=italic,underline 128 | hi SpellLocal cterm=italic,underline 129 | hi SpellRare cterm=italic,underline 130 | hi Todo cterm=italic 131 | endif 132 | if get(g:, "space_vim_italicize_strings", 0) 133 | hi Special cterm=italic gui=italic 134 | hi String cterm=italic gui=italic 135 | endif 136 | hi! link iCursor Cursor 137 | hi! link vCursor Cursor 138 | hi NormalMode ctermfg=240 ctermbg=235 guifg=#5b5b5b guibg=#292b2e guisp=NONE cterm=NONE,reverse gui=NONE,reverse 139 | hi InsertMode ctermfg=32 ctermbg=235 guifg=#4f97d7 guibg=#292b2e guisp=NONE cterm=NONE,reverse gui=NONE,reverse 140 | hi ReplaceMode ctermfg=29 ctermbg=235 guifg=#2d9574 guibg=#292b2e guisp=NONE cterm=NONE,reverse gui=NONE,reverse 141 | hi VisualMode ctermfg=173 ctermbg=235 guifg=#e18254 guibg=#292b2e guisp=NONE cterm=NONE,reverse gui=NONE,reverse 142 | hi CommandMode ctermfg=170 ctermbg=235 guifg=#bc6ec5 guibg=#292b2e guisp=NONE cterm=NONE,reverse gui=NONE,reverse 143 | hi Warnings ctermfg=173 ctermbg=235 guifg=#e18254 guibg=#292b2e guisp=NONE cterm=NONE,reverse gui=NONE,reverse 144 | if has('nvim') 145 | let g:terminal_color_0 = '#292b2e' 146 | let g:terminal_color_8 = '#44505c' 147 | let g:terminal_color_1 = '#d26487' 148 | let g:terminal_color_9 = '#f2241f' 149 | let g:terminal_color_2 = '#35a8a5' 150 | let g:terminal_color_10 = '#67b11d' 151 | let g:terminal_color_3 = '#b89f33' 152 | let g:terminal_color_11 = '#b1951d' 153 | let g:terminal_color_4 = '#6981c5' 154 | let g:terminal_color_12 = '#4f97d7' 155 | let g:terminal_color_5 = '#a15ea7' 156 | let g:terminal_color_13 = '#bc6ec5' 157 | let g:terminal_color_6 = '#288668' 158 | let g:terminal_color_14 = '#2d9574' 159 | let g:terminal_color_7 = '#5b5b5b' 160 | let g:terminal_color_15 = '#b2b2b2' 161 | hi! link TermCursor Cursor 162 | hi TermCursorNC ctermfg=234 ctermbg=249 guifg=#212026 guibg=#b2b2b2 guisp=NONE cterm=NONE gui=NONE 163 | endif 164 | if !(get(g:, "space_vim_plugin_hi_groups", 1) || get(g:, "space_vim_filetype_hi_groups", 1)) 165 | finish 166 | endif 167 | if get(g:, "space_vim_plugin_hi_groups", 1) 168 | hi ALEError ctermfg=NONE ctermbg=NONE guifg=NONE guibg=NONE guisp=#f2241f cterm=NONE,underline gui=NONE,undercurl 169 | hi ALEWarning ctermfg=NONE ctermbg=NONE guifg=NONE guibg=NONE guisp=#f2241f cterm=NONE,underline gui=NONE,undercurl 170 | hi ALEInfo ctermfg=NONE ctermbg=NONE guifg=NONE guibg=NONE guisp=#4f97d7 cterm=NONE,underline gui=NONE,undercurl 171 | hi ALEErrorSign ctermfg=196 ctermbg=NONE guifg=#f2241f guibg=NONE guisp=NONE cterm=NONE gui=NONE 172 | hi ALEWarningSign ctermfg=136 ctermbg=NONE guifg=#b1951d guibg=NONE guisp=NONE cterm=NONE gui=NONE 173 | hi ALEInfoSign ctermfg=32 ctermbg=NONE guifg=#4f97d7 guibg=NONE guisp=NONE cterm=NONE gui=NONE 174 | hi BufTabLineCurrent ctermfg=235 ctermbg=240 guifg=#292b2e guibg=#5b5b5b guisp=NONE cterm=NONE gui=NONE 175 | hi BufTabLineActive ctermfg=240 ctermbg=232 guifg=#5b5b5b guibg=#100a14 guisp=NONE cterm=NONE gui=NONE 176 | hi BufTabLineHidden ctermfg=236 ctermbg=234 guifg=#34323e guibg=#212026 guisp=NONE cterm=NONE gui=NONE 177 | hi BufTabLineFill ctermfg=235 ctermbg=235 guifg=#292b2e guibg=#292b2e guisp=NONE cterm=NONE gui=NONE 178 | hi CtrlPMatch ctermfg=136 ctermbg=NONE guifg=#b1951d guibg=NONE guisp=NONE cterm=NONE gui=NONE 179 | hi CtrlPNoEntries ctermfg=196 ctermbg=NONE guifg=#f2241f guibg=NONE guisp=NONE cterm=NONE gui=NONE 180 | hi CtrlPPrtBase ctermfg=232 ctermbg=NONE guifg=#100a14 guibg=NONE guisp=NONE cterm=NONE gui=NONE 181 | hi CtrlPPrtCursor ctermfg=32 ctermbg=NONE guifg=#4f97d7 guibg=NONE guisp=NONE cterm=NONE gui=NONE 182 | hi CtrlPLinePre ctermfg=232 ctermbg=NONE guifg=#100a14 guibg=NONE guisp=NONE cterm=NONE gui=NONE 183 | hi CtrlPMode1 ctermfg=32 ctermbg=232 guifg=#4f97d7 guibg=#100a14 guisp=NONE cterm=NONE,bold gui=NONE,bold 184 | hi CtrlPMode2 ctermfg=235 ctermbg=32 guifg=#292b2e guibg=#4f97d7 guisp=NONE cterm=NONE,bold gui=NONE,bold 185 | hi CtrlPStats ctermfg=240 ctermbg=232 guifg=#5b5b5b guibg=#100a14 guisp=NONE cterm=NONE,bold gui=NONE,bold 186 | hi DirvishPathTail ctermfg=29 ctermbg=NONE guifg=#2d9574 guibg=NONE guisp=NONE cterm=NONE gui=NONE 187 | hi DirvishArg ctermfg=136 ctermbg=NONE guifg=#b1951d guibg=NONE guisp=NONE cterm=NONE gui=NONE 188 | hi! link EasyMotionTarget Search 189 | hi! link EasyMotionShade Comment 190 | hi gitcommitSelectedFile ctermfg=70 ctermbg=NONE guifg=#67b11d guibg=NONE guisp=NONE cterm=NONE gui=NONE 191 | hi gitcommitDiscardedFile ctermfg=196 ctermbg=NONE guifg=#f2241f guibg=NONE guisp=NONE cterm=NONE gui=NONE 192 | hi GitGutterAdd ctermfg=70 ctermbg=235 guifg=#67b11d guibg=#292b2e guisp=NONE cterm=NONE,bold gui=NONE,bold 193 | hi GitGutterChange ctermfg=173 ctermbg=235 guifg=#e18254 guibg=#292b2e guisp=NONE cterm=NONE,bold gui=NONE,bold 194 | hi GitGutterDelete ctermfg=196 ctermbg=235 guifg=#f2241f guibg=#292b2e guisp=NONE cterm=NONE,bold gui=NONE,bold 195 | hi GitGutterChangeDelete ctermfg=168 ctermbg=235 guifg=#ce537a guibg=#292b2e guisp=NONE cterm=NONE,bold gui=NONE,bold 196 | if get(g:, "indent_guides_auto_colors", 0) 197 | if get(g:, "space_vim_invert_indent_guides", 0) 198 | hi IndentGuidesOdd ctermfg=235 ctermbg=232 guifg=#292b2e guibg=#100a14 guisp=NONE cterm=NONE,reverse gui=NONE,reverse 199 | hi IndentGuidesEven ctermfg=235 ctermbg=234 guifg=#292b2e guibg=#212026 guisp=NONE cterm=NONE,reverse gui=NONE,reverse 200 | else 201 | hi IndentGuidesOdd ctermfg=235 ctermbg=232 guifg=#292b2e guibg=#100a14 guisp=NONE cterm=NONE gui=NONE 202 | hi IndentGuidesEven ctermfg=235 ctermbg=234 guifg=#292b2e guibg=#212026 guisp=NONE cterm=NONE gui=NONE 203 | endif 204 | endif 205 | " IndentLine 206 | if !exists('g:indentLine_color_term') 207 | let g:indentLine_color_term = 232 208 | endif 209 | if !exists('g:indentLine_color_gui') 210 | let g:indentLine_color_gui = '#100a14' 211 | endif 212 | hi NERDTreeDir ctermfg=32 ctermbg=NONE guifg=#4f97d7 guibg=NONE guisp=NONE cterm=NONE,bold gui=NONE,bold 213 | hi NERDTreeDirSlash ctermfg=32 ctermbg=NONE guifg=#4f97d7 guibg=NONE guisp=NONE cterm=NONE gui=NONE 214 | hi NERDTreeOpenable ctermfg=32 ctermbg=NONE guifg=#4f97d7 guibg=NONE guisp=NONE cterm=NONE gui=NONE 215 | hi NERDTreeClosable ctermfg=32 ctermbg=NONE guifg=#4f97d7 guibg=NONE guisp=NONE cterm=NONE gui=NONE 216 | hi NERDTreeFile ctermfg=249 ctermbg=NONE guifg=#b2b2b2 guibg=NONE guisp=NONE cterm=NONE gui=NONE 217 | hi NERDTreeExecFile ctermfg=136 ctermbg=NONE guifg=#b1951d guibg=NONE guisp=NONE cterm=NONE gui=NONE 218 | hi NERDTreeUp ctermfg=168 ctermbg=NONE guifg=#ce537a guibg=NONE guisp=NONE cterm=NONE gui=NONE 219 | hi NERDTreeCWD ctermfg=170 ctermbg=NONE guifg=#bc6ec5 guibg=NONE guisp=NONE cterm=NONE gui=NONE 220 | hi NERDTreeHelp ctermfg=249 ctermbg=NONE guifg=#b2b2b2 guibg=NONE guisp=NONE cterm=NONE gui=NONE 221 | hi NERDTreeToggleOn ctermfg=70 ctermbg=NONE guifg=#67b11d guibg=NONE guisp=NONE cterm=NONE gui=NONE 222 | hi NERDTreeToggleOff ctermfg=196 ctermbg=NONE guifg=#f2241f guibg=NONE guisp=NONE cterm=NONE gui=NONE 223 | hi netrwDir ctermfg=32 ctermbg=NONE guifg=#4f97d7 guibg=NONE guisp=NONE cterm=NONE gui=NONE 224 | hi netrwClassify ctermfg=32 ctermbg=NONE guifg=#4f97d7 guibg=NONE guisp=NONE cterm=NONE gui=NONE 225 | hi netrwLink ctermfg=239 ctermbg=NONE guifg=#44505c guibg=NONE guisp=NONE cterm=NONE gui=NONE 226 | hi netrwSymLink ctermfg=249 ctermbg=NONE guifg=#b2b2b2 guibg=NONE guisp=NONE cterm=NONE gui=NONE 227 | hi netrwExe ctermfg=136 ctermbg=NONE guifg=#b1951d guibg=NONE guisp=NONE cterm=NONE gui=NONE 228 | hi netrwComment ctermfg=239 ctermbg=NONE guifg=#44505c guibg=NONE guisp=NONE cterm=NONE gui=NONE 229 | hi netrwList ctermfg=32 ctermbg=NONE guifg=#4f97d7 guibg=NONE guisp=NONE cterm=NONE gui=NONE 230 | hi netrwHelpCmd ctermfg=29 ctermbg=NONE guifg=#2d9574 guibg=NONE guisp=NONE cterm=NONE gui=NONE 231 | hi netrwCmdSep ctermfg=243 ctermbg=NONE guifg=#727272 guibg=NONE guisp=NONE cterm=NONE gui=NONE 232 | hi netrwVersion ctermfg=70 ctermbg=NONE guifg=#67b11d guibg=NONE guisp=NONE cterm=NONE gui=NONE 233 | " Rainbow Parentheses 234 | if !exists('g:rbpt_colorpairs') 235 | let g:rbpt_colorpairs = [['blue', '#6981c5'], ['magenta', '#a15ea7'], 236 | \ ['red', '#d26487'], ['173', '#ca754b']] 237 | endif 238 | 239 | let g:rainbow_guifgs = [ '#ca754b', '#d26487', '#a15ea7', '#6981c5' ] 240 | let g:rainbow_ctermfgs = [ '173', 'red', 'magenta', 'blue' ] 241 | 242 | if !exists('g:rainbow_conf') 243 | let g:rainbow_conf = {} 244 | endif 245 | if !has_key(g:rainbow_conf, 'guifgs') 246 | let g:rainbow_conf['guifgs'] = g:rainbow_guifgs 247 | endif 248 | if !has_key(g:rainbow_conf, 'ctermfgs') 249 | let g:rainbow_conf['ctermfgs'] = g:rainbow_ctermfgs 250 | endif 251 | 252 | let g:niji_dark_colours = g:rbpt_colorpairs 253 | let g:niji_light_colours = g:rbpt_colorpairs 254 | hi ShowMarksHLl ctermfg=32 ctermbg=235 guifg=#4f97d7 guibg=#292b2e guisp=NONE cterm=NONE,bold gui=NONE,bold 255 | hi ShowMarksHLu ctermfg=32 ctermbg=235 guifg=#4f97d7 guibg=#292b2e guisp=NONE cterm=NONE,bold gui=NONE,bold 256 | hi ShowMarksHLo ctermfg=32 ctermbg=235 guifg=#4f97d7 guibg=#292b2e guisp=NONE cterm=NONE,bold gui=NONE,bold 257 | hi ShowMarksHLm ctermfg=32 ctermbg=235 guifg=#4f97d7 guibg=#292b2e guisp=NONE cterm=NONE,bold gui=NONE,bold 258 | hi SignifySignAdd ctermfg=70 ctermbg=NONE guifg=#67b11d guibg=NONE guisp=NONE cterm=NONE gui=NONE 259 | hi SignifySignChange ctermfg=173 ctermbg=NONE guifg=#e18254 guibg=NONE guisp=NONE cterm=NONE gui=NONE 260 | hi SignifySignDelete ctermfg=196 ctermbg=NONE guifg=#f2241f guibg=NONE guisp=NONE cterm=NONE gui=NONE 261 | hi SignatureMarkText ctermfg=32 ctermbg=235 guifg=#4f97d7 guibg=#292b2e guisp=NONE cterm=NONE,bold gui=NONE,bold 262 | hi SignatureMarkerText ctermfg=170 ctermbg=235 guifg=#bc6ec5 guibg=#292b2e guisp=NONE cterm=NONE,bold gui=NONE,bold 263 | hi StartifyBracket ctermfg=243 ctermbg=NONE guifg=#727272 guibg=NONE guisp=NONE cterm=NONE gui=NONE 264 | hi StartifyFile ctermfg=249 ctermbg=235 guifg=#b2b2b2 guibg=#292b2e guisp=NONE cterm=NONE gui=NONE 265 | hi StartifyNumber ctermfg=32 ctermbg=NONE guifg=#4f97d7 guibg=NONE guisp=NONE cterm=NONE gui=NONE 266 | hi StartifyPath ctermfg=68 ctermbg=NONE guifg=#7590db guibg=NONE guisp=NONE cterm=NONE,bold gui=NONE,bold 267 | hi StartifySlash ctermfg=32 ctermbg=NONE guifg=#4f97d7 guibg=NONE guisp=NONE cterm=NONE gui=NONE 268 | hi StartifySection ctermfg=32 ctermbg=NONE guifg=#4f97d7 guibg=NONE guisp=NONE cterm=NONE,bold gui=NONE,bold 269 | hi! link StartifySpecial Type 270 | hi StartifyHeader ctermfg=133 ctermbg=NONE guifg=#a45bad guibg=NONE guisp=NONE cterm=NONE gui=NONE 271 | hi StartifyFooter ctermfg=133 ctermbg=NONE guifg=#a45bad guibg=NONE guisp=NONE cterm=NONE gui=NONE 272 | hi SyntasticError ctermfg=NONE ctermbg=NONE guifg=NONE guibg=NONE guisp=#f2241f cterm=NONE,underline gui=NONE,undercurl 273 | hi SyntasticWarning ctermfg=NONE ctermbg=NONE guifg=NONE guibg=NONE guisp=#b1951d cterm=NONE,underline gui=NONE,undercurl 274 | hi SyntasticErrorSign ctermfg=196 ctermbg=235 guifg=#f2241f guibg=#292b2e guisp=NONE cterm=NONE gui=NONE 275 | hi SyntasticWarningSign ctermfg=136 ctermbg=235 guifg=#b1951d guibg=#292b2e guisp=NONE cterm=NONE gui=NONE 276 | hi multiple_cursors_cursor ctermfg=NONE ctermbg=NONE guifg=NONE guibg=NONE guisp=NONE cterm=NONE,reverse gui=NONE,reverse 277 | hi multiple_cursors_visual ctermfg=NONE ctermbg=232 guifg=NONE guibg=#100a14 guisp=NONE cterm=NONE gui=NONE 278 | hi CurrentWord ctermfg=NONE ctermbg=60 guifg=NONE guibg=#544a65 guisp=NONE cterm=NONE,underline gui=NONE,underline 279 | hi CurrentWordTwins ctermfg=NONE ctermbg=60 guifg=NONE guibg=#544a65 guisp=NONE cterm=NONE gui=NONE 280 | hi! link WhichKey Function 281 | hi WhichKeySeperator ctermfg=70 ctermbg=NONE guifg=#67b11d guibg=NONE guisp=NONE cterm=NONE gui=NONE 282 | hi! link WhichKeyGroup Keyword 283 | hi! link WhichKeyDesc Identifier 284 | let g:vimshell_escape_colors = [ 285 | \ '#34323e', '#f2241f', '#67b11d', '#b1951d', 286 | \ '#4f97d7', '#bc6ec5', '#2d9574', '#5b5b5b', 287 | \ '#292b2e', '#f2241f', '#67b11d', '#e18254', 288 | \ '#4f97d7', '#bc6ec5', '#2d9574', '#cdcdcd' 289 | \ ] 290 | endif 291 | if get(g:, "space_vim_filetype_hi_groups", 1) 292 | hi diffAdded ctermfg=70 ctermbg=NONE guifg=#67b11d guibg=NONE guisp=NONE cterm=NONE gui=NONE 293 | hi diffRemoved ctermfg=196 ctermbg=NONE guifg=#f2241f guibg=NONE guisp=NONE cterm=NONE gui=NONE 294 | hi diffChanged ctermfg=29 ctermbg=NONE guifg=#2d9574 guibg=NONE guisp=NONE cterm=NONE gui=NONE 295 | hi diffFile ctermfg=173 ctermbg=NONE guifg=#e18254 guibg=NONE guisp=NONE cterm=NONE gui=NONE 296 | hi diffNewFile ctermfg=136 ctermbg=NONE guifg=#b1951d guibg=NONE guisp=NONE cterm=NONE gui=NONE 297 | hi diffLine ctermfg=32 ctermbg=NONE guifg=#4f97d7 guibg=NONE guisp=NONE cterm=NONE gui=NONE 298 | hi htmlTag ctermfg=32 ctermbg=NONE guifg=#4f97d7 guibg=NONE guisp=NONE cterm=NONE gui=NONE 299 | hi htmlEndTag ctermfg=32 ctermbg=NONE guifg=#4f97d7 guibg=NONE guisp=NONE cterm=NONE gui=NONE 300 | hi htmlTagName ctermfg=133 ctermbg=NONE guifg=#a45bad guibg=NONE guisp=NONE cterm=NONE gui=NONE 301 | hi htmlArg ctermfg=29 ctermbg=NONE guifg=#2d9574 guibg=NONE guisp=NONE cterm=NONE gui=NONE 302 | hi htmlScriptTag ctermfg=170 ctermbg=NONE guifg=#bc6ec5 guibg=NONE guisp=NONE cterm=NONE gui=NONE 303 | hi htmlTagN ctermfg=249 ctermbg=NONE guifg=#b2b2b2 guibg=NONE guisp=NONE cterm=NONE gui=NONE 304 | hi htmlSpecialTagName ctermfg=29 ctermbg=NONE guifg=#2d9574 guibg=NONE guisp=NONE cterm=NONE,bold gui=NONE,bold 305 | hi htmlLink ctermfg=32 ctermbg=NONE guifg=#4f97d7 guibg=NONE guisp=NONE cterm=NONE,underline gui=NONE,underline 306 | hi htmlSpecialChar ctermfg=173 ctermbg=NONE guifg=#e18254 guibg=NONE guisp=NONE cterm=NONE gui=NONE 307 | hi htmlBold ctermfg=fg ctermbg=235 guifg=fg guibg=#292b2e guisp=NONE cterm=NONE,bold gui=NONE,bold 308 | hi htmlBoldUnderline ctermfg=fg ctermbg=235 guifg=fg guibg=#292b2e guisp=NONE cterm=NONE,bold,underline gui=NONE,bold,underline 309 | hi htmlBoldItalic ctermfg=fg ctermbg=235 guifg=fg guibg=#292b2e guisp=NONE cterm=NONE,bold,italic gui=NONE,bold,italic 310 | hi htmlBoldUnderlineItalic ctermfg=fg ctermbg=235 guifg=fg guibg=#292b2e guisp=NONE cterm=NONE,bold,italic,underline gui=NONE,bold,italic,underline 311 | hi htmlUnderline ctermfg=fg ctermbg=235 guifg=fg guibg=#292b2e guisp=NONE cterm=NONE,underline gui=NONE,underline 312 | hi htmlUnderlineItalic ctermfg=fg ctermbg=235 guifg=fg guibg=#292b2e guisp=NONE cterm=NONE,italic,underline gui=NONE,italic,underline 313 | hi htmlItalic ctermfg=68 ctermbg=NONE guifg=#7590db guibg=NONE guisp=NONE cterm=NONE,italic gui=NONE,italic 314 | hi xmlTag ctermfg=32 ctermbg=NONE guifg=#4f97d7 guibg=NONE guisp=NONE cterm=NONE gui=NONE 315 | hi xmlEndTag ctermfg=32 ctermbg=NONE guifg=#4f97d7 guibg=NONE guisp=NONE cterm=NONE gui=NONE 316 | hi xmlTagName ctermfg=32 ctermbg=NONE guifg=#4f97d7 guibg=NONE guisp=NONE cterm=NONE gui=NONE 317 | hi xmlEqual ctermfg=32 ctermbg=NONE guifg=#4f97d7 guibg=NONE guisp=NONE cterm=NONE gui=NONE 318 | hi docbkKeyword ctermfg=29 ctermbg=NONE guifg=#2d9574 guibg=NONE guisp=NONE cterm=NONE,bold gui=NONE,bold 319 | hi xmlDocTypeDecl ctermfg=239 ctermbg=NONE guifg=#44505c guibg=NONE guisp=NONE cterm=NONE gui=NONE 320 | hi xmlDocTypeKeyword ctermfg=170 ctermbg=NONE guifg=#bc6ec5 guibg=NONE guisp=NONE cterm=NONE gui=NONE 321 | hi xmlCdataStart ctermfg=239 ctermbg=NONE guifg=#44505c guibg=NONE guisp=NONE cterm=NONE gui=NONE 322 | hi xmlCdataCdata ctermfg=170 ctermbg=NONE guifg=#bc6ec5 guibg=NONE guisp=NONE cterm=NONE gui=NONE 323 | hi dtdFunction ctermfg=239 ctermbg=NONE guifg=#44505c guibg=NONE guisp=NONE cterm=NONE gui=NONE 324 | hi dtdTagName ctermfg=170 ctermbg=NONE guifg=#bc6ec5 guibg=NONE guisp=NONE cterm=NONE gui=NONE 325 | hi xmlAttrib ctermfg=29 ctermbg=NONE guifg=#2d9574 guibg=NONE guisp=NONE cterm=NONE gui=NONE 326 | hi xmlProcessingDelim ctermfg=239 ctermbg=NONE guifg=#44505c guibg=NONE guisp=NONE cterm=NONE gui=NONE 327 | hi dtdParamEntityPunct ctermfg=239 ctermbg=NONE guifg=#44505c guibg=NONE guisp=NONE cterm=NONE gui=NONE 328 | hi dtdParamEntityDPunct ctermfg=239 ctermbg=NONE guifg=#44505c guibg=NONE guisp=NONE cterm=NONE gui=NONE 329 | hi xmlAttribPunct ctermfg=239 ctermbg=NONE guifg=#44505c guibg=NONE guisp=NONE cterm=NONE gui=NONE 330 | hi xmlEntity ctermfg=173 ctermbg=NONE guifg=#e18254 guibg=NONE guisp=NONE cterm=NONE gui=NONE 331 | hi xmlEntityPunct ctermfg=173 ctermbg=NONE guifg=#e18254 guibg=NONE guisp=NONE cterm=NONE gui=NONE 332 | hi vimCommentTitle ctermfg=68 ctermbg=NONE guifg=#7590db guibg=NONE guisp=NONE cterm=NONE,bold gui=NONE,bold 333 | hi vimNotation ctermfg=173 ctermbg=NONE guifg=#e18254 guibg=NONE guisp=NONE cterm=NONE gui=NONE 334 | hi vimBracket ctermfg=173 ctermbg=NONE guifg=#e18254 guibg=NONE guisp=NONE cterm=NONE gui=NONE 335 | hi vimMapModKey ctermfg=173 ctermbg=NONE guifg=#e18254 guibg=NONE guisp=NONE cterm=NONE gui=NONE 336 | hi vimCommand ctermfg=32 ctermbg=NONE guifg=#4f97d7 guibg=NONE guisp=NONE cterm=NONE,bold gui=NONE,bold 337 | hi vimLet ctermfg=32 ctermbg=NONE guifg=#4f97d7 guibg=NONE guisp=NONE cterm=NONE gui=NONE 338 | hi vimNorm ctermfg=32 ctermbg=NONE guifg=#4f97d7 guibg=NONE guisp=NONE cterm=NONE gui=NONE 339 | hi! link vimFuncSID Function 340 | hi! link vimFunction Function 341 | hi vimGroup ctermfg=68 ctermbg=NONE guifg=#7590db guibg=NONE guisp=NONE cterm=NONE gui=NONE 342 | hi! link vimHiGroup Type 343 | hi vimSetSep ctermfg=243 ctermbg=NONE guifg=#727272 guibg=NONE guisp=NONE cterm=NONE gui=NONE 344 | hi vimSep ctermfg=243 ctermbg=NONE guifg=#727272 guibg=NONE guisp=NONE cterm=NONE gui=NONE 345 | hi vimContinue ctermfg=136 ctermbg=NONE guifg=#b1951d guibg=NONE guisp=NONE cterm=NONE gui=NONE 346 | hi clojureKeyword ctermfg=32 ctermbg=NONE guifg=#4f97d7 guibg=NONE guisp=NONE cterm=NONE gui=NONE 347 | hi clojureCond ctermfg=173 ctermbg=NONE guifg=#e18254 guibg=NONE guisp=NONE cterm=NONE gui=NONE 348 | hi clojureSpecial ctermfg=173 ctermbg=NONE guifg=#e18254 guibg=NONE guisp=NONE cterm=NONE gui=NONE 349 | hi clojureDefine ctermfg=173 ctermbg=NONE guifg=#e18254 guibg=NONE guisp=NONE cterm=NONE gui=NONE 350 | hi clojureFunc ctermfg=136 ctermbg=NONE guifg=#b1951d guibg=NONE guisp=NONE cterm=NONE gui=NONE 351 | hi clojureRepeat ctermfg=136 ctermbg=NONE guifg=#b1951d guibg=NONE guisp=NONE cterm=NONE gui=NONE 352 | hi clojureCharacter ctermfg=29 ctermbg=NONE guifg=#2d9574 guibg=NONE guisp=NONE cterm=NONE gui=NONE 353 | hi clojureStringEscape ctermfg=29 ctermbg=NONE guifg=#2d9574 guibg=NONE guisp=NONE cterm=NONE gui=NONE 354 | hi clojureException ctermfg=196 ctermbg=NONE guifg=#f2241f guibg=NONE guisp=NONE cterm=NONE gui=NONE 355 | hi clojureRegexp ctermfg=29 ctermbg=NONE guifg=#2d9574 guibg=NONE guisp=NONE cterm=NONE gui=NONE 356 | hi clojureRegexpEscape ctermfg=29 ctermbg=NONE guifg=#2d9574 guibg=NONE guisp=NONE cterm=NONE gui=NONE 357 | hi clojureRegexpCharClass ctermfg=243 ctermbg=NONE guifg=#727272 guibg=NONE guisp=NONE cterm=NONE,bold gui=NONE,bold 358 | hi! link clojureRegexpMod clojureRegexpCharClass 359 | hi! link clojureRegexpQuantifier clojureRegexpCharClass 360 | hi clojureParen ctermfg=243 ctermbg=NONE guifg=#727272 guibg=NONE guisp=NONE cterm=NONE gui=NONE 361 | hi clojureAnonArg ctermfg=136 ctermbg=NONE guifg=#b1951d guibg=NONE guisp=NONE cterm=NONE gui=NONE 362 | hi clojureVariable ctermfg=32 ctermbg=NONE guifg=#4f97d7 guibg=NONE guisp=NONE cterm=NONE gui=NONE 363 | hi clojureMacro ctermfg=173 ctermbg=NONE guifg=#e18254 guibg=NONE guisp=NONE cterm=NONE gui=NONE 364 | hi clojureMeta ctermfg=136 ctermbg=NONE guifg=#b1951d guibg=NONE guisp=NONE cterm=NONE gui=NONE 365 | hi clojureDeref ctermfg=136 ctermbg=NONE guifg=#b1951d guibg=NONE guisp=NONE cterm=NONE gui=NONE 366 | hi clojureQuote ctermfg=136 ctermbg=NONE guifg=#b1951d guibg=NONE guisp=NONE cterm=NONE gui=NONE 367 | hi clojureUnquote ctermfg=136 ctermbg=NONE guifg=#b1951d guibg=NONE guisp=NONE cterm=NONE gui=NONE 368 | hi cOperator ctermfg=170 ctermbg=NONE guifg=#bc6ec5 guibg=NONE guisp=NONE cterm=NONE gui=NONE 369 | hi cStructure ctermfg=173 ctermbg=NONE guifg=#e18254 guibg=NONE guisp=NONE cterm=NONE gui=NONE 370 | hi rustSelf ctermfg=32 ctermbg=NONE guifg=#4f97d7 guibg=NONE guisp=NONE cterm=NONE,bold gui=NONE,bold 371 | hi rustPanic ctermfg=168 ctermbg=NONE guifg=#ce537a guibg=NONE guisp=NONE cterm=NONE,bold gui=NONE,bold 372 | hi rustAssert ctermfg=68 ctermbg=NONE guifg=#7590db guibg=NONE guisp=NONE cterm=NONE,bold gui=NONE,bold 373 | hi! link pythonCoding Comment 374 | hi cssBraces ctermfg=32 ctermbg=NONE guifg=#4f97d7 guibg=NONE guisp=NONE cterm=NONE gui=NONE 375 | hi cssFunctionName ctermfg=136 ctermbg=NONE guifg=#b1951d guibg=NONE guisp=NONE cterm=NONE gui=NONE 376 | hi cssIdentifier ctermfg=173 ctermbg=NONE guifg=#e18254 guibg=NONE guisp=NONE cterm=NONE gui=NONE 377 | hi cssClassName ctermfg=70 ctermbg=NONE guifg=#67b11d guibg=NONE guisp=NONE cterm=NONE gui=NONE 378 | hi cssColor ctermfg=32 ctermbg=NONE guifg=#4f97d7 guibg=NONE guisp=NONE cterm=NONE gui=NONE 379 | hi cssSelectorOp ctermfg=32 ctermbg=NONE guifg=#4f97d7 guibg=NONE guisp=NONE cterm=NONE gui=NONE 380 | hi cssSelectorOp2 ctermfg=32 ctermbg=NONE guifg=#4f97d7 guibg=NONE guisp=NONE cterm=NONE gui=NONE 381 | hi cssImportant ctermfg=70 ctermbg=NONE guifg=#67b11d guibg=NONE guisp=NONE cterm=NONE gui=NONE 382 | hi cssVendor ctermfg=249 ctermbg=NONE guifg=#b2b2b2 guibg=NONE guisp=NONE cterm=NONE gui=NONE 383 | hi cssTextProp ctermfg=29 ctermbg=NONE guifg=#2d9574 guibg=NONE guisp=NONE cterm=NONE gui=NONE 384 | hi cssAnimationProp ctermfg=29 ctermbg=NONE guifg=#2d9574 guibg=NONE guisp=NONE cterm=NONE gui=NONE 385 | hi cssUIProp ctermfg=136 ctermbg=NONE guifg=#b1951d guibg=NONE guisp=NONE cterm=NONE gui=NONE 386 | hi cssTransformProp ctermfg=29 ctermbg=NONE guifg=#2d9574 guibg=NONE guisp=NONE cterm=NONE gui=NONE 387 | hi cssTransitionProp ctermfg=29 ctermbg=NONE guifg=#2d9574 guibg=NONE guisp=NONE cterm=NONE gui=NONE 388 | hi cssPrintProp ctermfg=29 ctermbg=NONE guifg=#2d9574 guibg=NONE guisp=NONE cterm=NONE gui=NONE 389 | hi cssPositioningProp ctermfg=136 ctermbg=NONE guifg=#b1951d guibg=NONE guisp=NONE cterm=NONE gui=NONE 390 | hi cssBoxProp ctermfg=29 ctermbg=NONE guifg=#2d9574 guibg=NONE guisp=NONE cterm=NONE gui=NONE 391 | hi cssFontDescriptorProp ctermfg=29 ctermbg=NONE guifg=#2d9574 guibg=NONE guisp=NONE cterm=NONE gui=NONE 392 | hi cssFlexibleBoxProp ctermfg=29 ctermbg=NONE guifg=#2d9574 guibg=NONE guisp=NONE cterm=NONE gui=NONE 393 | hi cssBorderOutlineProp ctermfg=29 ctermbg=NONE guifg=#2d9574 guibg=NONE guisp=NONE cterm=NONE gui=NONE 394 | hi cssBackgroundProp ctermfg=29 ctermbg=NONE guifg=#2d9574 guibg=NONE guisp=NONE cterm=NONE gui=NONE 395 | hi cssMarginProp ctermfg=29 ctermbg=NONE guifg=#2d9574 guibg=NONE guisp=NONE cterm=NONE gui=NONE 396 | hi cssListProp ctermfg=29 ctermbg=NONE guifg=#2d9574 guibg=NONE guisp=NONE cterm=NONE gui=NONE 397 | hi cssTableProp ctermfg=29 ctermbg=NONE guifg=#2d9574 guibg=NONE guisp=NONE cterm=NONE gui=NONE 398 | hi cssFontProp ctermfg=29 ctermbg=NONE guifg=#2d9574 guibg=NONE guisp=NONE cterm=NONE gui=NONE 399 | hi cssPaddingProp ctermfg=29 ctermbg=NONE guifg=#2d9574 guibg=NONE guisp=NONE cterm=NONE gui=NONE 400 | hi cssDimensionProp ctermfg=29 ctermbg=NONE guifg=#2d9574 guibg=NONE guisp=NONE cterm=NONE gui=NONE 401 | hi cssRenderProp ctermfg=29 ctermbg=NONE guifg=#2d9574 guibg=NONE guisp=NONE cterm=NONE gui=NONE 402 | hi cssColorProp ctermfg=29 ctermbg=NONE guifg=#2d9574 guibg=NONE guisp=NONE cterm=NONE gui=NONE 403 | hi cssGeneratedContentProp ctermfg=29 ctermbg=NONE guifg=#2d9574 guibg=NONE guisp=NONE cterm=NONE gui=NONE 404 | hi javaScriptBraces ctermfg=249 ctermbg=NONE guifg=#b2b2b2 guibg=NONE guisp=NONE cterm=NONE gui=NONE 405 | hi javaScriptFunction ctermfg=29 ctermbg=NONE guifg=#2d9574 guibg=NONE guisp=NONE cterm=NONE gui=NONE 406 | hi javaScriptIdentifier ctermfg=196 ctermbg=NONE guifg=#f2241f guibg=NONE guisp=NONE cterm=NONE gui=NONE 407 | hi javaScriptMember ctermfg=32 ctermbg=NONE guifg=#4f97d7 guibg=NONE guisp=NONE cterm=NONE gui=NONE 408 | hi javaScriptNumber ctermfg=170 ctermbg=NONE guifg=#bc6ec5 guibg=NONE guisp=NONE cterm=NONE gui=NONE 409 | hi javaScriptNull ctermfg=170 ctermbg=NONE guifg=#bc6ec5 guibg=NONE guisp=NONE cterm=NONE gui=NONE 410 | hi javaScriptParens ctermfg=243 ctermbg=NONE guifg=#727272 guibg=NONE guisp=NONE cterm=NONE gui=NONE 411 | hi javascriptImport ctermfg=29 ctermbg=NONE guifg=#2d9574 guibg=NONE guisp=NONE cterm=NONE gui=NONE 412 | hi javascriptExport ctermfg=29 ctermbg=NONE guifg=#2d9574 guibg=NONE guisp=NONE cterm=NONE gui=NONE 413 | hi javascriptClassKeyword ctermfg=29 ctermbg=NONE guifg=#2d9574 guibg=NONE guisp=NONE cterm=NONE gui=NONE 414 | hi javascriptClassExtends ctermfg=29 ctermbg=NONE guifg=#2d9574 guibg=NONE guisp=NONE cterm=NONE gui=NONE 415 | hi javascriptDefault ctermfg=29 ctermbg=NONE guifg=#2d9574 guibg=NONE guisp=NONE cterm=NONE gui=NONE 416 | hi javascriptClassName ctermfg=136 ctermbg=NONE guifg=#b1951d guibg=NONE guisp=NONE cterm=NONE gui=NONE 417 | hi javascriptClassSuperName ctermfg=136 ctermbg=NONE guifg=#b1951d guibg=NONE guisp=NONE cterm=NONE gui=NONE 418 | hi javascriptGlobal ctermfg=136 ctermbg=NONE guifg=#b1951d guibg=NONE guisp=NONE cterm=NONE gui=NONE 419 | hi javascriptEndColons ctermfg=249 ctermbg=NONE guifg=#b2b2b2 guibg=NONE guisp=NONE cterm=NONE gui=NONE 420 | hi javascriptFuncArg ctermfg=249 ctermbg=NONE guifg=#b2b2b2 guibg=NONE guisp=NONE cterm=NONE gui=NONE 421 | hi javascriptGlobalMethod ctermfg=249 ctermbg=NONE guifg=#b2b2b2 guibg=NONE guisp=NONE cterm=NONE gui=NONE 422 | hi javascriptNodeGlobal ctermfg=249 ctermbg=NONE guifg=#b2b2b2 guibg=NONE guisp=NONE cterm=NONE gui=NONE 423 | hi javascriptBOMWindowProp ctermfg=249 ctermbg=NONE guifg=#b2b2b2 guibg=NONE guisp=NONE cterm=NONE gui=NONE 424 | hi javascriptArrayMethod ctermfg=249 ctermbg=NONE guifg=#b2b2b2 guibg=NONE guisp=NONE cterm=NONE gui=NONE 425 | hi javascriptArrayStaticMethod ctermfg=249 ctermbg=NONE guifg=#b2b2b2 guibg=NONE guisp=NONE cterm=NONE gui=NONE 426 | hi javascriptCacheMethod ctermfg=249 ctermbg=NONE guifg=#b2b2b2 guibg=NONE guisp=NONE cterm=NONE gui=NONE 427 | hi javascriptDateMethod ctermfg=249 ctermbg=NONE guifg=#b2b2b2 guibg=NONE guisp=NONE cterm=NONE gui=NONE 428 | hi javascriptMathStaticMethod ctermfg=249 ctermbg=NONE guifg=#b2b2b2 guibg=NONE guisp=NONE cterm=NONE gui=NONE 429 | hi javascriptURLUtilsProp ctermfg=249 ctermbg=NONE guifg=#b2b2b2 guibg=NONE guisp=NONE cterm=NONE gui=NONE 430 | hi javascriptBOMNavigatorProp ctermfg=249 ctermbg=NONE guifg=#b2b2b2 guibg=NONE guisp=NONE cterm=NONE gui=NONE 431 | hi javascriptDOMDocMethod ctermfg=249 ctermbg=NONE guifg=#b2b2b2 guibg=NONE guisp=NONE cterm=NONE gui=NONE 432 | hi javascriptDOMDocProp ctermfg=249 ctermbg=NONE guifg=#b2b2b2 guibg=NONE guisp=NONE cterm=NONE gui=NONE 433 | hi javascriptBOMLocationMethod ctermfg=249 ctermbg=NONE guifg=#b2b2b2 guibg=NONE guisp=NONE cterm=NONE gui=NONE 434 | hi javascriptBOMWindowMethod ctermfg=249 ctermbg=NONE guifg=#b2b2b2 guibg=NONE guisp=NONE cterm=NONE gui=NONE 435 | hi javascriptStringMethod ctermfg=249 ctermbg=NONE guifg=#b2b2b2 guibg=NONE guisp=NONE cterm=NONE gui=NONE 436 | hi javascriptVariable ctermfg=173 ctermbg=NONE guifg=#e18254 guibg=NONE guisp=NONE cterm=NONE gui=NONE 437 | hi javascriptIdentifier ctermfg=173 ctermbg=NONE guifg=#e18254 guibg=NONE guisp=NONE cterm=NONE gui=NONE 438 | hi javascriptClassSuper ctermfg=173 ctermbg=NONE guifg=#e18254 guibg=NONE guisp=NONE cterm=NONE gui=NONE 439 | hi javascriptFuncKeyword ctermfg=29 ctermbg=NONE guifg=#2d9574 guibg=NONE guisp=NONE cterm=NONE gui=NONE 440 | hi javascriptAsyncFunc ctermfg=29 ctermbg=NONE guifg=#2d9574 guibg=NONE guisp=NONE cterm=NONE gui=NONE 441 | hi javascriptClassStatic ctermfg=173 ctermbg=NONE guifg=#e18254 guibg=NONE guisp=NONE cterm=NONE gui=NONE 442 | hi javascriptOperator ctermfg=168 ctermbg=NONE guifg=#ce537a guibg=NONE guisp=NONE cterm=NONE gui=NONE 443 | hi javascriptForOperator ctermfg=168 ctermbg=NONE guifg=#ce537a guibg=NONE guisp=NONE cterm=NONE gui=NONE 444 | hi javascriptYield ctermfg=168 ctermbg=NONE guifg=#ce537a guibg=NONE guisp=NONE cterm=NONE gui=NONE 445 | hi javascriptExceptions ctermfg=168 ctermbg=NONE guifg=#ce537a guibg=NONE guisp=NONE cterm=NONE gui=NONE 446 | hi javascriptMessage ctermfg=168 ctermbg=NONE guifg=#ce537a guibg=NONE guisp=NONE cterm=NONE gui=NONE 447 | hi javascriptTemplateSB ctermfg=29 ctermbg=NONE guifg=#2d9574 guibg=NONE guisp=NONE cterm=NONE gui=NONE 448 | hi javascriptTemplateSubstitution ctermfg=249 ctermbg=NONE guifg=#b2b2b2 guibg=NONE guisp=NONE cterm=NONE gui=NONE 449 | hi javascriptLabel ctermfg=249 ctermbg=NONE guifg=#b2b2b2 guibg=NONE guisp=NONE cterm=NONE gui=NONE 450 | hi javascriptObjectLabel ctermfg=249 ctermbg=NONE guifg=#b2b2b2 guibg=NONE guisp=NONE cterm=NONE gui=NONE 451 | hi javascriptPropertyName ctermfg=249 ctermbg=NONE guifg=#b2b2b2 guibg=NONE guisp=NONE cterm=NONE gui=NONE 452 | hi javascriptLogicSymbols ctermfg=249 ctermbg=NONE guifg=#b2b2b2 guibg=NONE guisp=NONE cterm=NONE gui=NONE 453 | hi javascriptArrowFunc ctermfg=136 ctermbg=NONE guifg=#b1951d guibg=NONE guisp=NONE cterm=NONE gui=NONE 454 | hi javascriptDocParamName ctermfg=240 ctermbg=NONE guifg=#5b5b5b guibg=NONE guisp=NONE cterm=NONE gui=NONE 455 | hi javascriptDocTags ctermfg=240 ctermbg=NONE guifg=#5b5b5b guibg=NONE guisp=NONE cterm=NONE gui=NONE 456 | hi javascriptDocNotation ctermfg=240 ctermbg=NONE guifg=#5b5b5b guibg=NONE guisp=NONE cterm=NONE gui=NONE 457 | hi javascriptDocParamType ctermfg=240 ctermbg=NONE guifg=#5b5b5b guibg=NONE guisp=NONE cterm=NONE gui=NONE 458 | hi javascriptDocNamedParamType ctermfg=240 ctermbg=NONE guifg=#5b5b5b guibg=NONE guisp=NONE cterm=NONE gui=NONE 459 | hi javascriptBrackets ctermfg=249 ctermbg=NONE guifg=#b2b2b2 guibg=NONE guisp=NONE cterm=NONE gui=NONE 460 | hi javascriptDOMElemAttrs ctermfg=249 ctermbg=NONE guifg=#b2b2b2 guibg=NONE guisp=NONE cterm=NONE gui=NONE 461 | hi javascriptDOMEventMethod ctermfg=249 ctermbg=NONE guifg=#b2b2b2 guibg=NONE guisp=NONE cterm=NONE gui=NONE 462 | hi javascriptDOMNodeMethod ctermfg=249 ctermbg=NONE guifg=#b2b2b2 guibg=NONE guisp=NONE cterm=NONE gui=NONE 463 | hi javascriptDOMStorageMethod ctermfg=249 ctermbg=NONE guifg=#b2b2b2 guibg=NONE guisp=NONE cterm=NONE gui=NONE 464 | hi javascriptHeadersMethod ctermfg=249 ctermbg=NONE guifg=#b2b2b2 guibg=NONE guisp=NONE cterm=NONE gui=NONE 465 | hi javascriptAsyncFuncKeyword ctermfg=168 ctermbg=NONE guifg=#ce537a guibg=NONE guisp=NONE cterm=NONE,bold gui=NONE,bold 466 | hi javascriptAwaitFuncKeyword ctermfg=168 ctermbg=NONE guifg=#ce537a guibg=NONE guisp=NONE cterm=NONE,bold gui=NONE,bold 467 | hi! link jsClassKeyword Keyword 468 | hi! link jsExtendsKeyword Keyword 469 | hi jsExportDefault ctermfg=32 ctermbg=NONE guifg=#4f97d7 guibg=NONE guisp=NONE cterm=NONE,bold gui=NONE,bold 470 | hi jsTemplateBraces ctermfg=29 ctermbg=NONE guifg=#2d9574 guibg=NONE guisp=NONE cterm=NONE gui=NONE 471 | hi! link jsGlobalNodeObjects Keyword 472 | hi! link jsGlobalObjects Keyword 473 | hi! link jsFunction Function 474 | hi jsFuncParens ctermfg=173 ctermbg=NONE guifg=#e18254 guibg=NONE guisp=NONE cterm=NONE gui=NONE 475 | hi jsParens ctermfg=168 ctermbg=NONE guifg=#ce537a guibg=NONE guisp=NONE cterm=NONE gui=NONE 476 | hi jsNull ctermfg=170 ctermbg=NONE guifg=#bc6ec5 guibg=NONE guisp=NONE cterm=NONE gui=NONE 477 | hi! link jsUndefined ErrorMsg 478 | hi jsClassDefinition ctermfg=136 ctermbg=NONE guifg=#b1951d guibg=NONE guisp=NONE cterm=NONE gui=NONE 479 | hi! link jsObjectProp Identifier 480 | hi jsObjectKey ctermfg=74 ctermbg=NONE guifg=#58b0d9 guibg=NONE guisp=NONE cterm=NONE gui=NONE 481 | hi jsFunctionKey ctermfg=68 ctermbg=NONE guifg=#7590db guibg=NONE guisp=NONE cterm=NONE gui=NONE 482 | hi jsBracket ctermfg=168 ctermbg=NONE guifg=#ce537a guibg=NONE guisp=NONE cterm=NONE gui=NONE 483 | hi jsObjectColon ctermfg=168 ctermbg=NONE guifg=#ce537a guibg=NONE guisp=NONE cterm=NONE gui=NONE 484 | hi jsFuncArgs ctermfg=74 ctermbg=NONE guifg=#58b0d9 guibg=NONE guisp=NONE cterm=NONE gui=NONE 485 | hi jsFuncBraces ctermfg=68 ctermbg=NONE guifg=#7590db guibg=NONE guisp=NONE cterm=NONE gui=NONE 486 | hi jsVariableDef ctermfg=249 ctermbg=NONE guifg=#b2b2b2 guibg=NONE guisp=NONE cterm=NONE gui=NONE 487 | hi! link jsObjectBraces Special 488 | hi jsObjectValue ctermfg=147 ctermbg=NONE guifg=#b7b7ff guibg=NONE guisp=NONE cterm=NONE gui=NONE 489 | hi jsClassBlock ctermfg=68 ctermbg=NONE guifg=#7590db guibg=NONE guisp=NONE cterm=NONE gui=NONE 490 | hi jsFutureKeys ctermfg=173 ctermbg=NONE guifg=#e18254 guibg=NONE guisp=NONE cterm=NONE,bold gui=NONE,bold 491 | hi jsFuncArgs ctermfg=32 ctermbg=NONE guifg=#4f97d7 guibg=NONE guisp=NONE cterm=NONE gui=NONE 492 | hi jsStorageClass ctermfg=32 ctermbg=NONE guifg=#4f97d7 guibg=NONE guisp=NONE cterm=NONE gui=NONE 493 | hi jsxRegion ctermfg=32 ctermbg=NONE guifg=#4f97d7 guibg=NONE guisp=NONE cterm=NONE gui=NONE 494 | hi typeScriptReserved ctermfg=29 ctermbg=NONE guifg=#2d9574 guibg=NONE guisp=NONE cterm=NONE gui=NONE 495 | hi! link typeScriptLabel Label 496 | hi! link typeScriptFuncKeyword Function 497 | hi! link typeScriptIdentifier Identifier 498 | hi typeScriptBraces ctermfg=168 ctermbg=NONE guifg=#ce537a guibg=NONE guisp=NONE cterm=NONE gui=NONE 499 | hi typeScriptEndColons ctermfg=249 ctermbg=NONE guifg=#b2b2b2 guibg=NONE guisp=NONE cterm=NONE gui=NONE 500 | hi typeScriptDOMObjects ctermfg=249 ctermbg=NONE guifg=#b2b2b2 guibg=NONE guisp=NONE cterm=NONE gui=NONE 501 | hi! link typeScriptAjaxMethods Function 502 | hi typeScriptLogicSymbols ctermfg=249 ctermbg=NONE guifg=#b2b2b2 guibg=NONE guisp=NONE cterm=NONE gui=NONE 503 | hi! link typeScriptDocSeeTag Comment 504 | hi! link typeScriptDocParam Comment 505 | hi! link typeScriptDocTags vimCommentTitle 506 | hi! link typeScriptGlobalObjects Keyword 507 | hi typeScriptParens ctermfg=68 ctermbg=NONE guifg=#7590db guibg=NONE guisp=NONE cterm=NONE gui=NONE 508 | hi! link typeScriptOpSymbols Operator 509 | hi! link typeScriptHtmlElemProperties Special 510 | hi typeScriptNull ctermfg=170 ctermbg=NONE guifg=#bc6ec5 guibg=NONE guisp=NONE cterm=NONE,bold gui=NONE,bold 511 | hi typeScriptInterpolationDelimiter ctermfg=29 ctermbg=NONE guifg=#2d9574 guibg=NONE guisp=NONE cterm=NONE gui=NONE 512 | hi purescriptModuleKeyword ctermfg=29 ctermbg=NONE guifg=#2d9574 guibg=NONE guisp=NONE cterm=NONE gui=NONE 513 | hi purescriptModuleName ctermfg=168 ctermbg=NONE guifg=#ce537a guibg=NONE guisp=NONE cterm=NONE,bold gui=NONE,bold 514 | hi purescriptWhere ctermfg=29 ctermbg=NONE guifg=#2d9574 guibg=NONE guisp=NONE cterm=NONE gui=NONE 515 | hi purescriptDelimiter ctermfg=240 ctermbg=NONE guifg=#5b5b5b guibg=NONE guisp=NONE cterm=NONE gui=NONE 516 | hi! link purescriptType Type 517 | hi! link purescriptImportKeyword Keyword 518 | hi! link purescriptHidingKeyword Keyword 519 | hi! link purescriptAsKeyword Keyword 520 | hi! link purescriptStructure Structure 521 | hi! link purescriptOperator Operator 522 | hi! link purescriptTypeVar Type 523 | hi! link purescriptConstructor Function 524 | hi! link purescriptFunction Function 525 | hi! link purescriptConditional Conditional 526 | hi purescriptBacktick ctermfg=173 ctermbg=NONE guifg=#e18254 guibg=NONE guisp=NONE cterm=NONE gui=NONE 527 | hi coffeeExtendedOp ctermfg=243 ctermbg=NONE guifg=#727272 guibg=NONE guisp=NONE cterm=NONE gui=NONE 528 | hi coffeeSpecialOp ctermfg=243 ctermbg=NONE guifg=#727272 guibg=NONE guisp=NONE cterm=NONE gui=NONE 529 | hi coffeeCurly ctermfg=173 ctermbg=NONE guifg=#e18254 guibg=NONE guisp=NONE cterm=NONE gui=NONE 530 | hi coffeeParen ctermfg=243 ctermbg=NONE guifg=#727272 guibg=NONE guisp=NONE cterm=NONE gui=NONE 531 | hi coffeeBracket ctermfg=173 ctermbg=NONE guifg=#e18254 guibg=NONE guisp=NONE cterm=NONE gui=NONE 532 | hi rubyStringDelimiter ctermfg=70 ctermbg=NONE guifg=#67b11d guibg=NONE guisp=NONE cterm=NONE gui=NONE 533 | hi rubyInterpolationDelimiter ctermfg=29 ctermbg=NONE guifg=#2d9574 guibg=NONE guisp=NONE cterm=NONE gui=NONE 534 | hi objcTypeModifier ctermfg=196 ctermbg=NONE guifg=#f2241f guibg=NONE guisp=NONE cterm=NONE gui=NONE 535 | hi objcDirective ctermfg=32 ctermbg=NONE guifg=#4f97d7 guibg=NONE guisp=NONE cterm=NONE gui=NONE 536 | hi goDirective ctermfg=29 ctermbg=NONE guifg=#2d9574 guibg=NONE guisp=NONE cterm=NONE gui=NONE 537 | hi goConstants ctermfg=170 ctermbg=NONE guifg=#bc6ec5 guibg=NONE guisp=NONE cterm=NONE gui=NONE 538 | hi! link goDeclaration Keyword 539 | hi goDeclType ctermfg=32 ctermbg=NONE guifg=#4f97d7 guibg=NONE guisp=NONE cterm=NONE gui=NONE 540 | hi goBuiltins ctermfg=173 ctermbg=NONE guifg=#e18254 guibg=NONE guisp=NONE cterm=NONE gui=NONE 541 | hi luaIn ctermfg=168 ctermbg=NONE guifg=#ce537a guibg=NONE guisp=NONE cterm=NONE gui=NONE 542 | hi luaFunction ctermfg=29 ctermbg=NONE guifg=#2d9574 guibg=NONE guisp=NONE cterm=NONE gui=NONE 543 | hi luaTable ctermfg=173 ctermbg=NONE guifg=#e18254 guibg=NONE guisp=NONE cterm=NONE gui=NONE 544 | hi moonSpecialOp ctermfg=243 ctermbg=NONE guifg=#727272 guibg=NONE guisp=NONE cterm=NONE gui=NONE 545 | hi moonExtendedOp ctermfg=243 ctermbg=NONE guifg=#727272 guibg=NONE guisp=NONE cterm=NONE gui=NONE 546 | hi moonFunction ctermfg=243 ctermbg=NONE guifg=#727272 guibg=NONE guisp=NONE cterm=NONE gui=NONE 547 | hi moonObject ctermfg=136 ctermbg=NONE guifg=#b1951d guibg=NONE guisp=NONE cterm=NONE gui=NONE 548 | hi javaAnnotation ctermfg=32 ctermbg=NONE guifg=#4f97d7 guibg=NONE guisp=NONE cterm=NONE gui=NONE 549 | hi javaDocTags ctermfg=29 ctermbg=NONE guifg=#2d9574 guibg=NONE guisp=NONE cterm=NONE gui=NONE 550 | hi! link javaCommentTitle vimCommentTitle 551 | hi javaParen ctermfg=243 ctermbg=NONE guifg=#727272 guibg=NONE guisp=NONE cterm=NONE gui=NONE 552 | hi javaParen1 ctermfg=243 ctermbg=NONE guifg=#727272 guibg=NONE guisp=NONE cterm=NONE gui=NONE 553 | hi javaParen2 ctermfg=243 ctermbg=NONE guifg=#727272 guibg=NONE guisp=NONE cterm=NONE gui=NONE 554 | hi javaParen3 ctermfg=243 ctermbg=NONE guifg=#727272 guibg=NONE guisp=NONE cterm=NONE gui=NONE 555 | hi javaParen4 ctermfg=243 ctermbg=NONE guifg=#727272 guibg=NONE guisp=NONE cterm=NONE gui=NONE 556 | hi javaParen5 ctermfg=243 ctermbg=NONE guifg=#727272 guibg=NONE guisp=NONE cterm=NONE gui=NONE 557 | hi javaOperator ctermfg=173 ctermbg=NONE guifg=#e18254 guibg=NONE guisp=NONE cterm=NONE gui=NONE 558 | hi javaVarArg ctermfg=70 ctermbg=NONE guifg=#67b11d guibg=NONE guisp=NONE cterm=NONE gui=NONE 559 | hi! link elixirDocString Comment 560 | hi elixirStringDelimiter ctermfg=70 ctermbg=NONE guifg=#67b11d guibg=NONE guisp=NONE cterm=NONE gui=NONE 561 | hi elixirInterpolationDelimiter ctermfg=29 ctermbg=NONE guifg=#2d9574 guibg=NONE guisp=NONE cterm=NONE gui=NONE 562 | hi elixirModuleDeclaration ctermfg=136 ctermbg=NONE guifg=#b1951d guibg=NONE guisp=NONE cterm=NONE gui=NONE 563 | hi scalaNameDefinition ctermfg=249 ctermbg=NONE guifg=#b2b2b2 guibg=NONE guisp=NONE cterm=NONE gui=NONE 564 | hi scalaCaseFollowing ctermfg=249 ctermbg=NONE guifg=#b2b2b2 guibg=NONE guisp=NONE cterm=NONE gui=NONE 565 | hi scalaCapitalWord ctermfg=249 ctermbg=NONE guifg=#b2b2b2 guibg=NONE guisp=NONE cterm=NONE gui=NONE 566 | hi scalaTypeExtension ctermfg=249 ctermbg=NONE guifg=#b2b2b2 guibg=NONE guisp=NONE cterm=NONE gui=NONE 567 | hi scalaKeyword ctermfg=168 ctermbg=NONE guifg=#ce537a guibg=NONE guisp=NONE cterm=NONE,bold gui=NONE,bold 568 | hi scalaKeywordModifier ctermfg=168 ctermbg=NONE guifg=#ce537a guibg=NONE guisp=NONE cterm=NONE gui=NONE 569 | hi scalaSpecial ctermfg=29 ctermbg=NONE guifg=#2d9574 guibg=NONE guisp=NONE cterm=NONE gui=NONE 570 | hi scalaOperator ctermfg=249 ctermbg=NONE guifg=#b2b2b2 guibg=NONE guisp=NONE cterm=NONE gui=NONE 571 | hi scalaTypeDeclaration ctermfg=136 ctermbg=NONE guifg=#b1951d guibg=NONE guisp=NONE cterm=NONE gui=NONE 572 | hi scalaTypeTypePostDeclaration ctermfg=136 ctermbg=NONE guifg=#b1951d guibg=NONE guisp=NONE cterm=NONE gui=NONE 573 | hi scalaInstanceDeclaration ctermfg=249 ctermbg=NONE guifg=#b2b2b2 guibg=NONE guisp=NONE cterm=NONE gui=NONE 574 | hi scalaInterpolation ctermfg=29 ctermbg=NONE guifg=#2d9574 guibg=NONE guisp=NONE cterm=NONE gui=NONE 575 | hi markdownItalic ctermfg=243 ctermbg=NONE guifg=#727272 guibg=NONE guisp=NONE cterm=NONE,italic gui=NONE,italic 576 | hi markdownH1 ctermfg=32 ctermbg=NONE guifg=#4f97d7 guibg=NONE guisp=NONE cterm=NONE,bold gui=NONE,bold 577 | hi markdownH2 ctermfg=29 ctermbg=NONE guifg=#2d9574 guibg=NONE guisp=NONE cterm=NONE,bold gui=NONE,bold 578 | hi markdownH3 ctermfg=70 ctermbg=NONE guifg=#67b11d guibg=NONE guisp=NONE cterm=NONE,bold gui=NONE,bold 579 | hi markdownH4 ctermfg=136 ctermbg=NONE guifg=#b1951d guibg=NONE guisp=NONE cterm=NONE,bold gui=NONE,bold 580 | hi markdownH5 ctermfg=136 ctermbg=NONE guifg=#b1951d guibg=NONE guisp=NONE cterm=NONE gui=NONE 581 | hi markdownH6 ctermfg=136 ctermbg=NONE guifg=#b1951d guibg=NONE guisp=NONE cterm=NONE gui=NONE 582 | hi! link htmlH1 markdownH1 583 | hi! link htmlH2 markdownH2 584 | hi! link htmlH3 markdownH3 585 | hi! link htmlH4 markdownH4 586 | hi! link htmlH5 markdownH5 587 | hi! link htmlH6 markdownH6 588 | hi markdownCode ctermfg=133 ctermbg=NONE guifg=#a45bad guibg=NONE guisp=NONE cterm=NONE gui=NONE 589 | hi! link mkdCode markdownCode 590 | hi markdownCodeBlock ctermfg=29 ctermbg=NONE guifg=#2d9574 guibg=NONE guisp=NONE cterm=NONE gui=NONE 591 | hi markdownCodeDelimiter ctermfg=173 ctermbg=NONE guifg=#e18254 guibg=NONE guisp=NONE cterm=NONE gui=NONE 592 | hi! link mkdCodeDelimiter markdownCodeDelimiter 593 | hi markdownBlockquote ctermfg=239 ctermbg=NONE guifg=#44505c guibg=NONE guisp=NONE cterm=NONE gui=NONE 594 | hi markdownListMarker ctermfg=239 ctermbg=NONE guifg=#44505c guibg=NONE guisp=NONE cterm=NONE gui=NONE 595 | hi markdownOrderedListMarker ctermfg=239 ctermbg=NONE guifg=#44505c guibg=NONE guisp=NONE cterm=NONE gui=NONE 596 | hi markdownRule ctermfg=239 ctermbg=NONE guifg=#44505c guibg=NONE guisp=NONE cterm=NONE gui=NONE 597 | hi markdownHeadingRule ctermfg=239 ctermbg=NONE guifg=#44505c guibg=NONE guisp=NONE cterm=NONE gui=NONE 598 | hi markdownUrlDelimiter ctermfg=243 ctermbg=NONE guifg=#727272 guibg=NONE guisp=NONE cterm=NONE gui=NONE 599 | hi markdownLinkDelimiter ctermfg=243 ctermbg=NONE guifg=#727272 guibg=NONE guisp=NONE cterm=NONE gui=NONE 600 | hi markdownLinkTextDelimiter ctermfg=243 ctermbg=NONE guifg=#727272 guibg=NONE guisp=NONE cterm=NONE gui=NONE 601 | hi markdownHeadingDelimiter ctermfg=173 ctermbg=NONE guifg=#e18254 guibg=NONE guisp=NONE cterm=NONE gui=NONE 602 | hi markdownUrl ctermfg=170 ctermbg=NONE guifg=#bc6ec5 guibg=NONE guisp=NONE cterm=NONE gui=NONE 603 | hi markdownUrlTitleDelimiter ctermfg=70 ctermbg=NONE guifg=#67b11d guibg=NONE guisp=NONE cterm=NONE gui=NONE 604 | hi! link markdownLinkText htmlLink 605 | hi! link markdownIdDeclaration markdownLinkText 606 | hi haskellType ctermfg=249 ctermbg=NONE guifg=#b2b2b2 guibg=NONE guisp=NONE cterm=NONE gui=NONE 607 | hi haskellIdentifier ctermfg=249 ctermbg=NONE guifg=#b2b2b2 guibg=NONE guisp=NONE cterm=NONE gui=NONE 608 | hi haskellSeparator ctermfg=249 ctermbg=NONE guifg=#b2b2b2 guibg=NONE guisp=NONE cterm=NONE gui=NONE 609 | hi haskellDelimiter ctermfg=240 ctermbg=NONE guifg=#5b5b5b guibg=NONE guisp=NONE cterm=NONE gui=NONE 610 | hi haskellOperators ctermfg=32 ctermbg=NONE guifg=#4f97d7 guibg=NONE guisp=NONE cterm=NONE gui=NONE 611 | hi haskellBacktick ctermfg=173 ctermbg=NONE guifg=#e18254 guibg=NONE guisp=NONE cterm=NONE gui=NONE 612 | hi haskellStatement ctermfg=173 ctermbg=NONE guifg=#e18254 guibg=NONE guisp=NONE cterm=NONE gui=NONE 613 | hi haskellConditional ctermfg=173 ctermbg=NONE guifg=#e18254 guibg=NONE guisp=NONE cterm=NONE gui=NONE 614 | hi haskellLet ctermfg=29 ctermbg=NONE guifg=#2d9574 guibg=NONE guisp=NONE cterm=NONE gui=NONE 615 | hi haskellDefault ctermfg=29 ctermbg=NONE guifg=#2d9574 guibg=NONE guisp=NONE cterm=NONE gui=NONE 616 | hi haskellWhere ctermfg=29 ctermbg=NONE guifg=#2d9574 guibg=NONE guisp=NONE cterm=NONE gui=NONE 617 | hi haskellBottom ctermfg=29 ctermbg=NONE guifg=#2d9574 guibg=NONE guisp=NONE cterm=NONE gui=NONE 618 | hi haskellBlockKeywords ctermfg=29 ctermbg=NONE guifg=#2d9574 guibg=NONE guisp=NONE cterm=NONE gui=NONE 619 | hi haskellImportKeywords ctermfg=29 ctermbg=NONE guifg=#2d9574 guibg=NONE guisp=NONE cterm=NONE gui=NONE 620 | hi haskellDeclKeyword ctermfg=29 ctermbg=NONE guifg=#2d9574 guibg=NONE guisp=NONE cterm=NONE gui=NONE 621 | hi haskellDeriving ctermfg=29 ctermbg=NONE guifg=#2d9574 guibg=NONE guisp=NONE cterm=NONE gui=NONE 622 | hi haskellAssocType ctermfg=29 ctermbg=NONE guifg=#2d9574 guibg=NONE guisp=NONE cterm=NONE gui=NONE 623 | hi haskellNumber ctermfg=170 ctermbg=NONE guifg=#bc6ec5 guibg=NONE guisp=NONE cterm=NONE gui=NONE 624 | hi haskellPragma ctermfg=170 ctermbg=NONE guifg=#bc6ec5 guibg=NONE guisp=NONE cterm=NONE gui=NONE 625 | hi haskellString ctermfg=70 ctermbg=NONE guifg=#67b11d guibg=NONE guisp=NONE cterm=NONE gui=NONE 626 | hi haskellChar ctermfg=70 ctermbg=NONE guifg=#67b11d guibg=NONE guisp=NONE cterm=NONE gui=NONE 627 | hi jsonKeyword ctermfg=70 ctermbg=NONE guifg=#67b11d guibg=NONE guisp=NONE cterm=NONE gui=NONE 628 | hi jsonQuote ctermfg=70 ctermbg=NONE guifg=#67b11d guibg=NONE guisp=NONE cterm=NONE gui=NONE 629 | hi jsonBraces ctermfg=249 ctermbg=NONE guifg=#b2b2b2 guibg=NONE guisp=NONE cterm=NONE gui=NONE 630 | hi jsonString ctermfg=249 ctermbg=NONE guifg=#b2b2b2 guibg=NONE guisp=NONE cterm=NONE gui=NONE 631 | endif 632 | finish 633 | endif 634 | 635 | let g:terminal_ansi_colors = [ 636 | \ '#fbf8ef', '#d26487', '#35a8a5', '#b89f33', '#6981c5', '#a15ea7', '#288668', '#504259', 637 | \ '#a8a4ae', '#f2241f', '#67b11d', '#b1951d', '#3a81c3', '#6c3163', '#24775c', '#655370'] 638 | if !has('gui_running') && get(g:, 'space_vim_transp_bg', 0) 639 | hi Normal ctermfg=60 ctermbg=NONE guifg=#655370 guibg=NONE guisp=NONE cterm=NONE gui=NONE 640 | hi CursorLineNr ctermfg=89 ctermbg=NONE guifg=#6c3163 guibg=NONE guisp=NONE cterm=NONE gui=NONE 641 | hi FoldColumn ctermfg=89 ctermbg=NONE guifg=#6c3163 guibg=NONE guisp=NONE cterm=NONE gui=NONE 642 | hi SignColumn ctermfg=60 ctermbg=NONE guifg=#655370 guibg=NONE guisp=NONE cterm=NONE gui=NONE 643 | hi VertSplit ctermfg=255 ctermbg=NONE guifg=#efeae9 guibg=NONE guisp=NONE cterm=NONE gui=NONE 644 | else 645 | hi Normal ctermfg=60 ctermbg=231 guifg=#655370 guibg=#fbf8ef guisp=NONE cterm=NONE gui=NONE 646 | hi CursorLineNr ctermfg=89 ctermbg=255 guifg=#6c3163 guibg=#efeae9 guisp=NONE cterm=NONE gui=NONE 647 | hi FoldColumn ctermfg=89 ctermbg=255 guifg=#6c3163 guibg=#efeae9 guisp=NONE cterm=NONE gui=NONE 648 | hi SignColumn ctermfg=60 ctermbg=231 guifg=#655370 guibg=#fbf8ef guisp=NONE cterm=NONE gui=NONE 649 | hi VertSplit ctermfg=255 ctermbg=231 guifg=#efeae9 guibg=#fbf8ef guisp=NONE cterm=NONE gui=NONE 650 | endif 651 | hi ColorColumn ctermfg=NONE ctermbg=255 guifg=NONE guibg=#efeae9 guisp=NONE cterm=NONE gui=NONE 652 | hi Conceal ctermfg=32 ctermbg=NONE guifg=#3a81c3 guibg=NONE guisp=NONE cterm=NONE gui=NONE 653 | hi Cursor ctermfg=166 ctermbg=NONE guifg=#b46843 guibg=NONE guisp=NONE cterm=NONE,bold,reverse gui=NONE,bold,reverse 654 | hi! link CursorColumn CursorLine 655 | hi CursorLine ctermfg=NONE ctermbg=255 guifg=NONE guibg=#efeae9 guisp=NONE cterm=NONE gui=NONE 656 | hi DiffAdd ctermfg=70 ctermbg=231 guifg=#67b11d guibg=#fbf8ef guisp=NONE cterm=NONE,reverse gui=NONE,reverse 657 | hi DiffChange ctermfg=166 ctermbg=231 guifg=#b46843 guibg=#fbf8ef guisp=NONE cterm=NONE,reverse gui=NONE,reverse 658 | hi DiffDelete ctermfg=196 ctermbg=231 guifg=#f2241f guibg=#fbf8ef guisp=NONE cterm=NONE,reverse gui=NONE,reverse 659 | hi DiffText ctermfg=136 ctermbg=231 guifg=#b1951d guibg=#fbf8ef guisp=NONE cterm=NONE,reverse gui=NONE,reverse 660 | hi Directory ctermfg=32 ctermbg=NONE guifg=#3a81c3 guibg=NONE guisp=NONE cterm=NONE,bold gui=NONE,bold 661 | hi EndOfBuffer ctermfg=231 ctermbg=NONE guifg=#fbf8ef guibg=NONE guisp=NONE cterm=NONE gui=NONE 662 | hi Error ctermfg=196 ctermbg=231 guifg=#f2241f guibg=#fbf8ef guisp=NONE cterm=NONE,bold,reverse gui=NONE,bold,reverse 663 | hi ErrorMsg ctermfg=231 ctermbg=196 guifg=#fbf8ef guibg=#f2241f guisp=NONE cterm=NONE gui=NONE 664 | hi Folded ctermfg=53 ctermbg=255 guifg=#4e3163 guibg=#efeae9 guisp=NONE cterm=NONE gui=NONE,italic 665 | hi IncSearch ctermfg=166 ctermbg=231 guifg=#b46843 guibg=#fbf8ef guisp=NONE cterm=NONE,bold,reverse gui=NONE,bold,reverse 666 | hi LineNr ctermfg=146 ctermbg=NONE guifg=#a8a8bf guibg=NONE guisp=NONE cterm=NONE gui=NONE 667 | hi MatchParen ctermfg=70 ctermbg=NONE guifg=#67b11d guibg=NONE guisp=NONE cterm=NONE,bold,underline gui=NONE,bold,underline 668 | hi ModeMsg ctermfg=184 ctermbg=NONE guifg=#e5d11c guibg=NONE guisp=NONE cterm=NONE gui=NONE 669 | hi! link MoreMsg ModeMsg 670 | hi NonText ctermfg=146 ctermbg=NONE guifg=#a8a8bf guibg=NONE guisp=NONE cterm=NONE gui=NONE 671 | hi Pmenu ctermfg=103 ctermbg=254 guifg=#8c799f guibg=#e2e0ea guisp=NONE cterm=NONE gui=NONE 672 | hi PmenuSbar ctermfg=NONE ctermbg=255 guifg=NONE guibg=#efeae9 guisp=NONE cterm=NONE gui=NONE 673 | hi PmenuSel ctermfg=NONE ctermbg=189 guifg=NONE guibg=#c8c6dd guisp=NONE cterm=NONE gui=NONE 674 | hi PmenuThumb ctermfg=NONE ctermbg=189 guifg=NONE guibg=#d3d3e7 guisp=NONE cterm=NONE gui=NONE 675 | hi Question ctermfg=166 ctermbg=NONE guifg=#b46843 guibg=NONE guisp=NONE cterm=NONE,bold gui=NONE,bold 676 | hi! link QuickFixLine Search 677 | hi! link qfLineNr Type 678 | hi Search ctermfg=70 ctermbg=231 guifg=#67b11d guibg=#fbf8ef guisp=NONE cterm=NONE,bold,reverse gui=NONE,bold,reverse 679 | hi SpecialKey ctermfg=89 ctermbg=NONE guifg=#6c3163 guibg=NONE guisp=NONE cterm=NONE gui=NONE 680 | hi SpellBad ctermfg=196 ctermbg=NONE guifg=#f2241f guibg=NONE guisp=#f2241f cterm=NONE,underline gui=NONE,italic,undercurl 681 | hi SpellCap ctermfg=32 ctermbg=NONE guifg=#3a81c3 guibg=NONE guisp=#3a81c3 cterm=NONE,underline gui=NONE,italic,undercurl 682 | hi SpellLocal ctermfg=29 ctermbg=NONE guifg=#24775c guibg=NONE guisp=#24775c cterm=NONE,underline gui=NONE,italic,undercurl 683 | hi SpellRare ctermfg=89 ctermbg=NONE guifg=#6c3163 guibg=NONE guisp=#6c3163 cterm=NONE,underline gui=NONE,italic,undercurl 684 | hi StatusLine ctermfg=60 ctermbg=189 guifg=#655370 guibg=#d3d3e7 guisp=NONE cterm=NONE gui=NONE 685 | hi StatusLineNC ctermfg=189 ctermbg=248 guifg=#d3d3e7 guibg=#a8a4ae guisp=NONE cterm=NONE gui=NONE 686 | hi! link StatusLineTerm StatusLine 687 | hi! link StatusLineTermNC StatusLineNC 688 | hi TabLineFill ctermfg=60 ctermbg=255 guifg=#544a65 guibg=#efeae9 guisp=NONE cterm=NONE gui=NONE 689 | hi TabLineSel ctermfg=70 ctermbg=255 guifg=#67b11d guibg=#efeae9 guisp=NONE cterm=NONE gui=NONE 690 | hi! link TabLine TabLineFill 691 | hi Title ctermfg=70 ctermbg=NONE guifg=#67b11d guibg=NONE guisp=NONE cterm=NONE,bold gui=NONE,bold 692 | hi Visual ctermfg=NONE ctermbg=60 guifg=NONE guibg=#544a65 guisp=NONE cterm=NONE gui=NONE 693 | hi! link VisualNOS Visual 694 | hi WarningMsg ctermfg=196 ctermbg=NONE guifg=#f2241f guibg=NONE guisp=NONE cterm=NONE gui=NONE 695 | hi WildMenu ctermfg=166 ctermbg=255 guifg=#b46843 guibg=#efeae9 guisp=NONE cterm=NONE,bold gui=NONE,bold 696 | hi Boolean ctermfg=166 ctermbg=NONE guifg=#dc752f guibg=NONE guisp=NONE cterm=NONE gui=NONE 697 | hi Character ctermfg=89 ctermbg=NONE guifg=#6c3163 guibg=NONE guisp=NONE cterm=NONE gui=NONE 698 | hi Comment ctermfg=37 ctermbg=NONE guifg=#2aa1ae guibg=NONE guisp=NONE cterm=NONE,none gui=NONE,italic,none 699 | hi Conditional ctermfg=32 ctermbg=NONE guifg=#3a81c3 guibg=NONE guisp=NONE cterm=NONE,bold gui=NONE,bold 700 | hi Constant ctermfg=166 ctermbg=NONE guifg=#b46843 guibg=NONE guisp=NONE cterm=NONE gui=NONE 701 | hi Define ctermfg=29 ctermbg=NONE guifg=#24775c guibg=NONE guisp=NONE cterm=NONE gui=NONE 702 | hi Debug ctermfg=196 ctermbg=NONE guifg=#f54e3c guibg=NONE guisp=NONE cterm=NONE gui=NONE 703 | hi Delimiter ctermfg=73 ctermbg=NONE guifg=#74baac guibg=NONE guisp=NONE cterm=NONE gui=NONE 704 | hi Error ctermfg=196 ctermbg=231 guifg=#f2241f guibg=#fbf8ef guisp=NONE cterm=NONE,bold,reverse gui=NONE,bold,reverse 705 | hi Exception ctermfg=196 ctermbg=NONE guifg=#f2241f guibg=NONE guisp=NONE cterm=NONE gui=NONE 706 | hi Float ctermfg=147 ctermbg=NONE guifg=#b7b7ff guibg=NONE guisp=NONE cterm=NONE gui=NONE 707 | hi Function ctermfg=89 ctermbg=NONE guifg=#6c3163 guibg=NONE guisp=NONE cterm=NONE,bold gui=NONE,bold 708 | hi Identifier ctermfg=61 ctermbg=NONE guifg=#715ab1 guibg=NONE guisp=NONE cterm=NONE gui=NONE 709 | hi Ignore ctermfg=fg ctermbg=NONE guifg=fg guibg=NONE guisp=NONE cterm=NONE gui=NONE 710 | hi Include ctermfg=136 ctermbg=NONE guifg=#b1951d guibg=NONE guisp=NONE cterm=NONE gui=NONE 711 | hi Keyword ctermfg=32 ctermbg=NONE guifg=#3a81c3 guibg=NONE guisp=NONE cterm=NONE,bold gui=NONE,bold 712 | hi Label ctermfg=161 ctermbg=NONE guifg=#ba2f59 guibg=NONE guisp=NONE cterm=NONE gui=NONE 713 | hi Macro ctermfg=61 ctermbg=NONE guifg=#715ab1 guibg=NONE guisp=NONE cterm=NONE,bold gui=NONE,bold 714 | hi Number ctermfg=176 ctermbg=NONE guifg=#e697e6 guibg=NONE guisp=NONE cterm=NONE gui=NONE 715 | hi Operator ctermfg=74 ctermbg=NONE guifg=#58b0d9 guibg=NONE guisp=NONE cterm=NONE gui=NONE 716 | hi PreCondit ctermfg=53 ctermbg=NONE guifg=#4e3163 guibg=NONE guisp=NONE cterm=NONE gui=NONE 717 | hi PreProc ctermfg=97 ctermbg=NONE guifg=#86589e guibg=NONE guisp=NONE cterm=NONE gui=NONE 718 | hi Repeat ctermfg=161 ctermbg=NONE guifg=#ba2f59 guibg=NONE guisp=NONE cterm=NONE,bold gui=NONE,bold 719 | hi SpecialChar ctermfg=37 ctermbg=NONE guifg=#21b8c7 guibg=NONE guisp=NONE cterm=NONE gui=NONE 720 | hi SpecialComment ctermfg=67 ctermbg=NONE guifg=#768294 guibg=NONE guisp=NONE cterm=NONE gui=NONE 721 | hi Statement ctermfg=32 ctermbg=NONE guifg=#3a81c3 guibg=NONE guisp=NONE cterm=NONE gui=NONE 722 | hi StorageClass ctermfg=136 ctermbg=NONE guifg=#b1951d guibg=NONE guisp=NONE cterm=NONE,bold gui=NONE,bold 723 | hi Special ctermfg=172 ctermbg=NONE guifg=#d79650 guibg=NONE guisp=NONE cterm=NONE gui=NONE 724 | hi String ctermfg=29 ctermbg=NONE guifg=#24775c guibg=NONE guisp=NONE cterm=NONE gui=NONE 725 | hi Structure ctermfg=31 ctermbg=NONE guifg=#4495b4 guibg=NONE guisp=NONE cterm=NONE,bold gui=NONE,bold 726 | hi Tag ctermfg=166 ctermbg=NONE guifg=#b46843 guibg=NONE guisp=NONE cterm=NONE gui=NONE 727 | hi Todo ctermfg=166 ctermbg=NONE guifg=#b46843 guibg=NONE guisp=NONE cterm=NONE,bold gui=NONE,bold,italic 728 | hi Type ctermfg=161 ctermbg=NONE guifg=#ba2f59 guibg=NONE guisp=NONE cterm=NONE gui=NONE 729 | hi Typedef ctermfg=136 ctermbg=NONE guifg=#b1951d guibg=NONE guisp=NONE cterm=NONE gui=NONE 730 | hi Underlined ctermfg=32 ctermbg=NONE guifg=#3a81c3 guibg=NONE guisp=NONE cterm=NONE,underline gui=NONE,underline 731 | hi! link lCursor Cursor 732 | hi CursorIM ctermfg=NONE ctermbg=NONE guifg=NONE guibg=NONE guisp=NONE cterm=NONE,reverse gui=NONE,reverse 733 | hi ToolbarLine ctermfg=NONE ctermbg=252 guifg=NONE guibg=#d2ceda guisp=NONE cterm=NONE gui=NONE 734 | hi ToolbarButton ctermfg=103 ctermbg=252 guifg=#83758c guibg=#d2ceda guisp=NONE cterm=NONE,bold gui=NONE,bold 735 | if get(g:, "space_vim_italic", 0) 736 | hi Comment cterm=italic 737 | hi Folded cterm=italic 738 | hi SpellBad cterm=italic,underline 739 | hi SpellCap cterm=italic,underline 740 | hi SpellLocal cterm=italic,underline 741 | hi SpellRare cterm=italic,underline 742 | hi Todo cterm=italic 743 | endif 744 | if get(g:, "space_vim_italicize_strings", 0) 745 | hi Special cterm=italic gui=italic 746 | hi String cterm=italic gui=italic 747 | endif 748 | hi! link iCursor Cursor 749 | hi! link vCursor Cursor 750 | hi NormalMode ctermfg=237 ctermbg=231 guifg=#463a4e guibg=#fbf8ef guisp=NONE cterm=NONE,reverse gui=NONE,reverse 751 | hi InsertMode ctermfg=32 ctermbg=231 guifg=#3a81c3 guibg=#fbf8ef guisp=NONE cterm=NONE,reverse gui=NONE,reverse 752 | hi ReplaceMode ctermfg=29 ctermbg=231 guifg=#24775c guibg=#fbf8ef guisp=NONE cterm=NONE,reverse gui=NONE,reverse 753 | hi VisualMode ctermfg=166 ctermbg=231 guifg=#b46843 guibg=#fbf8ef guisp=NONE cterm=NONE,reverse gui=NONE,reverse 754 | hi CommandMode ctermfg=89 ctermbg=231 guifg=#6c3163 guibg=#fbf8ef guisp=NONE cterm=NONE,reverse gui=NONE,reverse 755 | hi Warnings ctermfg=166 ctermbg=231 guifg=#b46843 guibg=#fbf8ef guisp=NONE cterm=NONE,reverse gui=NONE,reverse 756 | if has('nvim') 757 | let g:terminal_color_0 = '#fbf8ef' 758 | let g:terminal_color_8 = '#a8a8bf' 759 | let g:terminal_color_1 = '#d26487' 760 | let g:terminal_color_9 = '#f2241f' 761 | let g:terminal_color_2 = '#35a8a5' 762 | let g:terminal_color_10 = '#67b11d' 763 | let g:terminal_color_3 = '#b89f33' 764 | let g:terminal_color_11 = '#b1951d' 765 | let g:terminal_color_4 = '#6981c5' 766 | let g:terminal_color_12 = '#3a81c3' 767 | let g:terminal_color_5 = '#a15ea7' 768 | let g:terminal_color_13 = '#6c3163' 769 | let g:terminal_color_6 = '#288668' 770 | let g:terminal_color_14 = '#24775c' 771 | let g:terminal_color_7 = '#463a4e' 772 | let g:terminal_color_15 = '#655370' 773 | hi! link TermCursor Cursor 774 | hi TermCursorNC ctermfg=255 ctermbg=60 guifg=#efeae9 guibg=#655370 guisp=NONE cterm=NONE gui=NONE 775 | endif 776 | if !(get(g:, "space_vim_plugin_hi_groups", 1) || get(g:, "space_vim_filetype_hi_groups", 1)) 777 | finish 778 | endif 779 | if get(g:, "space_vim_plugin_hi_groups", 1) 780 | hi ALEError ctermfg=NONE ctermbg=NONE guifg=NONE guibg=NONE guisp=#f2241f cterm=NONE,underline gui=NONE,undercurl 781 | hi ALEWarning ctermfg=NONE ctermbg=NONE guifg=NONE guibg=NONE guisp=#f2241f cterm=NONE,underline gui=NONE,undercurl 782 | hi ALEInfo ctermfg=NONE ctermbg=NONE guifg=NONE guibg=NONE guisp=#3a81c3 cterm=NONE,underline gui=NONE,undercurl 783 | hi ALEErrorSign ctermfg=196 ctermbg=NONE guifg=#f2241f guibg=NONE guisp=NONE cterm=NONE gui=NONE 784 | hi ALEWarningSign ctermfg=136 ctermbg=NONE guifg=#b1951d guibg=NONE guisp=NONE cterm=NONE gui=NONE 785 | hi ALEInfoSign ctermfg=32 ctermbg=NONE guifg=#3a81c3 guibg=NONE guisp=NONE cterm=NONE gui=NONE 786 | hi BufTabLineCurrent ctermfg=231 ctermbg=237 guifg=#fbf8ef guibg=#463a4e guisp=NONE cterm=NONE gui=NONE 787 | hi BufTabLineActive ctermfg=237 ctermbg=254 guifg=#463a4e guibg=#e3dedd guisp=NONE cterm=NONE gui=NONE 788 | hi BufTabLineHidden ctermfg=248 ctermbg=255 guifg=#a8a4ae guibg=#efeae9 guisp=NONE cterm=NONE gui=NONE 789 | hi BufTabLineFill ctermfg=231 ctermbg=231 guifg=#fbf8ef guibg=#fbf8ef guisp=NONE cterm=NONE gui=NONE 790 | hi CtrlPMatch ctermfg=136 ctermbg=NONE guifg=#b1951d guibg=NONE guisp=NONE cterm=NONE gui=NONE 791 | hi CtrlPNoEntries ctermfg=196 ctermbg=NONE guifg=#f2241f guibg=NONE guisp=NONE cterm=NONE gui=NONE 792 | hi CtrlPPrtBase ctermfg=254 ctermbg=NONE guifg=#e3dedd guibg=NONE guisp=NONE cterm=NONE gui=NONE 793 | hi CtrlPPrtCursor ctermfg=32 ctermbg=NONE guifg=#3a81c3 guibg=NONE guisp=NONE cterm=NONE gui=NONE 794 | hi CtrlPLinePre ctermfg=254 ctermbg=NONE guifg=#e3dedd guibg=NONE guisp=NONE cterm=NONE gui=NONE 795 | hi CtrlPMode1 ctermfg=32 ctermbg=254 guifg=#3a81c3 guibg=#e3dedd guisp=NONE cterm=NONE,bold gui=NONE,bold 796 | hi CtrlPMode2 ctermfg=231 ctermbg=32 guifg=#fbf8ef guibg=#3a81c3 guisp=NONE cterm=NONE,bold gui=NONE,bold 797 | hi CtrlPStats ctermfg=237 ctermbg=254 guifg=#463a4e guibg=#e3dedd guisp=NONE cterm=NONE,bold gui=NONE,bold 798 | hi DirvishPathTail ctermfg=29 ctermbg=NONE guifg=#24775c guibg=NONE guisp=NONE cterm=NONE gui=NONE 799 | hi DirvishArg ctermfg=136 ctermbg=NONE guifg=#b1951d guibg=NONE guisp=NONE cterm=NONE gui=NONE 800 | hi! link EasyMotionTarget Search 801 | hi! link EasyMotionShade Comment 802 | hi gitcommitSelectedFile ctermfg=70 ctermbg=NONE guifg=#67b11d guibg=NONE guisp=NONE cterm=NONE gui=NONE 803 | hi gitcommitDiscardedFile ctermfg=196 ctermbg=NONE guifg=#f2241f guibg=NONE guisp=NONE cterm=NONE gui=NONE 804 | hi GitGutterAdd ctermfg=70 ctermbg=231 guifg=#67b11d guibg=#fbf8ef guisp=NONE cterm=NONE,bold gui=NONE,bold 805 | hi GitGutterChange ctermfg=166 ctermbg=231 guifg=#b46843 guibg=#fbf8ef guisp=NONE cterm=NONE,bold gui=NONE,bold 806 | hi GitGutterDelete ctermfg=196 ctermbg=231 guifg=#f2241f guibg=#fbf8ef guisp=NONE cterm=NONE,bold gui=NONE,bold 807 | hi GitGutterChangeDelete ctermfg=161 ctermbg=231 guifg=#ba2f59 guibg=#fbf8ef guisp=NONE cterm=NONE,bold gui=NONE,bold 808 | if get(g:, "indent_guides_auto_colors", 0) 809 | if get(g:, "space_vim_invert_indent_guides", 0) 810 | hi IndentGuidesOdd ctermfg=231 ctermbg=254 guifg=#fbf8ef guibg=#e3dedd guisp=NONE cterm=NONE,reverse gui=NONE,reverse 811 | hi IndentGuidesEven ctermfg=231 ctermbg=255 guifg=#fbf8ef guibg=#efeae9 guisp=NONE cterm=NONE,reverse gui=NONE,reverse 812 | else 813 | hi IndentGuidesOdd ctermfg=231 ctermbg=254 guifg=#fbf8ef guibg=#e3dedd guisp=NONE cterm=NONE gui=NONE 814 | hi IndentGuidesEven ctermfg=231 ctermbg=255 guifg=#fbf8ef guibg=#efeae9 guisp=NONE cterm=NONE gui=NONE 815 | endif 816 | endif 817 | " IndentLine 818 | if !exists('g:indentLine_color_term') 819 | let g:indentLine_color_term = 254 820 | endif 821 | if !exists('g:indentLine_color_gui') 822 | let g:indentLine_color_gui = '#e3dedd' 823 | endif 824 | hi NERDTreeDir ctermfg=32 ctermbg=NONE guifg=#3a81c3 guibg=NONE guisp=NONE cterm=NONE,bold gui=NONE,bold 825 | hi NERDTreeDirSlash ctermfg=32 ctermbg=NONE guifg=#3a81c3 guibg=NONE guisp=NONE cterm=NONE gui=NONE 826 | hi NERDTreeOpenable ctermfg=32 ctermbg=NONE guifg=#3a81c3 guibg=NONE guisp=NONE cterm=NONE gui=NONE 827 | hi NERDTreeClosable ctermfg=32 ctermbg=NONE guifg=#3a81c3 guibg=NONE guisp=NONE cterm=NONE gui=NONE 828 | hi NERDTreeFile ctermfg=60 ctermbg=NONE guifg=#655370 guibg=NONE guisp=NONE cterm=NONE gui=NONE 829 | hi NERDTreeExecFile ctermfg=136 ctermbg=NONE guifg=#b1951d guibg=NONE guisp=NONE cterm=NONE gui=NONE 830 | hi NERDTreeUp ctermfg=161 ctermbg=NONE guifg=#ba2f59 guibg=NONE guisp=NONE cterm=NONE gui=NONE 831 | hi NERDTreeCWD ctermfg=89 ctermbg=NONE guifg=#6c3163 guibg=NONE guisp=NONE cterm=NONE gui=NONE 832 | hi NERDTreeHelp ctermfg=60 ctermbg=NONE guifg=#655370 guibg=NONE guisp=NONE cterm=NONE gui=NONE 833 | hi NERDTreeToggleOn ctermfg=70 ctermbg=NONE guifg=#67b11d guibg=NONE guisp=NONE cterm=NONE gui=NONE 834 | hi NERDTreeToggleOff ctermfg=196 ctermbg=NONE guifg=#f2241f guibg=NONE guisp=NONE cterm=NONE gui=NONE 835 | hi netrwDir ctermfg=32 ctermbg=NONE guifg=#3a81c3 guibg=NONE guisp=NONE cterm=NONE gui=NONE 836 | hi netrwClassify ctermfg=32 ctermbg=NONE guifg=#3a81c3 guibg=NONE guisp=NONE cterm=NONE gui=NONE 837 | hi netrwLink ctermfg=146 ctermbg=NONE guifg=#a8a8bf guibg=NONE guisp=NONE cterm=NONE gui=NONE 838 | hi netrwSymLink ctermfg=60 ctermbg=NONE guifg=#655370 guibg=NONE guisp=NONE cterm=NONE gui=NONE 839 | hi netrwExe ctermfg=136 ctermbg=NONE guifg=#b1951d guibg=NONE guisp=NONE cterm=NONE gui=NONE 840 | hi netrwComment ctermfg=146 ctermbg=NONE guifg=#a8a8bf guibg=NONE guisp=NONE cterm=NONE gui=NONE 841 | hi netrwList ctermfg=32 ctermbg=NONE guifg=#3a81c3 guibg=NONE guisp=NONE cterm=NONE gui=NONE 842 | hi netrwHelpCmd ctermfg=29 ctermbg=NONE guifg=#24775c guibg=NONE guisp=NONE cterm=NONE gui=NONE 843 | hi netrwCmdSep ctermfg=60 ctermbg=NONE guifg=#504259 guibg=NONE guisp=NONE cterm=NONE gui=NONE 844 | hi netrwVersion ctermfg=70 ctermbg=NONE guifg=#67b11d guibg=NONE guisp=NONE cterm=NONE gui=NONE 845 | " Rainbow Parentheses 846 | if !exists('g:rbpt_colorpairs') 847 | let g:rbpt_colorpairs = [['blue', '#6981c5'], ['magenta', '#a15ea7'], 848 | \ ['red', '#d26487'], ['173', '#ca754b']] 849 | endif 850 | 851 | let g:rainbow_guifgs = [ '#ca754b', '#d26487', '#a15ea7', '#6981c5' ] 852 | let g:rainbow_ctermfgs = [ '173', 'red', 'magenta', 'blue' ] 853 | 854 | if !exists('g:rainbow_conf') 855 | let g:rainbow_conf = {} 856 | endif 857 | if !has_key(g:rainbow_conf, 'guifgs') 858 | let g:rainbow_conf['guifgs'] = g:rainbow_guifgs 859 | endif 860 | if !has_key(g:rainbow_conf, 'ctermfgs') 861 | let g:rainbow_conf['ctermfgs'] = g:rainbow_ctermfgs 862 | endif 863 | 864 | let g:niji_dark_colours = g:rbpt_colorpairs 865 | let g:niji_light_colours = g:rbpt_colorpairs 866 | hi ShowMarksHLl ctermfg=32 ctermbg=231 guifg=#3a81c3 guibg=#fbf8ef guisp=NONE cterm=NONE,bold gui=NONE,bold 867 | hi ShowMarksHLu ctermfg=32 ctermbg=231 guifg=#3a81c3 guibg=#fbf8ef guisp=NONE cterm=NONE,bold gui=NONE,bold 868 | hi ShowMarksHLo ctermfg=32 ctermbg=231 guifg=#3a81c3 guibg=#fbf8ef guisp=NONE cterm=NONE,bold gui=NONE,bold 869 | hi ShowMarksHLm ctermfg=32 ctermbg=231 guifg=#3a81c3 guibg=#fbf8ef guisp=NONE cterm=NONE,bold gui=NONE,bold 870 | hi SignifySignAdd ctermfg=70 ctermbg=NONE guifg=#67b11d guibg=NONE guisp=NONE cterm=NONE gui=NONE 871 | hi SignifySignChange ctermfg=166 ctermbg=NONE guifg=#b46843 guibg=NONE guisp=NONE cterm=NONE gui=NONE 872 | hi SignifySignDelete ctermfg=196 ctermbg=NONE guifg=#f2241f guibg=NONE guisp=NONE cterm=NONE gui=NONE 873 | hi SignatureMarkText ctermfg=32 ctermbg=231 guifg=#3a81c3 guibg=#fbf8ef guisp=NONE cterm=NONE,bold gui=NONE,bold 874 | hi SignatureMarkerText ctermfg=89 ctermbg=231 guifg=#6c3163 guibg=#fbf8ef guisp=NONE cterm=NONE,bold gui=NONE,bold 875 | hi StartifyBracket ctermfg=60 ctermbg=NONE guifg=#504259 guibg=NONE guisp=NONE cterm=NONE gui=NONE 876 | hi StartifyFile ctermfg=60 ctermbg=231 guifg=#655370 guibg=#fbf8ef guisp=NONE cterm=NONE gui=NONE 877 | hi StartifyNumber ctermfg=32 ctermbg=NONE guifg=#3a81c3 guibg=NONE guisp=NONE cterm=NONE gui=NONE 878 | hi StartifyPath ctermfg=61 ctermbg=NONE guifg=#715ab1 guibg=NONE guisp=NONE cterm=NONE,bold gui=NONE,bold 879 | hi StartifySlash ctermfg=32 ctermbg=NONE guifg=#3a81c3 guibg=NONE guisp=NONE cterm=NONE gui=NONE 880 | hi StartifySection ctermfg=32 ctermbg=NONE guifg=#3a81c3 guibg=NONE guisp=NONE cterm=NONE,bold gui=NONE,bold 881 | hi! link StartifySpecial Type 882 | hi StartifyHeader ctermfg=53 ctermbg=NONE guifg=#4e3163 guibg=NONE guisp=NONE cterm=NONE gui=NONE 883 | hi StartifyFooter ctermfg=53 ctermbg=NONE guifg=#4e3163 guibg=NONE guisp=NONE cterm=NONE gui=NONE 884 | hi SyntasticError ctermfg=NONE ctermbg=NONE guifg=NONE guibg=NONE guisp=#f2241f cterm=NONE,underline gui=NONE,undercurl 885 | hi SyntasticWarning ctermfg=NONE ctermbg=NONE guifg=NONE guibg=NONE guisp=#b1951d cterm=NONE,underline gui=NONE,undercurl 886 | hi SyntasticErrorSign ctermfg=196 ctermbg=231 guifg=#f2241f guibg=#fbf8ef guisp=NONE cterm=NONE gui=NONE 887 | hi SyntasticWarningSign ctermfg=136 ctermbg=231 guifg=#b1951d guibg=#fbf8ef guisp=NONE cterm=NONE gui=NONE 888 | hi multiple_cursors_cursor ctermfg=NONE ctermbg=NONE guifg=NONE guibg=NONE guisp=NONE cterm=NONE,reverse gui=NONE,reverse 889 | hi multiple_cursors_visual ctermfg=NONE ctermbg=254 guifg=NONE guibg=#e3dedd guisp=NONE cterm=NONE gui=NONE 890 | hi CurrentWord ctermfg=NONE ctermbg=60 guifg=NONE guibg=#544a65 guisp=NONE cterm=NONE,underline gui=NONE,underline 891 | hi CurrentWordTwins ctermfg=NONE ctermbg=60 guifg=NONE guibg=#544a65 guisp=NONE cterm=NONE gui=NONE 892 | hi! link WhichKey Function 893 | hi WhichKeySeperator ctermfg=70 ctermbg=NONE guifg=#67b11d guibg=NONE guisp=NONE cterm=NONE gui=NONE 894 | hi! link WhichKeyGroup Keyword 895 | hi! link WhichKeyDesc Identifier 896 | let g:vimshell_escape_colors = [ 897 | \ '#a8a4ae', '#f2241f', '#67b11d', '#b1951d', 898 | \ '#3a81c3', '#6c3163', '#24775c', '#463a4e', 899 | \ '#fbf8ef', '#f2241f', '#67b11d', '#b46843', 900 | \ '#3a81c3', '#6c3163', '#24775c', '#83758c' 901 | \ ] 902 | endif 903 | if get(g:, "space_vim_filetype_hi_groups", 1) 904 | hi diffAdded ctermfg=70 ctermbg=NONE guifg=#67b11d guibg=NONE guisp=NONE cterm=NONE gui=NONE 905 | hi diffRemoved ctermfg=196 ctermbg=NONE guifg=#f2241f guibg=NONE guisp=NONE cterm=NONE gui=NONE 906 | hi diffChanged ctermfg=29 ctermbg=NONE guifg=#24775c guibg=NONE guisp=NONE cterm=NONE gui=NONE 907 | hi diffFile ctermfg=166 ctermbg=NONE guifg=#b46843 guibg=NONE guisp=NONE cterm=NONE gui=NONE 908 | hi diffNewFile ctermfg=136 ctermbg=NONE guifg=#b1951d guibg=NONE guisp=NONE cterm=NONE gui=NONE 909 | hi diffLine ctermfg=32 ctermbg=NONE guifg=#3a81c3 guibg=NONE guisp=NONE cterm=NONE gui=NONE 910 | hi htmlTag ctermfg=32 ctermbg=NONE guifg=#3a81c3 guibg=NONE guisp=NONE cterm=NONE gui=NONE 911 | hi htmlEndTag ctermfg=32 ctermbg=NONE guifg=#3a81c3 guibg=NONE guisp=NONE cterm=NONE gui=NONE 912 | hi htmlTagName ctermfg=53 ctermbg=NONE guifg=#4e3163 guibg=NONE guisp=NONE cterm=NONE gui=NONE 913 | hi htmlArg ctermfg=29 ctermbg=NONE guifg=#24775c guibg=NONE guisp=NONE cterm=NONE gui=NONE 914 | hi htmlScriptTag ctermfg=89 ctermbg=NONE guifg=#6c3163 guibg=NONE guisp=NONE cterm=NONE gui=NONE 915 | hi htmlTagN ctermfg=60 ctermbg=NONE guifg=#655370 guibg=NONE guisp=NONE cterm=NONE gui=NONE 916 | hi htmlSpecialTagName ctermfg=29 ctermbg=NONE guifg=#24775c guibg=NONE guisp=NONE cterm=NONE,bold gui=NONE,bold 917 | hi htmlLink ctermfg=32 ctermbg=NONE guifg=#3a81c3 guibg=NONE guisp=NONE cterm=NONE,underline gui=NONE,underline 918 | hi htmlSpecialChar ctermfg=166 ctermbg=NONE guifg=#b46843 guibg=NONE guisp=NONE cterm=NONE gui=NONE 919 | hi htmlBold ctermfg=fg ctermbg=231 guifg=fg guibg=#fbf8ef guisp=NONE cterm=NONE,bold gui=NONE,bold 920 | hi htmlBoldUnderline ctermfg=fg ctermbg=231 guifg=fg guibg=#fbf8ef guisp=NONE cterm=NONE,bold,underline gui=NONE,bold,underline 921 | hi htmlBoldItalic ctermfg=fg ctermbg=231 guifg=fg guibg=#fbf8ef guisp=NONE cterm=NONE,bold,italic gui=NONE,bold,italic 922 | hi htmlBoldUnderlineItalic ctermfg=fg ctermbg=231 guifg=fg guibg=#fbf8ef guisp=NONE cterm=NONE,bold,italic,underline gui=NONE,bold,italic,underline 923 | hi htmlUnderline ctermfg=fg ctermbg=231 guifg=fg guibg=#fbf8ef guisp=NONE cterm=NONE,underline gui=NONE,underline 924 | hi htmlUnderlineItalic ctermfg=fg ctermbg=231 guifg=fg guibg=#fbf8ef guisp=NONE cterm=NONE,italic,underline gui=NONE,italic,underline 925 | hi htmlItalic ctermfg=61 ctermbg=NONE guifg=#715ab1 guibg=NONE guisp=NONE cterm=NONE,italic gui=NONE,italic 926 | hi xmlTag ctermfg=32 ctermbg=NONE guifg=#3a81c3 guibg=NONE guisp=NONE cterm=NONE gui=NONE 927 | hi xmlEndTag ctermfg=32 ctermbg=NONE guifg=#3a81c3 guibg=NONE guisp=NONE cterm=NONE gui=NONE 928 | hi xmlTagName ctermfg=32 ctermbg=NONE guifg=#3a81c3 guibg=NONE guisp=NONE cterm=NONE gui=NONE 929 | hi xmlEqual ctermfg=32 ctermbg=NONE guifg=#3a81c3 guibg=NONE guisp=NONE cterm=NONE gui=NONE 930 | hi docbkKeyword ctermfg=29 ctermbg=NONE guifg=#24775c guibg=NONE guisp=NONE cterm=NONE,bold gui=NONE,bold 931 | hi xmlDocTypeDecl ctermfg=146 ctermbg=NONE guifg=#a8a8bf guibg=NONE guisp=NONE cterm=NONE gui=NONE 932 | hi xmlDocTypeKeyword ctermfg=89 ctermbg=NONE guifg=#6c3163 guibg=NONE guisp=NONE cterm=NONE gui=NONE 933 | hi xmlCdataStart ctermfg=146 ctermbg=NONE guifg=#a8a8bf guibg=NONE guisp=NONE cterm=NONE gui=NONE 934 | hi xmlCdataCdata ctermfg=89 ctermbg=NONE guifg=#6c3163 guibg=NONE guisp=NONE cterm=NONE gui=NONE 935 | hi dtdFunction ctermfg=146 ctermbg=NONE guifg=#a8a8bf guibg=NONE guisp=NONE cterm=NONE gui=NONE 936 | hi dtdTagName ctermfg=89 ctermbg=NONE guifg=#6c3163 guibg=NONE guisp=NONE cterm=NONE gui=NONE 937 | hi xmlAttrib ctermfg=29 ctermbg=NONE guifg=#24775c guibg=NONE guisp=NONE cterm=NONE gui=NONE 938 | hi xmlProcessingDelim ctermfg=146 ctermbg=NONE guifg=#a8a8bf guibg=NONE guisp=NONE cterm=NONE gui=NONE 939 | hi dtdParamEntityPunct ctermfg=146 ctermbg=NONE guifg=#a8a8bf guibg=NONE guisp=NONE cterm=NONE gui=NONE 940 | hi dtdParamEntityDPunct ctermfg=146 ctermbg=NONE guifg=#a8a8bf guibg=NONE guisp=NONE cterm=NONE gui=NONE 941 | hi xmlAttribPunct ctermfg=146 ctermbg=NONE guifg=#a8a8bf guibg=NONE guisp=NONE cterm=NONE gui=NONE 942 | hi xmlEntity ctermfg=166 ctermbg=NONE guifg=#b46843 guibg=NONE guisp=NONE cterm=NONE gui=NONE 943 | hi xmlEntityPunct ctermfg=166 ctermbg=NONE guifg=#b46843 guibg=NONE guisp=NONE cterm=NONE gui=NONE 944 | hi vimCommentTitle ctermfg=61 ctermbg=NONE guifg=#715ab1 guibg=NONE guisp=NONE cterm=NONE,bold gui=NONE,bold 945 | hi vimNotation ctermfg=166 ctermbg=NONE guifg=#b46843 guibg=NONE guisp=NONE cterm=NONE gui=NONE 946 | hi vimBracket ctermfg=166 ctermbg=NONE guifg=#b46843 guibg=NONE guisp=NONE cterm=NONE gui=NONE 947 | hi vimMapModKey ctermfg=166 ctermbg=NONE guifg=#b46843 guibg=NONE guisp=NONE cterm=NONE gui=NONE 948 | hi vimCommand ctermfg=32 ctermbg=NONE guifg=#3a81c3 guibg=NONE guisp=NONE cterm=NONE,bold gui=NONE,bold 949 | hi vimLet ctermfg=32 ctermbg=NONE guifg=#3a81c3 guibg=NONE guisp=NONE cterm=NONE gui=NONE 950 | hi vimNorm ctermfg=32 ctermbg=NONE guifg=#3a81c3 guibg=NONE guisp=NONE cterm=NONE gui=NONE 951 | hi! link vimFuncSID Function 952 | hi! link vimFunction Function 953 | hi vimGroup ctermfg=61 ctermbg=NONE guifg=#715ab1 guibg=NONE guisp=NONE cterm=NONE gui=NONE 954 | hi! link vimHiGroup Type 955 | hi vimSetSep ctermfg=60 ctermbg=NONE guifg=#504259 guibg=NONE guisp=NONE cterm=NONE gui=NONE 956 | hi vimSep ctermfg=60 ctermbg=NONE guifg=#504259 guibg=NONE guisp=NONE cterm=NONE gui=NONE 957 | hi vimContinue ctermfg=136 ctermbg=NONE guifg=#b1951d guibg=NONE guisp=NONE cterm=NONE gui=NONE 958 | hi clojureKeyword ctermfg=32 ctermbg=NONE guifg=#3a81c3 guibg=NONE guisp=NONE cterm=NONE gui=NONE 959 | hi clojureCond ctermfg=166 ctermbg=NONE guifg=#b46843 guibg=NONE guisp=NONE cterm=NONE gui=NONE 960 | hi clojureSpecial ctermfg=166 ctermbg=NONE guifg=#b46843 guibg=NONE guisp=NONE cterm=NONE gui=NONE 961 | hi clojureDefine ctermfg=166 ctermbg=NONE guifg=#b46843 guibg=NONE guisp=NONE cterm=NONE gui=NONE 962 | hi clojureFunc ctermfg=136 ctermbg=NONE guifg=#b1951d guibg=NONE guisp=NONE cterm=NONE gui=NONE 963 | hi clojureRepeat ctermfg=136 ctermbg=NONE guifg=#b1951d guibg=NONE guisp=NONE cterm=NONE gui=NONE 964 | hi clojureCharacter ctermfg=29 ctermbg=NONE guifg=#24775c guibg=NONE guisp=NONE cterm=NONE gui=NONE 965 | hi clojureStringEscape ctermfg=29 ctermbg=NONE guifg=#24775c guibg=NONE guisp=NONE cterm=NONE gui=NONE 966 | hi clojureException ctermfg=196 ctermbg=NONE guifg=#f2241f guibg=NONE guisp=NONE cterm=NONE gui=NONE 967 | hi clojureRegexp ctermfg=29 ctermbg=NONE guifg=#24775c guibg=NONE guisp=NONE cterm=NONE gui=NONE 968 | hi clojureRegexpEscape ctermfg=29 ctermbg=NONE guifg=#24775c guibg=NONE guisp=NONE cterm=NONE gui=NONE 969 | hi clojureRegexpCharClass ctermfg=60 ctermbg=NONE guifg=#504259 guibg=NONE guisp=NONE cterm=NONE,bold gui=NONE,bold 970 | hi! link clojureRegexpMod clojureRegexpCharClass 971 | hi! link clojureRegexpQuantifier clojureRegexpCharClass 972 | hi clojureParen ctermfg=60 ctermbg=NONE guifg=#504259 guibg=NONE guisp=NONE cterm=NONE gui=NONE 973 | hi clojureAnonArg ctermfg=136 ctermbg=NONE guifg=#b1951d guibg=NONE guisp=NONE cterm=NONE gui=NONE 974 | hi clojureVariable ctermfg=32 ctermbg=NONE guifg=#3a81c3 guibg=NONE guisp=NONE cterm=NONE gui=NONE 975 | hi clojureMacro ctermfg=166 ctermbg=NONE guifg=#b46843 guibg=NONE guisp=NONE cterm=NONE gui=NONE 976 | hi clojureMeta ctermfg=136 ctermbg=NONE guifg=#b1951d guibg=NONE guisp=NONE cterm=NONE gui=NONE 977 | hi clojureDeref ctermfg=136 ctermbg=NONE guifg=#b1951d guibg=NONE guisp=NONE cterm=NONE gui=NONE 978 | hi clojureQuote ctermfg=136 ctermbg=NONE guifg=#b1951d guibg=NONE guisp=NONE cterm=NONE gui=NONE 979 | hi clojureUnquote ctermfg=136 ctermbg=NONE guifg=#b1951d guibg=NONE guisp=NONE cterm=NONE gui=NONE 980 | hi cOperator ctermfg=89 ctermbg=NONE guifg=#6c3163 guibg=NONE guisp=NONE cterm=NONE gui=NONE 981 | hi cStructure ctermfg=166 ctermbg=NONE guifg=#b46843 guibg=NONE guisp=NONE cterm=NONE gui=NONE 982 | hi rustSelf ctermfg=32 ctermbg=NONE guifg=#3a81c3 guibg=NONE guisp=NONE cterm=NONE,bold gui=NONE,bold 983 | hi rustPanic ctermfg=161 ctermbg=NONE guifg=#ba2f59 guibg=NONE guisp=NONE cterm=NONE,bold gui=NONE,bold 984 | hi rustAssert ctermfg=61 ctermbg=NONE guifg=#715ab1 guibg=NONE guisp=NONE cterm=NONE,bold gui=NONE,bold 985 | hi! link pythonCoding Comment 986 | hi cssBraces ctermfg=32 ctermbg=NONE guifg=#3a81c3 guibg=NONE guisp=NONE cterm=NONE gui=NONE 987 | hi cssFunctionName ctermfg=136 ctermbg=NONE guifg=#b1951d guibg=NONE guisp=NONE cterm=NONE gui=NONE 988 | hi cssIdentifier ctermfg=166 ctermbg=NONE guifg=#b46843 guibg=NONE guisp=NONE cterm=NONE gui=NONE 989 | hi cssClassName ctermfg=70 ctermbg=NONE guifg=#67b11d guibg=NONE guisp=NONE cterm=NONE gui=NONE 990 | hi cssColor ctermfg=32 ctermbg=NONE guifg=#3a81c3 guibg=NONE guisp=NONE cterm=NONE gui=NONE 991 | hi cssSelectorOp ctermfg=32 ctermbg=NONE guifg=#3a81c3 guibg=NONE guisp=NONE cterm=NONE gui=NONE 992 | hi cssSelectorOp2 ctermfg=32 ctermbg=NONE guifg=#3a81c3 guibg=NONE guisp=NONE cterm=NONE gui=NONE 993 | hi cssImportant ctermfg=70 ctermbg=NONE guifg=#67b11d guibg=NONE guisp=NONE cterm=NONE gui=NONE 994 | hi cssVendor ctermfg=60 ctermbg=NONE guifg=#655370 guibg=NONE guisp=NONE cterm=NONE gui=NONE 995 | hi cssTextProp ctermfg=29 ctermbg=NONE guifg=#24775c guibg=NONE guisp=NONE cterm=NONE gui=NONE 996 | hi cssAnimationProp ctermfg=29 ctermbg=NONE guifg=#24775c guibg=NONE guisp=NONE cterm=NONE gui=NONE 997 | hi cssUIProp ctermfg=136 ctermbg=NONE guifg=#b1951d guibg=NONE guisp=NONE cterm=NONE gui=NONE 998 | hi cssTransformProp ctermfg=29 ctermbg=NONE guifg=#24775c guibg=NONE guisp=NONE cterm=NONE gui=NONE 999 | hi cssTransitionProp ctermfg=29 ctermbg=NONE guifg=#24775c guibg=NONE guisp=NONE cterm=NONE gui=NONE 1000 | hi cssPrintProp ctermfg=29 ctermbg=NONE guifg=#24775c guibg=NONE guisp=NONE cterm=NONE gui=NONE 1001 | hi cssPositioningProp ctermfg=136 ctermbg=NONE guifg=#b1951d guibg=NONE guisp=NONE cterm=NONE gui=NONE 1002 | hi cssBoxProp ctermfg=29 ctermbg=NONE guifg=#24775c guibg=NONE guisp=NONE cterm=NONE gui=NONE 1003 | hi cssFontDescriptorProp ctermfg=29 ctermbg=NONE guifg=#24775c guibg=NONE guisp=NONE cterm=NONE gui=NONE 1004 | hi cssFlexibleBoxProp ctermfg=29 ctermbg=NONE guifg=#24775c guibg=NONE guisp=NONE cterm=NONE gui=NONE 1005 | hi cssBorderOutlineProp ctermfg=29 ctermbg=NONE guifg=#24775c guibg=NONE guisp=NONE cterm=NONE gui=NONE 1006 | hi cssBackgroundProp ctermfg=29 ctermbg=NONE guifg=#24775c guibg=NONE guisp=NONE cterm=NONE gui=NONE 1007 | hi cssMarginProp ctermfg=29 ctermbg=NONE guifg=#24775c guibg=NONE guisp=NONE cterm=NONE gui=NONE 1008 | hi cssListProp ctermfg=29 ctermbg=NONE guifg=#24775c guibg=NONE guisp=NONE cterm=NONE gui=NONE 1009 | hi cssTableProp ctermfg=29 ctermbg=NONE guifg=#24775c guibg=NONE guisp=NONE cterm=NONE gui=NONE 1010 | hi cssFontProp ctermfg=29 ctermbg=NONE guifg=#24775c guibg=NONE guisp=NONE cterm=NONE gui=NONE 1011 | hi cssPaddingProp ctermfg=29 ctermbg=NONE guifg=#24775c guibg=NONE guisp=NONE cterm=NONE gui=NONE 1012 | hi cssDimensionProp ctermfg=29 ctermbg=NONE guifg=#24775c guibg=NONE guisp=NONE cterm=NONE gui=NONE 1013 | hi cssRenderProp ctermfg=29 ctermbg=NONE guifg=#24775c guibg=NONE guisp=NONE cterm=NONE gui=NONE 1014 | hi cssColorProp ctermfg=29 ctermbg=NONE guifg=#24775c guibg=NONE guisp=NONE cterm=NONE gui=NONE 1015 | hi cssGeneratedContentProp ctermfg=29 ctermbg=NONE guifg=#24775c guibg=NONE guisp=NONE cterm=NONE gui=NONE 1016 | hi javaScriptBraces ctermfg=60 ctermbg=NONE guifg=#655370 guibg=NONE guisp=NONE cterm=NONE gui=NONE 1017 | hi javaScriptFunction ctermfg=29 ctermbg=NONE guifg=#24775c guibg=NONE guisp=NONE cterm=NONE gui=NONE 1018 | hi javaScriptIdentifier ctermfg=196 ctermbg=NONE guifg=#f2241f guibg=NONE guisp=NONE cterm=NONE gui=NONE 1019 | hi javaScriptMember ctermfg=32 ctermbg=NONE guifg=#3a81c3 guibg=NONE guisp=NONE cterm=NONE gui=NONE 1020 | hi javaScriptNumber ctermfg=89 ctermbg=NONE guifg=#6c3163 guibg=NONE guisp=NONE cterm=NONE gui=NONE 1021 | hi javaScriptNull ctermfg=89 ctermbg=NONE guifg=#6c3163 guibg=NONE guisp=NONE cterm=NONE gui=NONE 1022 | hi javaScriptParens ctermfg=60 ctermbg=NONE guifg=#504259 guibg=NONE guisp=NONE cterm=NONE gui=NONE 1023 | hi javascriptImport ctermfg=29 ctermbg=NONE guifg=#24775c guibg=NONE guisp=NONE cterm=NONE gui=NONE 1024 | hi javascriptExport ctermfg=29 ctermbg=NONE guifg=#24775c guibg=NONE guisp=NONE cterm=NONE gui=NONE 1025 | hi javascriptClassKeyword ctermfg=29 ctermbg=NONE guifg=#24775c guibg=NONE guisp=NONE cterm=NONE gui=NONE 1026 | hi javascriptClassExtends ctermfg=29 ctermbg=NONE guifg=#24775c guibg=NONE guisp=NONE cterm=NONE gui=NONE 1027 | hi javascriptDefault ctermfg=29 ctermbg=NONE guifg=#24775c guibg=NONE guisp=NONE cterm=NONE gui=NONE 1028 | hi javascriptClassName ctermfg=136 ctermbg=NONE guifg=#b1951d guibg=NONE guisp=NONE cterm=NONE gui=NONE 1029 | hi javascriptClassSuperName ctermfg=136 ctermbg=NONE guifg=#b1951d guibg=NONE guisp=NONE cterm=NONE gui=NONE 1030 | hi javascriptGlobal ctermfg=136 ctermbg=NONE guifg=#b1951d guibg=NONE guisp=NONE cterm=NONE gui=NONE 1031 | hi javascriptEndColons ctermfg=60 ctermbg=NONE guifg=#655370 guibg=NONE guisp=NONE cterm=NONE gui=NONE 1032 | hi javascriptFuncArg ctermfg=60 ctermbg=NONE guifg=#655370 guibg=NONE guisp=NONE cterm=NONE gui=NONE 1033 | hi javascriptGlobalMethod ctermfg=60 ctermbg=NONE guifg=#655370 guibg=NONE guisp=NONE cterm=NONE gui=NONE 1034 | hi javascriptNodeGlobal ctermfg=60 ctermbg=NONE guifg=#655370 guibg=NONE guisp=NONE cterm=NONE gui=NONE 1035 | hi javascriptBOMWindowProp ctermfg=60 ctermbg=NONE guifg=#655370 guibg=NONE guisp=NONE cterm=NONE gui=NONE 1036 | hi javascriptArrayMethod ctermfg=60 ctermbg=NONE guifg=#655370 guibg=NONE guisp=NONE cterm=NONE gui=NONE 1037 | hi javascriptArrayStaticMethod ctermfg=60 ctermbg=NONE guifg=#655370 guibg=NONE guisp=NONE cterm=NONE gui=NONE 1038 | hi javascriptCacheMethod ctermfg=60 ctermbg=NONE guifg=#655370 guibg=NONE guisp=NONE cterm=NONE gui=NONE 1039 | hi javascriptDateMethod ctermfg=60 ctermbg=NONE guifg=#655370 guibg=NONE guisp=NONE cterm=NONE gui=NONE 1040 | hi javascriptMathStaticMethod ctermfg=60 ctermbg=NONE guifg=#655370 guibg=NONE guisp=NONE cterm=NONE gui=NONE 1041 | hi javascriptURLUtilsProp ctermfg=60 ctermbg=NONE guifg=#655370 guibg=NONE guisp=NONE cterm=NONE gui=NONE 1042 | hi javascriptBOMNavigatorProp ctermfg=60 ctermbg=NONE guifg=#655370 guibg=NONE guisp=NONE cterm=NONE gui=NONE 1043 | hi javascriptDOMDocMethod ctermfg=60 ctermbg=NONE guifg=#655370 guibg=NONE guisp=NONE cterm=NONE gui=NONE 1044 | hi javascriptDOMDocProp ctermfg=60 ctermbg=NONE guifg=#655370 guibg=NONE guisp=NONE cterm=NONE gui=NONE 1045 | hi javascriptBOMLocationMethod ctermfg=60 ctermbg=NONE guifg=#655370 guibg=NONE guisp=NONE cterm=NONE gui=NONE 1046 | hi javascriptBOMWindowMethod ctermfg=60 ctermbg=NONE guifg=#655370 guibg=NONE guisp=NONE cterm=NONE gui=NONE 1047 | hi javascriptStringMethod ctermfg=60 ctermbg=NONE guifg=#655370 guibg=NONE guisp=NONE cterm=NONE gui=NONE 1048 | hi javascriptVariable ctermfg=166 ctermbg=NONE guifg=#b46843 guibg=NONE guisp=NONE cterm=NONE gui=NONE 1049 | hi javascriptIdentifier ctermfg=166 ctermbg=NONE guifg=#b46843 guibg=NONE guisp=NONE cterm=NONE gui=NONE 1050 | hi javascriptClassSuper ctermfg=166 ctermbg=NONE guifg=#b46843 guibg=NONE guisp=NONE cterm=NONE gui=NONE 1051 | hi javascriptFuncKeyword ctermfg=29 ctermbg=NONE guifg=#24775c guibg=NONE guisp=NONE cterm=NONE gui=NONE 1052 | hi javascriptAsyncFunc ctermfg=29 ctermbg=NONE guifg=#24775c guibg=NONE guisp=NONE cterm=NONE gui=NONE 1053 | hi javascriptClassStatic ctermfg=166 ctermbg=NONE guifg=#b46843 guibg=NONE guisp=NONE cterm=NONE gui=NONE 1054 | hi javascriptOperator ctermfg=161 ctermbg=NONE guifg=#ba2f59 guibg=NONE guisp=NONE cterm=NONE gui=NONE 1055 | hi javascriptForOperator ctermfg=161 ctermbg=NONE guifg=#ba2f59 guibg=NONE guisp=NONE cterm=NONE gui=NONE 1056 | hi javascriptYield ctermfg=161 ctermbg=NONE guifg=#ba2f59 guibg=NONE guisp=NONE cterm=NONE gui=NONE 1057 | hi javascriptExceptions ctermfg=161 ctermbg=NONE guifg=#ba2f59 guibg=NONE guisp=NONE cterm=NONE gui=NONE 1058 | hi javascriptMessage ctermfg=161 ctermbg=NONE guifg=#ba2f59 guibg=NONE guisp=NONE cterm=NONE gui=NONE 1059 | hi javascriptTemplateSB ctermfg=29 ctermbg=NONE guifg=#24775c guibg=NONE guisp=NONE cterm=NONE gui=NONE 1060 | hi javascriptTemplateSubstitution ctermfg=60 ctermbg=NONE guifg=#655370 guibg=NONE guisp=NONE cterm=NONE gui=NONE 1061 | hi javascriptLabel ctermfg=60 ctermbg=NONE guifg=#655370 guibg=NONE guisp=NONE cterm=NONE gui=NONE 1062 | hi javascriptObjectLabel ctermfg=60 ctermbg=NONE guifg=#655370 guibg=NONE guisp=NONE cterm=NONE gui=NONE 1063 | hi javascriptPropertyName ctermfg=60 ctermbg=NONE guifg=#655370 guibg=NONE guisp=NONE cterm=NONE gui=NONE 1064 | hi javascriptLogicSymbols ctermfg=60 ctermbg=NONE guifg=#655370 guibg=NONE guisp=NONE cterm=NONE gui=NONE 1065 | hi javascriptArrowFunc ctermfg=136 ctermbg=NONE guifg=#b1951d guibg=NONE guisp=NONE cterm=NONE gui=NONE 1066 | hi javascriptDocParamName ctermfg=237 ctermbg=NONE guifg=#463a4e guibg=NONE guisp=NONE cterm=NONE gui=NONE 1067 | hi javascriptDocTags ctermfg=237 ctermbg=NONE guifg=#463a4e guibg=NONE guisp=NONE cterm=NONE gui=NONE 1068 | hi javascriptDocNotation ctermfg=237 ctermbg=NONE guifg=#463a4e guibg=NONE guisp=NONE cterm=NONE gui=NONE 1069 | hi javascriptDocParamType ctermfg=237 ctermbg=NONE guifg=#463a4e guibg=NONE guisp=NONE cterm=NONE gui=NONE 1070 | hi javascriptDocNamedParamType ctermfg=237 ctermbg=NONE guifg=#463a4e guibg=NONE guisp=NONE cterm=NONE gui=NONE 1071 | hi javascriptBrackets ctermfg=60 ctermbg=NONE guifg=#655370 guibg=NONE guisp=NONE cterm=NONE gui=NONE 1072 | hi javascriptDOMElemAttrs ctermfg=60 ctermbg=NONE guifg=#655370 guibg=NONE guisp=NONE cterm=NONE gui=NONE 1073 | hi javascriptDOMEventMethod ctermfg=60 ctermbg=NONE guifg=#655370 guibg=NONE guisp=NONE cterm=NONE gui=NONE 1074 | hi javascriptDOMNodeMethod ctermfg=60 ctermbg=NONE guifg=#655370 guibg=NONE guisp=NONE cterm=NONE gui=NONE 1075 | hi javascriptDOMStorageMethod ctermfg=60 ctermbg=NONE guifg=#655370 guibg=NONE guisp=NONE cterm=NONE gui=NONE 1076 | hi javascriptHeadersMethod ctermfg=60 ctermbg=NONE guifg=#655370 guibg=NONE guisp=NONE cterm=NONE gui=NONE 1077 | hi javascriptAsyncFuncKeyword ctermfg=161 ctermbg=NONE guifg=#ba2f59 guibg=NONE guisp=NONE cterm=NONE,bold gui=NONE,bold 1078 | hi javascriptAwaitFuncKeyword ctermfg=161 ctermbg=NONE guifg=#ba2f59 guibg=NONE guisp=NONE cterm=NONE,bold gui=NONE,bold 1079 | hi! link jsClassKeyword Keyword 1080 | hi! link jsExtendsKeyword Keyword 1081 | hi jsExportDefault ctermfg=32 ctermbg=NONE guifg=#3a81c3 guibg=NONE guisp=NONE cterm=NONE,bold gui=NONE,bold 1082 | hi jsTemplateBraces ctermfg=29 ctermbg=NONE guifg=#24775c guibg=NONE guisp=NONE cterm=NONE gui=NONE 1083 | hi! link jsGlobalNodeObjects Keyword 1084 | hi! link jsGlobalObjects Keyword 1085 | hi! link jsFunction Function 1086 | hi jsFuncParens ctermfg=166 ctermbg=NONE guifg=#b46843 guibg=NONE guisp=NONE cterm=NONE gui=NONE 1087 | hi jsParens ctermfg=161 ctermbg=NONE guifg=#ba2f59 guibg=NONE guisp=NONE cterm=NONE gui=NONE 1088 | hi jsNull ctermfg=89 ctermbg=NONE guifg=#6c3163 guibg=NONE guisp=NONE cterm=NONE gui=NONE 1089 | hi! link jsUndefined ErrorMsg 1090 | hi jsClassDefinition ctermfg=136 ctermbg=NONE guifg=#b1951d guibg=NONE guisp=NONE cterm=NONE gui=NONE 1091 | hi! link jsObjectProp Identifier 1092 | hi jsObjectKey ctermfg=74 ctermbg=NONE guifg=#58b0d9 guibg=NONE guisp=NONE cterm=NONE gui=NONE 1093 | hi jsFunctionKey ctermfg=61 ctermbg=NONE guifg=#715ab1 guibg=NONE guisp=NONE cterm=NONE gui=NONE 1094 | hi jsBracket ctermfg=161 ctermbg=NONE guifg=#ba2f59 guibg=NONE guisp=NONE cterm=NONE gui=NONE 1095 | hi jsObjectColon ctermfg=161 ctermbg=NONE guifg=#ba2f59 guibg=NONE guisp=NONE cterm=NONE gui=NONE 1096 | hi jsFuncArgs ctermfg=74 ctermbg=NONE guifg=#58b0d9 guibg=NONE guisp=NONE cterm=NONE gui=NONE 1097 | hi jsFuncBraces ctermfg=61 ctermbg=NONE guifg=#715ab1 guibg=NONE guisp=NONE cterm=NONE gui=NONE 1098 | hi jsVariableDef ctermfg=60 ctermbg=NONE guifg=#655370 guibg=NONE guisp=NONE cterm=NONE gui=NONE 1099 | hi! link jsObjectBraces Special 1100 | hi jsObjectValue ctermfg=147 ctermbg=NONE guifg=#b7b7ff guibg=NONE guisp=NONE cterm=NONE gui=NONE 1101 | hi jsClassBlock ctermfg=61 ctermbg=NONE guifg=#715ab1 guibg=NONE guisp=NONE cterm=NONE gui=NONE 1102 | hi jsFutureKeys ctermfg=166 ctermbg=NONE guifg=#b46843 guibg=NONE guisp=NONE cterm=NONE,bold gui=NONE,bold 1103 | hi jsFuncArgs ctermfg=32 ctermbg=NONE guifg=#3a81c3 guibg=NONE guisp=NONE cterm=NONE gui=NONE 1104 | hi jsStorageClass ctermfg=32 ctermbg=NONE guifg=#3a81c3 guibg=NONE guisp=NONE cterm=NONE gui=NONE 1105 | hi jsxRegion ctermfg=32 ctermbg=NONE guifg=#3a81c3 guibg=NONE guisp=NONE cterm=NONE gui=NONE 1106 | hi typeScriptReserved ctermfg=29 ctermbg=NONE guifg=#24775c guibg=NONE guisp=NONE cterm=NONE gui=NONE 1107 | hi! link typeScriptLabel Label 1108 | hi! link typeScriptFuncKeyword Function 1109 | hi! link typeScriptIdentifier Identifier 1110 | hi typeScriptBraces ctermfg=161 ctermbg=NONE guifg=#ba2f59 guibg=NONE guisp=NONE cterm=NONE gui=NONE 1111 | hi typeScriptEndColons ctermfg=60 ctermbg=NONE guifg=#655370 guibg=NONE guisp=NONE cterm=NONE gui=NONE 1112 | hi typeScriptDOMObjects ctermfg=60 ctermbg=NONE guifg=#655370 guibg=NONE guisp=NONE cterm=NONE gui=NONE 1113 | hi! link typeScriptAjaxMethods Function 1114 | hi typeScriptLogicSymbols ctermfg=60 ctermbg=NONE guifg=#655370 guibg=NONE guisp=NONE cterm=NONE gui=NONE 1115 | hi! link typeScriptDocSeeTag Comment 1116 | hi! link typeScriptDocParam Comment 1117 | hi! link typeScriptDocTags vimCommentTitle 1118 | hi! link typeScriptGlobalObjects Keyword 1119 | hi typeScriptParens ctermfg=61 ctermbg=NONE guifg=#715ab1 guibg=NONE guisp=NONE cterm=NONE gui=NONE 1120 | hi! link typeScriptOpSymbols Operator 1121 | hi! link typeScriptHtmlElemProperties Special 1122 | hi typeScriptNull ctermfg=89 ctermbg=NONE guifg=#6c3163 guibg=NONE guisp=NONE cterm=NONE,bold gui=NONE,bold 1123 | hi typeScriptInterpolationDelimiter ctermfg=29 ctermbg=NONE guifg=#24775c guibg=NONE guisp=NONE cterm=NONE gui=NONE 1124 | hi purescriptModuleKeyword ctermfg=29 ctermbg=NONE guifg=#24775c guibg=NONE guisp=NONE cterm=NONE gui=NONE 1125 | hi purescriptModuleName ctermfg=161 ctermbg=NONE guifg=#ba2f59 guibg=NONE guisp=NONE cterm=NONE,bold gui=NONE,bold 1126 | hi purescriptWhere ctermfg=29 ctermbg=NONE guifg=#24775c guibg=NONE guisp=NONE cterm=NONE gui=NONE 1127 | hi purescriptDelimiter ctermfg=237 ctermbg=NONE guifg=#463a4e guibg=NONE guisp=NONE cterm=NONE gui=NONE 1128 | hi! link purescriptType Type 1129 | hi! link purescriptImportKeyword Keyword 1130 | hi! link purescriptHidingKeyword Keyword 1131 | hi! link purescriptAsKeyword Keyword 1132 | hi! link purescriptStructure Structure 1133 | hi! link purescriptOperator Operator 1134 | hi! link purescriptTypeVar Type 1135 | hi! link purescriptConstructor Function 1136 | hi! link purescriptFunction Function 1137 | hi! link purescriptConditional Conditional 1138 | hi purescriptBacktick ctermfg=166 ctermbg=NONE guifg=#b46843 guibg=NONE guisp=NONE cterm=NONE gui=NONE 1139 | hi coffeeExtendedOp ctermfg=60 ctermbg=NONE guifg=#504259 guibg=NONE guisp=NONE cterm=NONE gui=NONE 1140 | hi coffeeSpecialOp ctermfg=60 ctermbg=NONE guifg=#504259 guibg=NONE guisp=NONE cterm=NONE gui=NONE 1141 | hi coffeeCurly ctermfg=166 ctermbg=NONE guifg=#b46843 guibg=NONE guisp=NONE cterm=NONE gui=NONE 1142 | hi coffeeParen ctermfg=60 ctermbg=NONE guifg=#504259 guibg=NONE guisp=NONE cterm=NONE gui=NONE 1143 | hi coffeeBracket ctermfg=166 ctermbg=NONE guifg=#b46843 guibg=NONE guisp=NONE cterm=NONE gui=NONE 1144 | hi rubyStringDelimiter ctermfg=70 ctermbg=NONE guifg=#67b11d guibg=NONE guisp=NONE cterm=NONE gui=NONE 1145 | hi rubyInterpolationDelimiter ctermfg=29 ctermbg=NONE guifg=#24775c guibg=NONE guisp=NONE cterm=NONE gui=NONE 1146 | hi objcTypeModifier ctermfg=196 ctermbg=NONE guifg=#f2241f guibg=NONE guisp=NONE cterm=NONE gui=NONE 1147 | hi objcDirective ctermfg=32 ctermbg=NONE guifg=#3a81c3 guibg=NONE guisp=NONE cterm=NONE gui=NONE 1148 | hi goDirective ctermfg=29 ctermbg=NONE guifg=#24775c guibg=NONE guisp=NONE cterm=NONE gui=NONE 1149 | hi goConstants ctermfg=89 ctermbg=NONE guifg=#6c3163 guibg=NONE guisp=NONE cterm=NONE gui=NONE 1150 | hi! link goDeclaration Keyword 1151 | hi goDeclType ctermfg=32 ctermbg=NONE guifg=#3a81c3 guibg=NONE guisp=NONE cterm=NONE gui=NONE 1152 | hi goBuiltins ctermfg=166 ctermbg=NONE guifg=#b46843 guibg=NONE guisp=NONE cterm=NONE gui=NONE 1153 | hi luaIn ctermfg=161 ctermbg=NONE guifg=#ba2f59 guibg=NONE guisp=NONE cterm=NONE gui=NONE 1154 | hi luaFunction ctermfg=29 ctermbg=NONE guifg=#24775c guibg=NONE guisp=NONE cterm=NONE gui=NONE 1155 | hi luaTable ctermfg=166 ctermbg=NONE guifg=#b46843 guibg=NONE guisp=NONE cterm=NONE gui=NONE 1156 | hi moonSpecialOp ctermfg=60 ctermbg=NONE guifg=#504259 guibg=NONE guisp=NONE cterm=NONE gui=NONE 1157 | hi moonExtendedOp ctermfg=60 ctermbg=NONE guifg=#504259 guibg=NONE guisp=NONE cterm=NONE gui=NONE 1158 | hi moonFunction ctermfg=60 ctermbg=NONE guifg=#504259 guibg=NONE guisp=NONE cterm=NONE gui=NONE 1159 | hi moonObject ctermfg=136 ctermbg=NONE guifg=#b1951d guibg=NONE guisp=NONE cterm=NONE gui=NONE 1160 | hi javaAnnotation ctermfg=32 ctermbg=NONE guifg=#3a81c3 guibg=NONE guisp=NONE cterm=NONE gui=NONE 1161 | hi javaDocTags ctermfg=29 ctermbg=NONE guifg=#24775c guibg=NONE guisp=NONE cterm=NONE gui=NONE 1162 | hi! link javaCommentTitle vimCommentTitle 1163 | hi javaParen ctermfg=60 ctermbg=NONE guifg=#504259 guibg=NONE guisp=NONE cterm=NONE gui=NONE 1164 | hi javaParen1 ctermfg=60 ctermbg=NONE guifg=#504259 guibg=NONE guisp=NONE cterm=NONE gui=NONE 1165 | hi javaParen2 ctermfg=60 ctermbg=NONE guifg=#504259 guibg=NONE guisp=NONE cterm=NONE gui=NONE 1166 | hi javaParen3 ctermfg=60 ctermbg=NONE guifg=#504259 guibg=NONE guisp=NONE cterm=NONE gui=NONE 1167 | hi javaParen4 ctermfg=60 ctermbg=NONE guifg=#504259 guibg=NONE guisp=NONE cterm=NONE gui=NONE 1168 | hi javaParen5 ctermfg=60 ctermbg=NONE guifg=#504259 guibg=NONE guisp=NONE cterm=NONE gui=NONE 1169 | hi javaOperator ctermfg=166 ctermbg=NONE guifg=#b46843 guibg=NONE guisp=NONE cterm=NONE gui=NONE 1170 | hi javaVarArg ctermfg=70 ctermbg=NONE guifg=#67b11d guibg=NONE guisp=NONE cterm=NONE gui=NONE 1171 | hi! link elixirDocString Comment 1172 | hi elixirStringDelimiter ctermfg=70 ctermbg=NONE guifg=#67b11d guibg=NONE guisp=NONE cterm=NONE gui=NONE 1173 | hi elixirInterpolationDelimiter ctermfg=29 ctermbg=NONE guifg=#24775c guibg=NONE guisp=NONE cterm=NONE gui=NONE 1174 | hi elixirModuleDeclaration ctermfg=136 ctermbg=NONE guifg=#b1951d guibg=NONE guisp=NONE cterm=NONE gui=NONE 1175 | hi scalaNameDefinition ctermfg=60 ctermbg=NONE guifg=#655370 guibg=NONE guisp=NONE cterm=NONE gui=NONE 1176 | hi scalaCaseFollowing ctermfg=60 ctermbg=NONE guifg=#655370 guibg=NONE guisp=NONE cterm=NONE gui=NONE 1177 | hi scalaCapitalWord ctermfg=60 ctermbg=NONE guifg=#655370 guibg=NONE guisp=NONE cterm=NONE gui=NONE 1178 | hi scalaTypeExtension ctermfg=60 ctermbg=NONE guifg=#655370 guibg=NONE guisp=NONE cterm=NONE gui=NONE 1179 | hi scalaKeyword ctermfg=161 ctermbg=NONE guifg=#ba2f59 guibg=NONE guisp=NONE cterm=NONE,bold gui=NONE,bold 1180 | hi scalaKeywordModifier ctermfg=161 ctermbg=NONE guifg=#ba2f59 guibg=NONE guisp=NONE cterm=NONE gui=NONE 1181 | hi scalaSpecial ctermfg=29 ctermbg=NONE guifg=#24775c guibg=NONE guisp=NONE cterm=NONE gui=NONE 1182 | hi scalaOperator ctermfg=60 ctermbg=NONE guifg=#655370 guibg=NONE guisp=NONE cterm=NONE gui=NONE 1183 | hi scalaTypeDeclaration ctermfg=136 ctermbg=NONE guifg=#b1951d guibg=NONE guisp=NONE cterm=NONE gui=NONE 1184 | hi scalaTypeTypePostDeclaration ctermfg=136 ctermbg=NONE guifg=#b1951d guibg=NONE guisp=NONE cterm=NONE gui=NONE 1185 | hi scalaInstanceDeclaration ctermfg=60 ctermbg=NONE guifg=#655370 guibg=NONE guisp=NONE cterm=NONE gui=NONE 1186 | hi scalaInterpolation ctermfg=29 ctermbg=NONE guifg=#24775c guibg=NONE guisp=NONE cterm=NONE gui=NONE 1187 | hi markdownItalic ctermfg=60 ctermbg=NONE guifg=#504259 guibg=NONE guisp=NONE cterm=NONE,italic gui=NONE,italic 1188 | hi markdownH1 ctermfg=32 ctermbg=NONE guifg=#3a81c3 guibg=NONE guisp=NONE cterm=NONE,bold gui=NONE,bold 1189 | hi markdownH2 ctermfg=29 ctermbg=NONE guifg=#24775c guibg=NONE guisp=NONE cterm=NONE,bold gui=NONE,bold 1190 | hi markdownH3 ctermfg=70 ctermbg=NONE guifg=#67b11d guibg=NONE guisp=NONE cterm=NONE,bold gui=NONE,bold 1191 | hi markdownH4 ctermfg=136 ctermbg=NONE guifg=#b1951d guibg=NONE guisp=NONE cterm=NONE,bold gui=NONE,bold 1192 | hi markdownH5 ctermfg=136 ctermbg=NONE guifg=#b1951d guibg=NONE guisp=NONE cterm=NONE gui=NONE 1193 | hi markdownH6 ctermfg=136 ctermbg=NONE guifg=#b1951d guibg=NONE guisp=NONE cterm=NONE gui=NONE 1194 | hi! link htmlH1 markdownH1 1195 | hi! link htmlH2 markdownH2 1196 | hi! link htmlH3 markdownH3 1197 | hi! link htmlH4 markdownH4 1198 | hi! link htmlH5 markdownH5 1199 | hi! link htmlH6 markdownH6 1200 | hi markdownCode ctermfg=53 ctermbg=NONE guifg=#4e3163 guibg=NONE guisp=NONE cterm=NONE gui=NONE 1201 | hi! link mkdCode markdownCode 1202 | hi markdownCodeBlock ctermfg=29 ctermbg=NONE guifg=#24775c guibg=NONE guisp=NONE cterm=NONE gui=NONE 1203 | hi markdownCodeDelimiter ctermfg=166 ctermbg=NONE guifg=#b46843 guibg=NONE guisp=NONE cterm=NONE gui=NONE 1204 | hi! link mkdCodeDelimiter markdownCodeDelimiter 1205 | hi markdownBlockquote ctermfg=146 ctermbg=NONE guifg=#a8a8bf guibg=NONE guisp=NONE cterm=NONE gui=NONE 1206 | hi markdownListMarker ctermfg=146 ctermbg=NONE guifg=#a8a8bf guibg=NONE guisp=NONE cterm=NONE gui=NONE 1207 | hi markdownOrderedListMarker ctermfg=146 ctermbg=NONE guifg=#a8a8bf guibg=NONE guisp=NONE cterm=NONE gui=NONE 1208 | hi markdownRule ctermfg=146 ctermbg=NONE guifg=#a8a8bf guibg=NONE guisp=NONE cterm=NONE gui=NONE 1209 | hi markdownHeadingRule ctermfg=146 ctermbg=NONE guifg=#a8a8bf guibg=NONE guisp=NONE cterm=NONE gui=NONE 1210 | hi markdownUrlDelimiter ctermfg=60 ctermbg=NONE guifg=#504259 guibg=NONE guisp=NONE cterm=NONE gui=NONE 1211 | hi markdownLinkDelimiter ctermfg=60 ctermbg=NONE guifg=#504259 guibg=NONE guisp=NONE cterm=NONE gui=NONE 1212 | hi markdownLinkTextDelimiter ctermfg=60 ctermbg=NONE guifg=#504259 guibg=NONE guisp=NONE cterm=NONE gui=NONE 1213 | hi markdownHeadingDelimiter ctermfg=166 ctermbg=NONE guifg=#b46843 guibg=NONE guisp=NONE cterm=NONE gui=NONE 1214 | hi markdownUrl ctermfg=89 ctermbg=NONE guifg=#6c3163 guibg=NONE guisp=NONE cterm=NONE gui=NONE 1215 | hi markdownUrlTitleDelimiter ctermfg=70 ctermbg=NONE guifg=#67b11d guibg=NONE guisp=NONE cterm=NONE gui=NONE 1216 | hi! link markdownLinkText htmlLink 1217 | hi! link markdownIdDeclaration markdownLinkText 1218 | hi haskellType ctermfg=60 ctermbg=NONE guifg=#655370 guibg=NONE guisp=NONE cterm=NONE gui=NONE 1219 | hi haskellIdentifier ctermfg=60 ctermbg=NONE guifg=#655370 guibg=NONE guisp=NONE cterm=NONE gui=NONE 1220 | hi haskellSeparator ctermfg=60 ctermbg=NONE guifg=#655370 guibg=NONE guisp=NONE cterm=NONE gui=NONE 1221 | hi haskellDelimiter ctermfg=237 ctermbg=NONE guifg=#463a4e guibg=NONE guisp=NONE cterm=NONE gui=NONE 1222 | hi haskellOperators ctermfg=32 ctermbg=NONE guifg=#3a81c3 guibg=NONE guisp=NONE cterm=NONE gui=NONE 1223 | hi haskellBacktick ctermfg=166 ctermbg=NONE guifg=#b46843 guibg=NONE guisp=NONE cterm=NONE gui=NONE 1224 | hi haskellStatement ctermfg=166 ctermbg=NONE guifg=#b46843 guibg=NONE guisp=NONE cterm=NONE gui=NONE 1225 | hi haskellConditional ctermfg=166 ctermbg=NONE guifg=#b46843 guibg=NONE guisp=NONE cterm=NONE gui=NONE 1226 | hi haskellLet ctermfg=29 ctermbg=NONE guifg=#24775c guibg=NONE guisp=NONE cterm=NONE gui=NONE 1227 | hi haskellDefault ctermfg=29 ctermbg=NONE guifg=#24775c guibg=NONE guisp=NONE cterm=NONE gui=NONE 1228 | hi haskellWhere ctermfg=29 ctermbg=NONE guifg=#24775c guibg=NONE guisp=NONE cterm=NONE gui=NONE 1229 | hi haskellBottom ctermfg=29 ctermbg=NONE guifg=#24775c guibg=NONE guisp=NONE cterm=NONE gui=NONE 1230 | hi haskellBlockKeywords ctermfg=29 ctermbg=NONE guifg=#24775c guibg=NONE guisp=NONE cterm=NONE gui=NONE 1231 | hi haskellImportKeywords ctermfg=29 ctermbg=NONE guifg=#24775c guibg=NONE guisp=NONE cterm=NONE gui=NONE 1232 | hi haskellDeclKeyword ctermfg=29 ctermbg=NONE guifg=#24775c guibg=NONE guisp=NONE cterm=NONE gui=NONE 1233 | hi haskellDeriving ctermfg=29 ctermbg=NONE guifg=#24775c guibg=NONE guisp=NONE cterm=NONE gui=NONE 1234 | hi haskellAssocType ctermfg=29 ctermbg=NONE guifg=#24775c guibg=NONE guisp=NONE cterm=NONE gui=NONE 1235 | hi haskellNumber ctermfg=89 ctermbg=NONE guifg=#6c3163 guibg=NONE guisp=NONE cterm=NONE gui=NONE 1236 | hi haskellPragma ctermfg=89 ctermbg=NONE guifg=#6c3163 guibg=NONE guisp=NONE cterm=NONE gui=NONE 1237 | hi haskellString ctermfg=70 ctermbg=NONE guifg=#67b11d guibg=NONE guisp=NONE cterm=NONE gui=NONE 1238 | hi haskellChar ctermfg=70 ctermbg=NONE guifg=#67b11d guibg=NONE guisp=NONE cterm=NONE gui=NONE 1239 | hi jsonKeyword ctermfg=70 ctermbg=NONE guifg=#67b11d guibg=NONE guisp=NONE cterm=NONE gui=NONE 1240 | hi jsonQuote ctermfg=70 ctermbg=NONE guifg=#67b11d guibg=NONE guisp=NONE cterm=NONE gui=NONE 1241 | hi jsonBraces ctermfg=60 ctermbg=NONE guifg=#655370 guibg=NONE guisp=NONE cterm=NONE gui=NONE 1242 | hi jsonString ctermfg=60 ctermbg=NONE guifg=#655370 guibg=NONE guisp=NONE cterm=NONE gui=NONE 1243 | endif 1244 | hi StatusLineNC ctermfg=189 ctermbg=255 guifg=#d3d3e7 guibg=#efeae9 guisp=NONE cterm=NONE gui=NONE 1245 | hi Visual ctermfg=NONE ctermbg=254 guifg=NONE guibg=#e3dedd guisp=NONE cterm=NONE gui=NONE 1246 | finish 1247 | 1248 | " Color: neutralred #d26487 ~ 1249 | " Color: neutralgreen #35a8a5 ~ 1250 | " Color: neutralyellow #b89f33 ~ 1251 | " Color: neutralblue #6981c5 ~ 1252 | " Color: neutralpurple #a15ea7 ~ 1253 | " Color: neutralaqua #288668 ~ 1254 | " Color: neutralorange #ca754b ~ 1255 | " Background: dark 1256 | " Color: bg0 #292b2e ~ 1257 | " Color: bg1 #212026 ~ 1258 | " Color: bg2 #100a14 ~ 1259 | " Color: bg3 #0a0814 ~ 1260 | " Color: bg4 #34323e ~ 1261 | " Color: fg0 #cdcdcd ~ 1262 | " Color: fg1 #b2b2b2 ~ 1263 | " Color: fg2 #8e8e8e ~ 1264 | " Color: fg3 #727272 ~ 1265 | " Color: fg4 #5b5b5b ~ 1266 | " Color: fg5 #9a9aba ~ 1267 | " Color: fg6 #5e5079 ~ 1268 | " Color: fg7 #666666 ~ 1269 | " Color: grey #44505c ~ 1270 | " Color: grey1 #768294 ~ 1271 | " Color: red #f2241f ~ 1272 | " Color: red1 #ce537a ~ 1273 | " Color: red2 #f54e3c ~ 1274 | " Color: green #67b11d ~ 1275 | " Color: green1 #2aa1ae ~ 1276 | " Color: blue0 #58b0d9 ~ 1277 | " Color: blue #4f97d7 ~ 1278 | " Color: blue1 #7590db ~ 1279 | " Color: purple #bc6ec5 ~ 1280 | " Color: purple0 #d698fe ~ 1281 | " Color: purple1 #a45bad ~ 1282 | " Color: purple2 #5d4d7a ~ 1283 | " Color: purple3 #544a65 ~ 1284 | " Color: purple4 #34323e ~ 1285 | " Color: aqua #2d9574 ~ 1286 | " Color: aqua1 #4495b4 ~ 1287 | " Color: orange0 #d79650 ~ 1288 | " Color: orange #e18254 ~ 1289 | " Color: yellow #b1951d ~ 1290 | " Color: yellow1 #e5d11c ~ 1291 | " Color: cyan #28def0 ~ 1292 | " Color: mat #86dc2f ~ 1293 | " Color: meta #9f8766 ~ 1294 | " Color: highlight #444155 ~ 1295 | " Color: comp #c56ec3 ~ 1296 | " Color: cblk #cbc1d5 ~ 1297 | " Color: war #dc752f ~ 1298 | " Color: float #b7b7ff ~ 1299 | " Color: delimiter #74baac ~ 1300 | " Color: debug #ffc8c8 ~ 1301 | " Color: number #e697e6 ~ 1302 | " Normal fg1 none 1303 | " CursorLineNr purple none 1304 | " FoldColumn purple none 1305 | " SignColumn fg1 none 1306 | " VertSplit bg1 none 1307 | " Normal fg1 bg0 1308 | " CursorLineNr purple bg1 1309 | " FoldColumn purple bg1 1310 | " SignColumn fg1 bg0 1311 | " VertSplit bg1 bg0 1312 | " ColorColumn none bg1 1313 | " Conceal blue none 1314 | " Cursor orange none bold,reverse 1315 | " CursorColumn -> CursorLine 1316 | " CursorLine none bg1 1317 | " DiffAdd green bg0 reverse 1318 | " DiffChange orange bg0 reverse 1319 | " DiffDelete red bg0 reverse 1320 | " DiffText yellow bg0 reverse 1321 | " Directory blue none bold 1322 | " EndOfBuffer bg0 none 1323 | " Error red bg0 bold,reverse 1324 | " ErrorMsg bg0 red 1325 | " Folded purple1 bg1 g=italic 1326 | " IncSearch orange bg0 bold,reverse 1327 | " LineNr grey none 1328 | " MatchParen green none bold,underline 1329 | " ModeMsg yellow1 none 1330 | " MoreMsg -> ModeMsg 1331 | " NonText grey none 1332 | " Pmenu fg5 purple4 1333 | " PmenuSbar none bg1 1334 | " PmenuSel none fg6 1335 | " PmenuThumb none purple2 1336 | " Question orange none bold 1337 | " QuickFixLine -> Search 1338 | " qfLineNr -> Type 1339 | " Search green bg0 bold,reverse 1340 | " SpecialKey purple none 1341 | " SpellBad red none t=underline g=italic,undercurl s=red 1342 | " SpellCap blue none t=underline g=italic,undercurl s=blue 1343 | " SpellLocal aqua none t=underline g=italic,undercurl s=aqua 1344 | " SpellRare purple none t=underline g=italic,undercurl s=purple 1345 | " StatusLine fg1 purple2 1346 | " StatusLineNC purple2 bg4 1347 | " StatusLineTerm -> StatusLine 1348 | " StatusLineTermNC -> StatusLineNC 1349 | " TabLineFill purple3 bg1 1350 | " TabLineSel green bg1 1351 | " TabLine -> TabLineFill 1352 | " Title green none bold 1353 | " Visual none purple3 1354 | " VisualNOS -> Visual 1355 | " WarningMsg red none 1356 | " WildMenu orange bg1 bold 1357 | " Boolean war none 1358 | " Character purple none 1359 | " Comment green1 none none g=italic 1360 | " Conditional blue none bold 1361 | " Constant orange none 1362 | " Define aqua none 1363 | " Debug red2 none 1364 | " Delimiter delimiter none 1365 | " Error red bg0 bold,reverse 1366 | " Exception red none 1367 | " Float float none 1368 | " Function purple none bold 1369 | " Identifier blue1 none 1370 | " Ignore fg none 1371 | " Include yellow none 1372 | " Keyword blue none bold 1373 | " Label red1 none 1374 | " Macro blue1 none bold 1375 | " Number number none 1376 | " Operator blue0 none 1377 | " PreCondit purple1 none 1378 | " PreProc purple0 none 1379 | " Repeat red1 none bold 1380 | " SpecialChar cyan none 1381 | " SpecialComment grey1 none 1382 | " Statement blue none 1383 | " StorageClass yellow none bold 1384 | " Special orange0 none 1385 | " String aqua none 1386 | " Structure aqua1 none bold 1387 | " Tag orange none 1388 | " Todo orange none t=bold g=bold,italic 1389 | " Type red1 none 1390 | " Typedef yellow none 1391 | " Underlined blue none underline 1392 | " lCursor -> Cursor 1393 | " CursorIM none none reverse 1394 | " ToolbarLine none bg3 1395 | " ToolbarButton fg0 bg3 bold 1396 | " iCursor -> Cursor 1397 | " vCursor -> Cursor 1398 | " NormalMode fg4 bg0 reverse 1399 | " InsertMode blue bg0 reverse 1400 | " ReplaceMode aqua bg0 reverse 1401 | " VisualMode orange bg0 reverse 1402 | " CommandMode purple bg0 reverse 1403 | " Warnings orange bg0 reverse 1404 | " TermCursor -> Cursor 1405 | " TermCursorNC bg1 fg1 1406 | " ALEError none none t=underline g=undercurl s=red 1407 | " ALEWarning none none t=underline g=undercurl s=red 1408 | " ALEInfo none none t=underline g=undercurl s=blue 1409 | " ALEErrorSign red none 1410 | " ALEWarningSign yellow none 1411 | " ALEInfoSign blue none 1412 | " BufTabLineCurrent bg0 fg4 1413 | " BufTabLineActive fg4 bg2 1414 | " BufTabLineHidden bg4 bg1 1415 | " BufTabLineFill bg0 bg0 1416 | " CtrlPMatch yellow none 1417 | " CtrlPNoEntries red none 1418 | " CtrlPPrtBase bg2 none 1419 | " CtrlPPrtCursor blue none 1420 | " CtrlPLinePre bg2 none 1421 | " CtrlPMode1 blue bg2 bold 1422 | " CtrlPMode2 bg0 blue bold 1423 | " CtrlPStats fg4 bg2 bold 1424 | " DirvishPathTail aqua none 1425 | " DirvishArg yellow none 1426 | " EasyMotionTarget -> Search 1427 | " EasyMotionShade -> Comment 1428 | " gitcommitSelectedFile green none 1429 | " gitcommitDiscardedFile red none 1430 | " GitGutterAdd green bg0 bold 1431 | " GitGutterChange orange bg0 bold 1432 | " GitGutterDelete red bg0 bold 1433 | " GitGutterChangeDelete red1 bg0 bold 1434 | " IndentGuidesOdd bg0 bg2 reverse 1435 | " IndentGuidesEven bg0 bg1 reverse 1436 | " IndentGuidesOdd bg0 bg2 1437 | " IndentGuidesEven bg0 bg1 1438 | " NERDTreeDir blue none bold 1439 | " NERDTreeDirSlash blue none 1440 | " NERDTreeOpenable blue none 1441 | " NERDTreeClosable blue none 1442 | " NERDTreeFile fg1 none 1443 | " NERDTreeExecFile yellow none 1444 | " NERDTreeUp red1 none 1445 | " NERDTreeCWD purple none 1446 | " NERDTreeHelp fg1 none 1447 | " NERDTreeToggleOn green none 1448 | " NERDTreeToggleOff red none 1449 | " netrwDir blue none 1450 | " netrwClassify blue none 1451 | " netrwLink grey none 1452 | " netrwSymLink fg1 none 1453 | " netrwExe yellow none 1454 | " netrwComment grey none 1455 | " netrwList blue none 1456 | " netrwHelpCmd aqua none 1457 | " netrwCmdSep fg3 none 1458 | " netrwVersion green none 1459 | " ShowMarksHLl blue bg0 bold 1460 | " ShowMarksHLu blue bg0 bold 1461 | " ShowMarksHLo blue bg0 bold 1462 | " ShowMarksHLm blue bg0 bold 1463 | " SignifySignAdd green none 1464 | " SignifySignChange orange none 1465 | " SignifySignDelete red none 1466 | " SignatureMarkText blue bg0 bold 1467 | " SignatureMarkerText purple bg0 bold 1468 | " StartifyBracket fg3 none 1469 | " StartifyFile fg1 bg0 1470 | " StartifyNumber blue none 1471 | " StartifyPath blue1 none bold 1472 | " StartifySlash blue none 1473 | " StartifySection blue none bold 1474 | " StartifySpecial -> Type 1475 | " StartifyHeader purple1 none 1476 | " StartifyFooter purple1 none 1477 | " SyntasticError none none t=underline g=undercurl s=red 1478 | " SyntasticWarning none none t=underline g=undercurl s=yellow 1479 | " SyntasticErrorSign red bg0 1480 | " SyntasticWarningSign yellow bg0 1481 | " multiple_cursors_cursor none none reverse 1482 | " multiple_cursors_visual none bg2 1483 | " CurrentWord none purple3 underline 1484 | " CurrentWordTwins none purple3 1485 | " WhichKey -> Function 1486 | " WhichKeySeperator green none 1487 | " WhichKeyGroup -> Keyword 1488 | " WhichKeyDesc -> Identifier 1489 | " diffAdded green none 1490 | " diffRemoved red none 1491 | " diffChanged aqua none 1492 | " diffFile orange none 1493 | " diffNewFile yellow none 1494 | " diffLine blue none 1495 | " htmlTag blue none 1496 | " htmlEndTag blue none 1497 | " htmlTagName purple1 none 1498 | " htmlArg aqua none 1499 | " htmlScriptTag purple none 1500 | " htmlTagN fg1 none 1501 | " htmlSpecialTagName aqua none bold 1502 | " htmlLink blue none underline 1503 | " htmlSpecialChar orange none 1504 | " htmlBold fg bg0 bold 1505 | " htmlBoldUnderline fg bg0 bold,underline 1506 | " htmlBoldItalic fg bg0 bold,italic 1507 | " htmlBoldUnderlineItalic fg bg0 bold,underline,italic 1508 | " htmlUnderline fg bg0 underline 1509 | " htmlUnderlineItalic fg bg0 underline,italic 1510 | " htmlItalic blue1 none italic 1511 | " xmlTag blue none 1512 | " xmlEndTag blue none 1513 | " xmlTagName blue none 1514 | " xmlEqual blue none 1515 | " docbkKeyword aqua none bold 1516 | " xmlDocTypeDecl grey none 1517 | " xmlDocTypeKeyword purple none 1518 | " xmlCdataStart grey none 1519 | " xmlCdataCdata purple none 1520 | " dtdFunction grey none 1521 | " dtdTagName purple none 1522 | " xmlAttrib aqua none 1523 | " xmlProcessingDelim grey none 1524 | " dtdParamEntityPunct grey none 1525 | " dtdParamEntityDPunct grey none 1526 | " xmlAttribPunct grey none 1527 | " xmlEntity orange none 1528 | " xmlEntityPunct orange none 1529 | " vimCommentTitle blue1 none bold 1530 | " vimNotation orange none 1531 | " vimBracket orange none 1532 | " vimMapModKey orange none 1533 | " vimCommand blue none bold 1534 | " vimLet blue none 1535 | " vimNorm blue none 1536 | " vimFuncSID -> Function 1537 | " vimFunction -> Function 1538 | " vimGroup blue1 none 1539 | " vimHiGroup -> Type 1540 | " vimSetSep fg3 none 1541 | " vimSep fg3 none 1542 | " vimContinue yellow none 1543 | " clojureKeyword blue none 1544 | " clojureCond orange none 1545 | " clojureSpecial orange none 1546 | " clojureDefine orange none 1547 | " clojureFunc yellow none 1548 | " clojureRepeat yellow none 1549 | " clojureCharacter aqua none 1550 | " clojureStringEscape aqua none 1551 | " clojureException red none 1552 | " clojureRegexp aqua none 1553 | " clojureRegexpEscape aqua none 1554 | " clojureRegexpCharClass fg3 none bold 1555 | " clojureRegexpMod -> clojureRegexpCharClass 1556 | " clojureRegexpQuantifier -> clojureRegexpCharClass 1557 | " clojureParen fg3 none 1558 | " clojureAnonArg yellow none 1559 | " clojureVariable blue none 1560 | " clojureMacro orange none 1561 | " clojureMeta yellow none 1562 | " clojureDeref yellow none 1563 | " clojureQuote yellow none 1564 | " clojureUnquote yellow none 1565 | " cOperator purple none 1566 | " cStructure orange none 1567 | " rustSelf blue none bold 1568 | " rustPanic red1 none bold 1569 | " rustAssert blue1 none bold 1570 | " pythonCoding -> Comment 1571 | " cssBraces blue none 1572 | " cssFunctionName yellow none 1573 | " cssIdentifier orange none 1574 | " cssClassName green none 1575 | " cssColor blue none 1576 | " cssSelectorOp blue none 1577 | " cssSelectorOp2 blue none 1578 | " cssImportant green none 1579 | " cssVendor fg1 none 1580 | " cssTextProp aqua none 1581 | " cssAnimationProp aqua none 1582 | " cssUIProp yellow none 1583 | " cssTransformProp aqua none 1584 | " cssTransitionProp aqua none 1585 | " cssPrintProp aqua none 1586 | " cssPositioningProp yellow none 1587 | " cssBoxProp aqua none 1588 | " cssFontDescriptorProp aqua none 1589 | " cssFlexibleBoxProp aqua none 1590 | " cssBorderOutlineProp aqua none 1591 | " cssBackgroundProp aqua none 1592 | " cssMarginProp aqua none 1593 | " cssListProp aqua none 1594 | " cssTableProp aqua none 1595 | " cssFontProp aqua none 1596 | " cssPaddingProp aqua none 1597 | " cssDimensionProp aqua none 1598 | " cssRenderProp aqua none 1599 | " cssColorProp aqua none 1600 | " cssGeneratedContentProp aqua none 1601 | " javaScriptBraces fg1 none 1602 | " javaScriptFunction aqua none 1603 | " javaScriptIdentifier red none 1604 | " javaScriptMember blue none 1605 | " javaScriptNumber purple none 1606 | " javaScriptNull purple none 1607 | " javaScriptParens fg3 none 1608 | " javascriptImport aqua none 1609 | " javascriptExport aqua none 1610 | " javascriptClassKeyword aqua none 1611 | " javascriptClassExtends aqua none 1612 | " javascriptDefault aqua none 1613 | " javascriptClassName yellow none 1614 | " javascriptClassSuperName yellow none 1615 | " javascriptGlobal yellow none 1616 | " javascriptEndColons fg1 none 1617 | " javascriptFuncArg fg1 none 1618 | " javascriptGlobalMethod fg1 none 1619 | " javascriptNodeGlobal fg1 none 1620 | " javascriptBOMWindowProp fg1 none 1621 | " javascriptArrayMethod fg1 none 1622 | " javascriptArrayStaticMethod fg1 none 1623 | " javascriptCacheMethod fg1 none 1624 | " javascriptDateMethod fg1 none 1625 | " javascriptMathStaticMethod fg1 none 1626 | " javascriptURLUtilsProp fg1 none 1627 | " javascriptBOMNavigatorProp fg1 none 1628 | " javascriptDOMDocMethod fg1 none 1629 | " javascriptDOMDocProp fg1 none 1630 | " javascriptBOMLocationMethod fg1 none 1631 | " javascriptBOMWindowMethod fg1 none 1632 | " javascriptStringMethod fg1 none 1633 | " javascriptVariable orange none 1634 | " javascriptIdentifier orange none 1635 | " javascriptClassSuper orange none 1636 | " javascriptFuncKeyword aqua none 1637 | " javascriptAsyncFunc aqua none 1638 | " javascriptClassStatic orange none 1639 | " javascriptOperator red1 none 1640 | " javascriptForOperator red1 none 1641 | " javascriptYield red1 none 1642 | " javascriptExceptions red1 none 1643 | " javascriptMessage red1 none 1644 | " javascriptTemplateSB aqua none 1645 | " javascriptTemplateSubstitution fg1 none 1646 | " javascriptLabel fg1 none 1647 | " javascriptObjectLabel fg1 none 1648 | " javascriptPropertyName fg1 none 1649 | " javascriptLogicSymbols fg1 none 1650 | " javascriptArrowFunc yellow none 1651 | " javascriptDocParamName fg4 none 1652 | " javascriptDocTags fg4 none 1653 | " javascriptDocNotation fg4 none 1654 | " javascriptDocParamType fg4 none 1655 | " javascriptDocNamedParamType fg4 none 1656 | " javascriptBrackets fg1 none 1657 | " javascriptDOMElemAttrs fg1 none 1658 | " javascriptDOMEventMethod fg1 none 1659 | " javascriptDOMNodeMethod fg1 none 1660 | " javascriptDOMStorageMethod fg1 none 1661 | " javascriptHeadersMethod fg1 none 1662 | " javascriptAsyncFuncKeyword red1 none bold 1663 | " javascriptAwaitFuncKeyword red1 none bold 1664 | " jsClassKeyword -> Keyword 1665 | " jsExtendsKeyword -> Keyword 1666 | " jsExportDefault blue none bold 1667 | " jsTemplateBraces aqua none 1668 | " jsGlobalNodeObjects -> Keyword 1669 | " jsGlobalObjects -> Keyword 1670 | " jsFunction -> Function 1671 | " jsFuncParens orange none 1672 | " jsParens red1 none 1673 | " jsNull purple none 1674 | " jsUndefined -> ErrorMsg 1675 | " jsClassDefinition yellow none 1676 | " jsObjectProp -> Identifier 1677 | " jsObjectKey blue0 none 1678 | " jsFunctionKey blue1 none 1679 | " jsBracket red1 none 1680 | " jsObjectColon red1 none 1681 | " jsFuncArgs blue0 none 1682 | " jsFuncBraces blue1 none 1683 | " jsVariableDef fg1 none 1684 | " jsObjectBraces -> Special 1685 | " jsObjectValue float none 1686 | " jsClassBlock blue1 none 1687 | " jsFutureKeys orange none bold 1688 | " jsFuncArgs blue none 1689 | " jsStorageClass blue none 1690 | " jsxRegion blue none 1691 | " typeScriptReserved aqua none 1692 | " typeScriptLabel -> Label 1693 | " typeScriptFuncKeyword -> Function 1694 | " typeScriptIdentifier -> Identifier 1695 | " typeScriptBraces red1 none 1696 | " typeScriptEndColons fg1 none 1697 | " typeScriptDOMObjects fg1 none 1698 | " typeScriptAjaxMethods -> Function 1699 | " typeScriptLogicSymbols fg1 none 1700 | " typeScriptDocSeeTag -> Comment 1701 | " typeScriptDocParam -> Comment 1702 | " typeScriptDocTags -> vimCommentTitle 1703 | " typeScriptGlobalObjects -> Keyword 1704 | " typeScriptParens blue1 none 1705 | " typeScriptOpSymbols -> Operator 1706 | " typeScriptHtmlElemProperties -> Special 1707 | " typeScriptNull purple none bold 1708 | " typeScriptInterpolationDelimiter aqua none 1709 | " purescriptModuleKeyword aqua none 1710 | " purescriptModuleName red1 none bold 1711 | " purescriptWhere aqua none 1712 | " purescriptDelimiter fg4 none 1713 | " purescriptType -> Type 1714 | " purescriptImportKeyword -> Keyword 1715 | " purescriptHidingKeyword -> Keyword 1716 | " purescriptAsKeyword -> Keyword 1717 | " purescriptStructure -> Structure 1718 | " purescriptOperator -> Operator 1719 | " purescriptTypeVar -> Type 1720 | " purescriptConstructor -> Function 1721 | " purescriptFunction -> Function 1722 | " purescriptConditional -> Conditional 1723 | " purescriptBacktick orange none 1724 | " coffeeExtendedOp fg3 none 1725 | " coffeeSpecialOp fg3 none 1726 | " coffeeCurly orange none 1727 | " coffeeParen fg3 none 1728 | " coffeeBracket orange none 1729 | " rubyStringDelimiter green none 1730 | " rubyInterpolationDelimiter aqua none 1731 | " objcTypeModifier red none 1732 | " objcDirective blue none 1733 | " goDirective aqua none 1734 | " goConstants purple none 1735 | " goDeclaration -> Keyword 1736 | " goDeclType blue none 1737 | " goBuiltins orange none 1738 | " luaIn red1 none 1739 | " luaFunction aqua none 1740 | " luaTable orange none 1741 | " moonSpecialOp fg3 none 1742 | " moonExtendedOp fg3 none 1743 | " moonFunction fg3 none 1744 | " moonObject yellow none 1745 | " javaAnnotation blue none 1746 | " javaDocTags aqua none 1747 | " javaCommentTitle -> vimCommentTitle 1748 | " javaParen fg3 none 1749 | " javaParen1 fg3 none 1750 | " javaParen2 fg3 none 1751 | " javaParen3 fg3 none 1752 | " javaParen4 fg3 none 1753 | " javaParen5 fg3 none 1754 | " javaOperator orange none 1755 | " javaVarArg green none 1756 | " elixirDocString -> Comment 1757 | " elixirStringDelimiter green none 1758 | " elixirInterpolationDelimiter aqua none 1759 | " elixirModuleDeclaration yellow none 1760 | " scalaNameDefinition fg1 none 1761 | " scalaCaseFollowing fg1 none 1762 | " scalaCapitalWord fg1 none 1763 | " scalaTypeExtension fg1 none 1764 | " scalaKeyword red1 none bold 1765 | " scalaKeywordModifier red1 none 1766 | " scalaSpecial aqua none 1767 | " scalaOperator fg1 none 1768 | " scalaTypeDeclaration yellow none 1769 | " scalaTypeTypePostDeclaration yellow none 1770 | " scalaInstanceDeclaration fg1 none 1771 | " scalaInterpolation aqua none 1772 | " markdownItalic fg3 none italic 1773 | " markdownH1 blue none bold 1774 | " markdownH2 aqua none bold 1775 | " markdownH3 green none bold 1776 | " markdownH4 yellow none bold 1777 | " markdownH5 yellow none 1778 | " markdownH6 yellow none 1779 | " htmlH1 -> markdownH1 1780 | " htmlH2 -> markdownH2 1781 | " htmlH3 -> markdownH3 1782 | " htmlH4 -> markdownH4 1783 | " htmlH5 -> markdownH5 1784 | " htmlH6 -> markdownH6 1785 | " markdownCode purple1 none 1786 | " mkdCode -> markdownCode 1787 | " markdownCodeBlock aqua none 1788 | " markdownCodeDelimiter orange none 1789 | " mkdCodeDelimiter -> markdownCodeDelimiter 1790 | " markdownBlockquote grey none 1791 | " markdownListMarker grey none 1792 | " markdownOrderedListMarker grey none 1793 | " markdownRule grey none 1794 | " markdownHeadingRule grey none 1795 | " markdownUrlDelimiter fg3 none 1796 | " markdownLinkDelimiter fg3 none 1797 | " markdownLinkTextDelimiter fg3 none 1798 | " markdownHeadingDelimiter orange none 1799 | " markdownUrl purple none 1800 | " markdownUrlTitleDelimiter green none 1801 | " markdownLinkText -> htmlLink 1802 | " markdownIdDeclaration -> markdownLinkText 1803 | " haskellType fg1 none 1804 | " haskellIdentifier fg1 none 1805 | " haskellSeparator fg1 none 1806 | " haskellDelimiter fg4 none 1807 | " haskellOperators blue none 1808 | " haskellBacktick orange none 1809 | " haskellStatement orange none 1810 | " haskellConditional orange none 1811 | " haskellLet aqua none 1812 | " haskellDefault aqua none 1813 | " haskellWhere aqua none 1814 | " haskellBottom aqua none 1815 | " haskellBlockKeywords aqua none 1816 | " haskellImportKeywords aqua none 1817 | " haskellDeclKeyword aqua none 1818 | " haskellDeriving aqua none 1819 | " haskellAssocType aqua none 1820 | " haskellNumber purple none 1821 | " haskellPragma purple none 1822 | " haskellString green none 1823 | " haskellChar green none 1824 | " jsonKeyword green none 1825 | " jsonQuote green none 1826 | " jsonBraces fg1 none 1827 | " jsonString fg1 none 1828 | " Background: light 1829 | " Color: bg0 #fbf8ef ~ 1830 | " Color: bg1 #efeae9 ~ 1831 | " Color: bg2 #e3dedd ~ 1832 | " Color: bg3 #d2ceda ~ 1833 | " Color: bg4 #a8a4ae ~ 1834 | " Color: fg0 #83758c ~ 1835 | " Color: fg1 #655370 ~ 1836 | " Color: fg2 #5a4a64 ~ 1837 | " Color: fg3 #504259 ~ 1838 | " Color: fg4 #463a4e ~ 1839 | " Color: fg5 #8c799f ~ 1840 | " Color: fg6 #c8c6dd ~ 1841 | " Color: grey #a8a8bf ~ 1842 | " Color: grey1 #768294 ~ 1843 | " Color: red #f2241f ~ 1844 | " Color: red1 #ba2f59 ~ 1845 | " Color: red2 #f54e3c ~ 1846 | " Color: blue0 #58b0d9 ~ 1847 | " Color: blue #3a81c3 ~ 1848 | " Color: blue1 #715ab1 ~ 1849 | " Color: purple #6c3163 ~ 1850 | " Color: purple0 #86589e ~ 1851 | " Color: purple1 #4e3163 ~ 1852 | " Color: purple2 #d3d3e7 ~ 1853 | " Color: purple3 #544a65 ~ 1854 | " Color: purple4 #e2e0ea ~ 1855 | " Color: green #67b11d ~ 1856 | " Color: green1 #2aa1ae ~ 1857 | " Color: aqua #24775c ~ 1858 | " Color: aqua1 #4495b4 ~ 1859 | " Color: orange0 #d79650 ~ 1860 | " Color: orange #b46843 ~ 1861 | " Color: yellow #b1951d ~ 1862 | " Color: yellow1 #e5d11c ~ 1863 | " Color: cyan #21b8c7 ~ 1864 | " Color: meta #da8b55 ~ 1865 | " Color: mat #ba2f59 ~ 1866 | " Color: highlight #d3d3e7 ~ 1867 | " Color: war #dc752f ~ 1868 | " Color: cblk #655370 ~ 1869 | " Color: comp #6c4173 ~ 1870 | " Color: number #e697e6 ~ 1871 | " Color: debug #ffc8c8 ~ 1872 | " Color: float #b7b7ff ~ 1873 | " Color: delimiter #74baac ~ 1874 | " Normal fg1 none 1875 | " CursorLineNr purple none 1876 | " FoldColumn purple none 1877 | " SignColumn fg1 none 1878 | " VertSplit bg1 none 1879 | " Normal fg1 bg0 1880 | " CursorLineNr purple bg1 1881 | " FoldColumn purple bg1 1882 | " SignColumn fg1 bg0 1883 | " VertSplit bg1 bg0 1884 | " ColorColumn none bg1 1885 | " Conceal blue none 1886 | " Cursor orange none bold,reverse 1887 | " CursorColumn -> CursorLine 1888 | " CursorLine none bg1 1889 | " DiffAdd green bg0 reverse 1890 | " DiffChange orange bg0 reverse 1891 | " DiffDelete red bg0 reverse 1892 | " DiffText yellow bg0 reverse 1893 | " Directory blue none bold 1894 | " EndOfBuffer bg0 none 1895 | " Error red bg0 bold,reverse 1896 | " ErrorMsg bg0 red 1897 | " Folded purple1 bg1 g=italic 1898 | " IncSearch orange bg0 bold,reverse 1899 | " LineNr grey none 1900 | " MatchParen green none bold,underline 1901 | " ModeMsg yellow1 none 1902 | " MoreMsg -> ModeMsg 1903 | " NonText grey none 1904 | " Pmenu fg5 purple4 1905 | " PmenuSbar none bg1 1906 | " PmenuSel none fg6 1907 | " PmenuThumb none purple2 1908 | " Question orange none bold 1909 | " QuickFixLine -> Search 1910 | " qfLineNr -> Type 1911 | " Search green bg0 bold,reverse 1912 | " SpecialKey purple none 1913 | " SpellBad red none t=underline g=italic,undercurl s=red 1914 | " SpellCap blue none t=underline g=italic,undercurl s=blue 1915 | " SpellLocal aqua none t=underline g=italic,undercurl s=aqua 1916 | " SpellRare purple none t=underline g=italic,undercurl s=purple 1917 | " StatusLine fg1 purple2 1918 | " StatusLineNC purple2 bg4 1919 | " StatusLineTerm -> StatusLine 1920 | " StatusLineTermNC -> StatusLineNC 1921 | " TabLineFill purple3 bg1 1922 | " TabLineSel green bg1 1923 | " TabLine -> TabLineFill 1924 | " Title green none bold 1925 | " Visual none purple3 1926 | " VisualNOS -> Visual 1927 | " WarningMsg red none 1928 | " WildMenu orange bg1 bold 1929 | " Boolean war none 1930 | " Character purple none 1931 | " Comment green1 none none g=italic 1932 | " Conditional blue none bold 1933 | " Constant orange none 1934 | " Define aqua none 1935 | " Debug red2 none 1936 | " Delimiter delimiter none 1937 | " Error red bg0 bold,reverse 1938 | " Exception red none 1939 | " Float float none 1940 | " Function purple none bold 1941 | " Identifier blue1 none 1942 | " Ignore fg none 1943 | " Include yellow none 1944 | " Keyword blue none bold 1945 | " Label red1 none 1946 | " Macro blue1 none bold 1947 | " Number number none 1948 | " Operator blue0 none 1949 | " PreCondit purple1 none 1950 | " PreProc purple0 none 1951 | " Repeat red1 none bold 1952 | " SpecialChar cyan none 1953 | " SpecialComment grey1 none 1954 | " Statement blue none 1955 | " StorageClass yellow none bold 1956 | " Special orange0 none 1957 | " String aqua none 1958 | " Structure aqua1 none bold 1959 | " Tag orange none 1960 | " Todo orange none t=bold g=bold,italic 1961 | " Type red1 none 1962 | " Typedef yellow none 1963 | " Underlined blue none underline 1964 | " lCursor -> Cursor 1965 | " CursorIM none none reverse 1966 | " ToolbarLine none bg3 1967 | " ToolbarButton fg0 bg3 bold 1968 | " iCursor -> Cursor 1969 | " vCursor -> Cursor 1970 | " NormalMode fg4 bg0 reverse 1971 | " InsertMode blue bg0 reverse 1972 | " ReplaceMode aqua bg0 reverse 1973 | " VisualMode orange bg0 reverse 1974 | " CommandMode purple bg0 reverse 1975 | " Warnings orange bg0 reverse 1976 | " TermCursor -> Cursor 1977 | " TermCursorNC bg1 fg1 1978 | " ALEError none none t=underline g=undercurl s=red 1979 | " ALEWarning none none t=underline g=undercurl s=red 1980 | " ALEInfo none none t=underline g=undercurl s=blue 1981 | " ALEErrorSign red none 1982 | " ALEWarningSign yellow none 1983 | " ALEInfoSign blue none 1984 | " BufTabLineCurrent bg0 fg4 1985 | " BufTabLineActive fg4 bg2 1986 | " BufTabLineHidden bg4 bg1 1987 | " BufTabLineFill bg0 bg0 1988 | " CtrlPMatch yellow none 1989 | " CtrlPNoEntries red none 1990 | " CtrlPPrtBase bg2 none 1991 | " CtrlPPrtCursor blue none 1992 | " CtrlPLinePre bg2 none 1993 | " CtrlPMode1 blue bg2 bold 1994 | " CtrlPMode2 bg0 blue bold 1995 | " CtrlPStats fg4 bg2 bold 1996 | " DirvishPathTail aqua none 1997 | " DirvishArg yellow none 1998 | " EasyMotionTarget -> Search 1999 | " EasyMotionShade -> Comment 2000 | " gitcommitSelectedFile green none 2001 | " gitcommitDiscardedFile red none 2002 | " GitGutterAdd green bg0 bold 2003 | " GitGutterChange orange bg0 bold 2004 | " GitGutterDelete red bg0 bold 2005 | " GitGutterChangeDelete red1 bg0 bold 2006 | " IndentGuidesOdd bg0 bg2 reverse 2007 | " IndentGuidesEven bg0 bg1 reverse 2008 | " IndentGuidesOdd bg0 bg2 2009 | " IndentGuidesEven bg0 bg1 2010 | " NERDTreeDir blue none bold 2011 | " NERDTreeDirSlash blue none 2012 | " NERDTreeOpenable blue none 2013 | " NERDTreeClosable blue none 2014 | " NERDTreeFile fg1 none 2015 | " NERDTreeExecFile yellow none 2016 | " NERDTreeUp red1 none 2017 | " NERDTreeCWD purple none 2018 | " NERDTreeHelp fg1 none 2019 | " NERDTreeToggleOn green none 2020 | " NERDTreeToggleOff red none 2021 | " netrwDir blue none 2022 | " netrwClassify blue none 2023 | " netrwLink grey none 2024 | " netrwSymLink fg1 none 2025 | " netrwExe yellow none 2026 | " netrwComment grey none 2027 | " netrwList blue none 2028 | " netrwHelpCmd aqua none 2029 | " netrwCmdSep fg3 none 2030 | " netrwVersion green none 2031 | " ShowMarksHLl blue bg0 bold 2032 | " ShowMarksHLu blue bg0 bold 2033 | " ShowMarksHLo blue bg0 bold 2034 | " ShowMarksHLm blue bg0 bold 2035 | " SignifySignAdd green none 2036 | " SignifySignChange orange none 2037 | " SignifySignDelete red none 2038 | " SignatureMarkText blue bg0 bold 2039 | " SignatureMarkerText purple bg0 bold 2040 | " StartifyBracket fg3 none 2041 | " StartifyFile fg1 bg0 2042 | " StartifyNumber blue none 2043 | " StartifyPath blue1 none bold 2044 | " StartifySlash blue none 2045 | " StartifySection blue none bold 2046 | " StartifySpecial -> Type 2047 | " StartifyHeader purple1 none 2048 | " StartifyFooter purple1 none 2049 | " SyntasticError none none t=underline g=undercurl s=red 2050 | " SyntasticWarning none none t=underline g=undercurl s=yellow 2051 | " SyntasticErrorSign red bg0 2052 | " SyntasticWarningSign yellow bg0 2053 | " multiple_cursors_cursor none none reverse 2054 | " multiple_cursors_visual none bg2 2055 | " CurrentWord none purple3 underline 2056 | " CurrentWordTwins none purple3 2057 | " WhichKey -> Function 2058 | " WhichKeySeperator green none 2059 | " WhichKeyGroup -> Keyword 2060 | " WhichKeyDesc -> Identifier 2061 | " diffAdded green none 2062 | " diffRemoved red none 2063 | " diffChanged aqua none 2064 | " diffFile orange none 2065 | " diffNewFile yellow none 2066 | " diffLine blue none 2067 | " htmlTag blue none 2068 | " htmlEndTag blue none 2069 | " htmlTagName purple1 none 2070 | " htmlArg aqua none 2071 | " htmlScriptTag purple none 2072 | " htmlTagN fg1 none 2073 | " htmlSpecialTagName aqua none bold 2074 | " htmlLink blue none underline 2075 | " htmlSpecialChar orange none 2076 | " htmlBold fg bg0 bold 2077 | " htmlBoldUnderline fg bg0 bold,underline 2078 | " htmlBoldItalic fg bg0 bold,italic 2079 | " htmlBoldUnderlineItalic fg bg0 bold,underline,italic 2080 | " htmlUnderline fg bg0 underline 2081 | " htmlUnderlineItalic fg bg0 underline,italic 2082 | " htmlItalic blue1 none italic 2083 | " xmlTag blue none 2084 | " xmlEndTag blue none 2085 | " xmlTagName blue none 2086 | " xmlEqual blue none 2087 | " docbkKeyword aqua none bold 2088 | " xmlDocTypeDecl grey none 2089 | " xmlDocTypeKeyword purple none 2090 | " xmlCdataStart grey none 2091 | " xmlCdataCdata purple none 2092 | " dtdFunction grey none 2093 | " dtdTagName purple none 2094 | " xmlAttrib aqua none 2095 | " xmlProcessingDelim grey none 2096 | " dtdParamEntityPunct grey none 2097 | " dtdParamEntityDPunct grey none 2098 | " xmlAttribPunct grey none 2099 | " xmlEntity orange none 2100 | " xmlEntityPunct orange none 2101 | " vimCommentTitle blue1 none bold 2102 | " vimNotation orange none 2103 | " vimBracket orange none 2104 | " vimMapModKey orange none 2105 | " vimCommand blue none bold 2106 | " vimLet blue none 2107 | " vimNorm blue none 2108 | " vimFuncSID -> Function 2109 | " vimFunction -> Function 2110 | " vimGroup blue1 none 2111 | " vimHiGroup -> Type 2112 | " vimSetSep fg3 none 2113 | " vimSep fg3 none 2114 | " vimContinue yellow none 2115 | " clojureKeyword blue none 2116 | " clojureCond orange none 2117 | " clojureSpecial orange none 2118 | " clojureDefine orange none 2119 | " clojureFunc yellow none 2120 | " clojureRepeat yellow none 2121 | " clojureCharacter aqua none 2122 | " clojureStringEscape aqua none 2123 | " clojureException red none 2124 | " clojureRegexp aqua none 2125 | " clojureRegexpEscape aqua none 2126 | " clojureRegexpCharClass fg3 none bold 2127 | " clojureRegexpMod -> clojureRegexpCharClass 2128 | " clojureRegexpQuantifier -> clojureRegexpCharClass 2129 | " clojureParen fg3 none 2130 | " clojureAnonArg yellow none 2131 | " clojureVariable blue none 2132 | " clojureMacro orange none 2133 | " clojureMeta yellow none 2134 | " clojureDeref yellow none 2135 | " clojureQuote yellow none 2136 | " clojureUnquote yellow none 2137 | " cOperator purple none 2138 | " cStructure orange none 2139 | " rustSelf blue none bold 2140 | " rustPanic red1 none bold 2141 | " rustAssert blue1 none bold 2142 | " pythonCoding -> Comment 2143 | " cssBraces blue none 2144 | " cssFunctionName yellow none 2145 | " cssIdentifier orange none 2146 | " cssClassName green none 2147 | " cssColor blue none 2148 | " cssSelectorOp blue none 2149 | " cssSelectorOp2 blue none 2150 | " cssImportant green none 2151 | " cssVendor fg1 none 2152 | " cssTextProp aqua none 2153 | " cssAnimationProp aqua none 2154 | " cssUIProp yellow none 2155 | " cssTransformProp aqua none 2156 | " cssTransitionProp aqua none 2157 | " cssPrintProp aqua none 2158 | " cssPositioningProp yellow none 2159 | " cssBoxProp aqua none 2160 | " cssFontDescriptorProp aqua none 2161 | " cssFlexibleBoxProp aqua none 2162 | " cssBorderOutlineProp aqua none 2163 | " cssBackgroundProp aqua none 2164 | " cssMarginProp aqua none 2165 | " cssListProp aqua none 2166 | " cssTableProp aqua none 2167 | " cssFontProp aqua none 2168 | " cssPaddingProp aqua none 2169 | " cssDimensionProp aqua none 2170 | " cssRenderProp aqua none 2171 | " cssColorProp aqua none 2172 | " cssGeneratedContentProp aqua none 2173 | " javaScriptBraces fg1 none 2174 | " javaScriptFunction aqua none 2175 | " javaScriptIdentifier red none 2176 | " javaScriptMember blue none 2177 | " javaScriptNumber purple none 2178 | " javaScriptNull purple none 2179 | " javaScriptParens fg3 none 2180 | " javascriptImport aqua none 2181 | " javascriptExport aqua none 2182 | " javascriptClassKeyword aqua none 2183 | " javascriptClassExtends aqua none 2184 | " javascriptDefault aqua none 2185 | " javascriptClassName yellow none 2186 | " javascriptClassSuperName yellow none 2187 | " javascriptGlobal yellow none 2188 | " javascriptEndColons fg1 none 2189 | " javascriptFuncArg fg1 none 2190 | " javascriptGlobalMethod fg1 none 2191 | " javascriptNodeGlobal fg1 none 2192 | " javascriptBOMWindowProp fg1 none 2193 | " javascriptArrayMethod fg1 none 2194 | " javascriptArrayStaticMethod fg1 none 2195 | " javascriptCacheMethod fg1 none 2196 | " javascriptDateMethod fg1 none 2197 | " javascriptMathStaticMethod fg1 none 2198 | " javascriptURLUtilsProp fg1 none 2199 | " javascriptBOMNavigatorProp fg1 none 2200 | " javascriptDOMDocMethod fg1 none 2201 | " javascriptDOMDocProp fg1 none 2202 | " javascriptBOMLocationMethod fg1 none 2203 | " javascriptBOMWindowMethod fg1 none 2204 | " javascriptStringMethod fg1 none 2205 | " javascriptVariable orange none 2206 | " javascriptIdentifier orange none 2207 | " javascriptClassSuper orange none 2208 | " javascriptFuncKeyword aqua none 2209 | " javascriptAsyncFunc aqua none 2210 | " javascriptClassStatic orange none 2211 | " javascriptOperator red1 none 2212 | " javascriptForOperator red1 none 2213 | " javascriptYield red1 none 2214 | " javascriptExceptions red1 none 2215 | " javascriptMessage red1 none 2216 | " javascriptTemplateSB aqua none 2217 | " javascriptTemplateSubstitution fg1 none 2218 | " javascriptLabel fg1 none 2219 | " javascriptObjectLabel fg1 none 2220 | " javascriptPropertyName fg1 none 2221 | " javascriptLogicSymbols fg1 none 2222 | " javascriptArrowFunc yellow none 2223 | " javascriptDocParamName fg4 none 2224 | " javascriptDocTags fg4 none 2225 | " javascriptDocNotation fg4 none 2226 | " javascriptDocParamType fg4 none 2227 | " javascriptDocNamedParamType fg4 none 2228 | " javascriptBrackets fg1 none 2229 | " javascriptDOMElemAttrs fg1 none 2230 | " javascriptDOMEventMethod fg1 none 2231 | " javascriptDOMNodeMethod fg1 none 2232 | " javascriptDOMStorageMethod fg1 none 2233 | " javascriptHeadersMethod fg1 none 2234 | " javascriptAsyncFuncKeyword red1 none bold 2235 | " javascriptAwaitFuncKeyword red1 none bold 2236 | " jsClassKeyword -> Keyword 2237 | " jsExtendsKeyword -> Keyword 2238 | " jsExportDefault blue none bold 2239 | " jsTemplateBraces aqua none 2240 | " jsGlobalNodeObjects -> Keyword 2241 | " jsGlobalObjects -> Keyword 2242 | " jsFunction -> Function 2243 | " jsFuncParens orange none 2244 | " jsParens red1 none 2245 | " jsNull purple none 2246 | " jsUndefined -> ErrorMsg 2247 | " jsClassDefinition yellow none 2248 | " jsObjectProp -> Identifier 2249 | " jsObjectKey blue0 none 2250 | " jsFunctionKey blue1 none 2251 | " jsBracket red1 none 2252 | " jsObjectColon red1 none 2253 | " jsFuncArgs blue0 none 2254 | " jsFuncBraces blue1 none 2255 | " jsVariableDef fg1 none 2256 | " jsObjectBraces -> Special 2257 | " jsObjectValue float none 2258 | " jsClassBlock blue1 none 2259 | " jsFutureKeys orange none bold 2260 | " jsFuncArgs blue none 2261 | " jsStorageClass blue none 2262 | " jsxRegion blue none 2263 | " typeScriptReserved aqua none 2264 | " typeScriptLabel -> Label 2265 | " typeScriptFuncKeyword -> Function 2266 | " typeScriptIdentifier -> Identifier 2267 | " typeScriptBraces red1 none 2268 | " typeScriptEndColons fg1 none 2269 | " typeScriptDOMObjects fg1 none 2270 | " typeScriptAjaxMethods -> Function 2271 | " typeScriptLogicSymbols fg1 none 2272 | " typeScriptDocSeeTag -> Comment 2273 | " typeScriptDocParam -> Comment 2274 | " typeScriptDocTags -> vimCommentTitle 2275 | " typeScriptGlobalObjects -> Keyword 2276 | " typeScriptParens blue1 none 2277 | " typeScriptOpSymbols -> Operator 2278 | " typeScriptHtmlElemProperties -> Special 2279 | " typeScriptNull purple none bold 2280 | " typeScriptInterpolationDelimiter aqua none 2281 | " purescriptModuleKeyword aqua none 2282 | " purescriptModuleName red1 none bold 2283 | " purescriptWhere aqua none 2284 | " purescriptDelimiter fg4 none 2285 | " purescriptType -> Type 2286 | " purescriptImportKeyword -> Keyword 2287 | " purescriptHidingKeyword -> Keyword 2288 | " purescriptAsKeyword -> Keyword 2289 | " purescriptStructure -> Structure 2290 | " purescriptOperator -> Operator 2291 | " purescriptTypeVar -> Type 2292 | " purescriptConstructor -> Function 2293 | " purescriptFunction -> Function 2294 | " purescriptConditional -> Conditional 2295 | " purescriptBacktick orange none 2296 | " coffeeExtendedOp fg3 none 2297 | " coffeeSpecialOp fg3 none 2298 | " coffeeCurly orange none 2299 | " coffeeParen fg3 none 2300 | " coffeeBracket orange none 2301 | " rubyStringDelimiter green none 2302 | " rubyInterpolationDelimiter aqua none 2303 | " objcTypeModifier red none 2304 | " objcDirective blue none 2305 | " goDirective aqua none 2306 | " goConstants purple none 2307 | " goDeclaration -> Keyword 2308 | " goDeclType blue none 2309 | " goBuiltins orange none 2310 | " luaIn red1 none 2311 | " luaFunction aqua none 2312 | " luaTable orange none 2313 | " moonSpecialOp fg3 none 2314 | " moonExtendedOp fg3 none 2315 | " moonFunction fg3 none 2316 | " moonObject yellow none 2317 | " javaAnnotation blue none 2318 | " javaDocTags aqua none 2319 | " javaCommentTitle -> vimCommentTitle 2320 | " javaParen fg3 none 2321 | " javaParen1 fg3 none 2322 | " javaParen2 fg3 none 2323 | " javaParen3 fg3 none 2324 | " javaParen4 fg3 none 2325 | " javaParen5 fg3 none 2326 | " javaOperator orange none 2327 | " javaVarArg green none 2328 | " elixirDocString -> Comment 2329 | " elixirStringDelimiter green none 2330 | " elixirInterpolationDelimiter aqua none 2331 | " elixirModuleDeclaration yellow none 2332 | " scalaNameDefinition fg1 none 2333 | " scalaCaseFollowing fg1 none 2334 | " scalaCapitalWord fg1 none 2335 | " scalaTypeExtension fg1 none 2336 | " scalaKeyword red1 none bold 2337 | " scalaKeywordModifier red1 none 2338 | " scalaSpecial aqua none 2339 | " scalaOperator fg1 none 2340 | " scalaTypeDeclaration yellow none 2341 | " scalaTypeTypePostDeclaration yellow none 2342 | " scalaInstanceDeclaration fg1 none 2343 | " scalaInterpolation aqua none 2344 | " markdownItalic fg3 none italic 2345 | " markdownH1 blue none bold 2346 | " markdownH2 aqua none bold 2347 | " markdownH3 green none bold 2348 | " markdownH4 yellow none bold 2349 | " markdownH5 yellow none 2350 | " markdownH6 yellow none 2351 | " htmlH1 -> markdownH1 2352 | " htmlH2 -> markdownH2 2353 | " htmlH3 -> markdownH3 2354 | " htmlH4 -> markdownH4 2355 | " htmlH5 -> markdownH5 2356 | " htmlH6 -> markdownH6 2357 | " markdownCode purple1 none 2358 | " mkdCode -> markdownCode 2359 | " markdownCodeBlock aqua none 2360 | " markdownCodeDelimiter orange none 2361 | " mkdCodeDelimiter -> markdownCodeDelimiter 2362 | " markdownBlockquote grey none 2363 | " markdownListMarker grey none 2364 | " markdownOrderedListMarker grey none 2365 | " markdownRule grey none 2366 | " markdownHeadingRule grey none 2367 | " markdownUrlDelimiter fg3 none 2368 | " markdownLinkDelimiter fg3 none 2369 | " markdownLinkTextDelimiter fg3 none 2370 | " markdownHeadingDelimiter orange none 2371 | " markdownUrl purple none 2372 | " markdownUrlTitleDelimiter green none 2373 | " markdownLinkText -> htmlLink 2374 | " markdownIdDeclaration -> markdownLinkText 2375 | " haskellType fg1 none 2376 | " haskellIdentifier fg1 none 2377 | " haskellSeparator fg1 none 2378 | " haskellDelimiter fg4 none 2379 | " haskellOperators blue none 2380 | " haskellBacktick orange none 2381 | " haskellStatement orange none 2382 | " haskellConditional orange none 2383 | " haskellLet aqua none 2384 | " haskellDefault aqua none 2385 | " haskellWhere aqua none 2386 | " haskellBottom aqua none 2387 | " haskellBlockKeywords aqua none 2388 | " haskellImportKeywords aqua none 2389 | " haskellDeclKeyword aqua none 2390 | " haskellDeriving aqua none 2391 | " haskellAssocType aqua none 2392 | " haskellNumber purple none 2393 | " haskellPragma purple none 2394 | " haskellString green none 2395 | " haskellChar green none 2396 | " jsonKeyword green none 2397 | " jsonQuote green none 2398 | " jsonBraces fg1 none 2399 | " jsonString fg1 none 2400 | " StatusLineNC purple2 bg1 2401 | " Visual none bg2 2402 | --------------------------------------------------------------------------------