├── .gitignore ├── LICENSE ├── README.md ├── _screenshots ├── _efficient.png ├── _efficient_lean.png └── _efficient_lean_soft.png └── colors ├── efficient-lean-soft.vim ├── efficient-lean.vim └── efficient.vim /.gitignore: -------------------------------------------------------------------------------- 1 | *.DS_Store 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2019 Matthieu Petiteau 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # efficient vim colorscheme 2 | 3 | A very simple, dark and efficient monochrome-ish colorscheme. 4 | Works in terminal vim and GUI. 5 | 6 | ### efficient 7 | (Standard version) 8 | ![efficient](https://github.com/smallwat3r/efficient/blob/master/_screenshots/_efficient.png) 9 | 10 | ### efficient-lean 11 | (Simpler version) 12 | ![efficient_lean](https://github.com/smallwat3r/efficient/blob/master/_screenshots/_efficient_lean.png) 13 | 14 | ### efficient-lean-soft 15 | (Even simpler version (with softer bg)) 16 | ![efficient_lean](https://github.com/smallwat3r/efficient/blob/master/_screenshots/_efficient_lean_soft.png) 17 | -------------------------------------------------------------------------------- /_screenshots/_efficient.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallwat3r/vim-efficient/e7cf7910132d95b4d6d63a7408d49aa9cec837b2/_screenshots/_efficient.png -------------------------------------------------------------------------------- /_screenshots/_efficient_lean.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallwat3r/vim-efficient/e7cf7910132d95b4d6d63a7408d49aa9cec837b2/_screenshots/_efficient_lean.png -------------------------------------------------------------------------------- /_screenshots/_efficient_lean_soft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smallwat3r/vim-efficient/e7cf7910132d95b4d6d63a7408d49aa9cec837b2/_screenshots/_efficient_lean_soft.png -------------------------------------------------------------------------------- /colors/efficient-lean-soft.vim: -------------------------------------------------------------------------------- 1 | " File : efficient-lean-soft.vim 2 | " Author: Matthieu Petiteau 3 | " Date : 01.12.2019 4 | " 5 | " A very simple but efficient monochrome-ish colorscheme. 6 | " Lean version of efficient (no color for strings and no bold typeface in 7 | " code.) 8 | " 9 | 10 | hi clear 11 | 12 | if exists("syntax on") 13 | syntax reset 14 | endif 15 | 16 | let g:colors_name="efficient-lean-soft" 17 | set background=dark 18 | 19 | " 20 | " Colors 21 | " 22 | hi Normal ctermfg=231 ctermbg=235 cterm=NONE guifg=#ffffff guibg=#262626 gui=NONE 23 | hi Constant ctermfg=231 ctermbg=235 cterm=NONE guifg=#ffffff guibg=#262626 gui=NONE 24 | 25 | hi Character ctermfg=250 ctermbg=NONE cterm=NONE guifg=#bcbcbc guibg=NONE gui=NONE 26 | hi Comment ctermfg=239 ctermbg=NONE cterm=NONE guifg=#4e4e4e guibg=NONE gui=NONE 27 | hi String ctermfg=231 ctermbg=NONE cterm=NONE guifg=#ffffff guibg=NONE gui=NONE 28 | 29 | hi Number ctermfg=231 ctermbg=NONE cterm=NONE guifg=#ffffff guibg=NONE gui=NONE 30 | hi Float ctermfg=231 ctermbg=NONE cterm=NONE guifg=#ffffff guibg=NONE gui=NONE 31 | hi Boolean ctermfg=231 ctermbg=NONE cterm=NONE guifg=#ffffff guibg=NONE gui=NONE 32 | hi Identifier ctermfg=231 ctermbg=NONE cterm=NONE guifg=#ffffff guibg=NONE gui=NONE 33 | 34 | hi Include ctermfg=231 ctermbg=NONE cterm=NONE guifg=#ffffff guibg=NONE gui=NONE 35 | hi Function ctermfg=231 ctermbg=NONE cterm=NONE guifg=#ffffff guibg=NONE gui=NONE 36 | hi Statement ctermfg=231 ctermbg=NONE cterm=NONE guifg=#ffffff guibg=NONE gui=NONE 37 | hi Conditional ctermfg=231 ctermbg=NONE cterm=NONE guifg=#ffffff guibg=NONE gui=NONE 38 | hi Operator ctermfg=231 ctermbg=NONE cterm=NONE guifg=#ffffff guibg=NONE gui=NONE 39 | hi Repeat ctermfg=231 ctermbg=NONE cterm=NONE guifg=#ffffff guibg=NONE gui=NONE 40 | 41 | hi Type ctermfg=231 ctermbg=NONE cterm=NONE guifg=#ffffff guibg=NONE gui=NONE 42 | hi Character ctermfg=231 ctermbg=NONE cterm=NONE guifg=#ffffff guibg=NONE gui=NONE 43 | hi linenr ctermfg=240 ctermbg=NONE cterm=NONE guifg=#585858 guibg=NONE gui=NONE 44 | 45 | hi NonText ctermfg=241 ctermbg=NONE cterm=NONE guifg=#626262 guibg=NONE gui=NONE 46 | hi Visual ctermfg=235 ctermbg=243 cterm=NONE guifg=#262626 guibg=#767676 gui=NONE 47 | 48 | hi Special ctermfg=250 ctermbg=NONE cterm=NONE guifg=#bcbcbc guibg=NONE gui=NONE 49 | hi SpecialChar ctermfg=250 ctermbg=NONE cterm=NONE guifg=#bcbcbc guibg=NONE gui=NONE 50 | hi SpecialKey ctermfg=250 ctermbg=NONE cterm=NONE guifg=#bcbcbc guibg=NONE gui=NONE 51 | 52 | hi MatchParen ctermfg=234 ctermbg=51 cterm=NONE guifg=#262626 guibg=#00ffff gui=NONE 53 | hi ColorColumn ctermfg=NONE ctermbg=235 cterm=NONE guifg=NONE guibg=#262626 gui=NONE 54 | 55 | hi Cursor ctermfg=234 ctermbg=51 cterm=NONE guifg=#262626 guibg=#00ffff gui=NONE 56 | hi CursorColumn ctermfg=250 ctermbg=235 cterm=NONE guifg=#b9b9b9 guibg=#101010 gui=NONE 57 | hi CursorLine ctermfg=250 ctermbg=235 cterm=NONE guifg=#b9b9b9 guibg=#101010 gui=NONE 58 | hi CursorLineNR ctermfg=250 ctermbg=235 cterm=NONE guifg=#b9b9b9 guibg=#101010 gui=NONE 59 | 60 | hi DiffAdd ctermfg=22 ctermbg=194 cterm=NONE guifg=#005f00 guibg=#d7ffd7 gui=NONE 61 | hi DiffChange ctermfg=166 ctermbg=235 cterm=NONE guifg=#d75f00 guibg=#262626 gui=NONE 62 | hi DiffText ctermfg=166 ctermbg=228 cterm=NONE guifg=#d75f00 guibg=#ffff87 gui=NONE 63 | hi DiffDelete ctermfg=254 ctermbg=197 cterm=NONE guifg=#e4e4e4 guibg=#ff005f gui=NONE 64 | 65 | hi VertSplit ctermfg=197 ctermbg=235 cterm=NONE guifg=#ff005f guibg=#262626 gui=NONE 66 | hi SignColumn ctermfg=235 ctermbg=235 cterm=NONE guifg=#262626 guibg=#262626 gui=NONE 67 | 68 | hi IncSearch ctermfg=51 ctermbg=NONE cterm=bold guifg=#00ffff guibg=NONE gui=bold 69 | hi Search ctermfg=237 ctermbg=229 cterm=bold guifg=#3a3a3a guibg=#ffffaf gui=bold 70 | 71 | hi TODO ctermfg=190 ctermbg=NONE cterm=NONE guifg=#d7ff00 guibg=NONE gui=NONE 72 | hi Error ctermfg=9 ctermbg=NONE cterm=underline guifg=#ff0000 guibg=NONE gui=underline 73 | hi ErrorMsg ctermfg=9 ctermbg=NONE cterm=underline guifg=#ff0000 guibg=NONE gui=underline 74 | 75 | hi PreProc ctermfg=231 ctermbg=NONE cterm=NONE guifg=#ffffff guibg=NONE gui=NONE 76 | hi Title ctermfg=197 ctermbg=NONE cterm=bold guifg=#ff005f guibg=NONE gui=bold 77 | hi WildMenu ctermfg=197 ctermbg=NONE cterm=NONE guifg=#ff005f guibg=NONE gui=NONE 78 | hi Underlined ctermfg=197 ctermbg=NONE cterm=underline guifg=#ff005f guibg=NONE gui=underline 79 | hi Directory ctermfg=197 ctermbg=NONE cterm=bold guifg=#ff005f guibg=NONE gui=bold 80 | 81 | hi Pmenu ctermfg=235 ctermbg=242 cterm=bold guifg=#262626 guibg=#6c6c6c gui=bold 82 | hi PmenuSbar ctermfg=235 ctermbg=242 cterm=bold guifg=#262626 guibg=#6c6c6c gui=bold 83 | hi PmenuThumb ctermfg=235 ctermbg=242 cterm=bold guifg=#262626 guibg=#6c6c6c gui=bold 84 | hi PmenuSel ctermfg=164 ctermbg=242 cterm=bold guifg=#d700d7 guibg=#6c6c6c gui=bold 85 | 86 | hi Folded ctermfg=258 ctermbg=239 cterm=bold guifg=#eeeeee guibg=#4e4e4e gui=bold 87 | hi FoldColumn ctermfg=258 ctermbg=239 cterm=bold guifg=#eeeeee guibg=#4e4e4e gui=bold 88 | 89 | hi Statusline ctermfg=231 ctermbg=197 cterm=bold guifg=#eeeeee guibg=#ff005f gui=bold 90 | hi StatuslineNC ctermfg=231 ctermbg=204 cterm=bold guifg=#eeeeee guibg=#ff5f87 gui=bold 91 | 92 | hi GitGutterAdd ctermfg=154 ctermbg=235 cterm=NONE guifg=#afff00 guibg=#262626 gui=NONE 93 | hi GitGutterChange ctermfg=229 ctermbg=235 cterm=NONE guifg=#ffffaf guibg=#262626 gui=NONE 94 | hi GitGutterDelete ctermfg=197 ctermbg=235 cterm=NONE guifg=#ff005f guibg=#262626 gui=NONE 95 | 96 | hi htmlTagName ctermfg=231 ctermbg=NONE cterm=NONE guifg=#ffffff guibg=NONE gui=NONE 97 | hi pythonEscape ctermfg=197 ctermbg=NONE cterm=NONE guifg=#ff005f guibg=NONE gui=NONE 98 | -------------------------------------------------------------------------------- /colors/efficient-lean.vim: -------------------------------------------------------------------------------- 1 | " File : efficient-lean.vim 2 | " Author: Matthieu Petiteau 3 | " Date : 01.12.2019 4 | " 5 | " A very simple but efficient monochrome-ish colorscheme. 6 | " Lean version of efficient (no color for strings and no bold typeface in 7 | " code.) 8 | " 9 | 10 | hi clear 11 | 12 | if exists("syntax on") 13 | syntax reset 14 | endif 15 | 16 | let g:colors_name="efficient-lean" 17 | set background=dark 18 | 19 | " 20 | " Colors 21 | " 22 | hi Normal ctermfg=231 ctermbg=233 cterm=NONE guifg=#ffffff guibg=#121212 gui=NONE 23 | hi Constant ctermfg=231 ctermbg=233 cterm=NONE guifg=#ffffff guibg=#121212 gui=NONE 24 | 25 | hi Character ctermfg=250 ctermbg=NONE cterm=NONE guifg=#bcbcbc guibg=NONE gui=NONE 26 | hi Comment ctermfg=240 ctermbg=NONE cterm=NONE guifg=#585858 guibg=NONE gui=NONE 27 | hi String ctermfg=231 ctermbg=NONE cterm=NONE guifg=#ffffff guibg=NONE gui=NONE 28 | 29 | hi Number ctermfg=197 ctermbg=NONE cterm=NONE guifg=#ff005f guibg=NONE gui=NONE 30 | hi Float ctermfg=197 ctermbg=NONE cterm=NONE guifg=#ff005f guibg=NONE gui=NONE 31 | hi Boolean ctermfg=231 ctermbg=NONE cterm=NONE guifg=#ffffff guibg=NONE gui=NONE 32 | hi Identifier ctermfg=231 ctermbg=NONE cterm=NONE guifg=#ffffff guibg=NONE gui=NONE 33 | 34 | hi Include ctermfg=231 ctermbg=NONE cterm=NONE guifg=#ffffff guibg=NONE gui=NONE 35 | hi Function ctermfg=231 ctermbg=NONE cterm=NONE guifg=#ffffff guibg=NONE gui=NONE 36 | hi Statement ctermfg=231 ctermbg=NONE cterm=NONE guifg=#ffffff guibg=NONE gui=NONE 37 | hi Conditional ctermfg=231 ctermbg=NONE cterm=NONE guifg=#ffffff guibg=NONE gui=NONE 38 | hi Operator ctermfg=231 ctermbg=NONE cterm=NONE guifg=#ffffff guibg=NONE gui=NONE 39 | hi Repeat ctermfg=231 ctermbg=NONE cterm=NONE guifg=#ffffff guibg=NONE gui=NONE 40 | 41 | hi Type ctermfg=231 ctermbg=NONE cterm=NONE guifg=#ffffff guibg=NONE gui=NONE 42 | hi Character ctermfg=231 ctermbg=NONE cterm=NONE guifg=#ffffff guibg=NONE gui=NONE 43 | hi linenr ctermfg=240 ctermbg=NONE cterm=NONE guifg=#585858 guibg=NONE gui=NONE 44 | 45 | hi NonText ctermfg=241 ctermbg=NONE cterm=NONE guifg=#626262 guibg=NONE gui=NONE 46 | hi Visual ctermfg=233 ctermbg=243 cterm=NONE guifg=#121212 guibg=#767676 gui=NONE 47 | 48 | hi Special ctermfg=250 ctermbg=NONE cterm=NONE guifg=#bcbcbc guibg=NONE gui=NONE 49 | hi SpecialChar ctermfg=250 ctermbg=NONE cterm=NONE guifg=#bcbcbc guibg=NONE gui=NONE 50 | hi SpecialKey ctermfg=250 ctermbg=NONE cterm=NONE guifg=#bcbcbc guibg=NONE gui=NONE 51 | 52 | hi MatchParen ctermfg=234 ctermbg=51 cterm=NONE guifg=#121212 guibg=#00ffff gui=NONE 53 | hi ColorColumn ctermfg=NONE ctermbg=236 cterm=NONE guifg=NONE guibg=#303030 gui=NONE 54 | 55 | hi Cursor ctermfg=234 ctermbg=51 cterm=NONE guifg=#121212 guibg=#00ffff gui=NONE 56 | hi CursorColumn ctermfg=250 ctermbg=233 cterm=NONE guifg=#b9b9b9 guibg=#101010 gui=NONE 57 | hi CursorLine ctermfg=250 ctermbg=233 cterm=NONE guifg=#b9b9b9 guibg=#101010 gui=NONE 58 | hi CursorLineNR ctermfg=250 ctermbg=233 cterm=NONE guifg=#b9b9b9 guibg=#101010 gui=NONE 59 | 60 | hi DiffAdd ctermfg=22 ctermbg=194 cterm=NONE guifg=#005f00 guibg=#d7ffd7 gui=NONE 61 | hi DiffChange ctermfg=166 ctermbg=233 cterm=NONE guifg=#d75f00 guibg=#121212 gui=NONE 62 | hi DiffText ctermfg=166 ctermbg=228 cterm=NONE guifg=#d75f00 guibg=#ffff87 gui=NONE 63 | hi DiffDelete ctermfg=254 ctermbg=197 cterm=NONE guifg=#e4e4e4 guibg=#ff005f gui=NONE 64 | 65 | hi VertSplit ctermfg=197 ctermbg=233 cterm=NONE guifg=#ff005f guibg=#121212 gui=NONE 66 | hi SignColumn ctermfg=233 ctermbg=233 cterm=NONE guifg=#121212 guibg=#121212 gui=NONE 67 | 68 | hi IncSearch ctermfg=51 ctermbg=NONE cterm=bold guifg=#00ffff guibg=NONE gui=bold 69 | hi Search ctermfg=237 ctermbg=229 cterm=bold guifg=#3a3a3a guibg=#ffffaf gui=bold 70 | 71 | hi TODO ctermfg=190 ctermbg=NONE cterm=NONE guifg=#d7ff00 guibg=NONE gui=NONE 72 | hi Error ctermfg=9 ctermbg=NONE cterm=underline guifg=#ff0000 guibg=NONE gui=underline 73 | hi ErrorMsg ctermfg=9 ctermbg=NONE cterm=underline guifg=#ff0000 guibg=NONE gui=underline 74 | 75 | hi PreProc ctermfg=231 ctermbg=NONE cterm=NONE guifg=#ffffff guibg=NONE gui=NONE 76 | hi Title ctermfg=197 ctermbg=NONE cterm=bold guifg=#ff005f guibg=NONE gui=bold 77 | hi WildMenu ctermfg=197 ctermbg=NONE cterm=NONE guifg=#ff005f guibg=NONE gui=NONE 78 | hi Underlined ctermfg=197 ctermbg=NONE cterm=underline guifg=#ff005f guibg=NONE gui=underline 79 | hi Directory ctermfg=197 ctermbg=NONE cterm=bold guifg=#ff005f guibg=NONE gui=bold 80 | 81 | hi Pmenu ctermfg=233 ctermbg=242 cterm=bold guifg=#121212 guibg=#6c6c6c gui=bold 82 | hi PmenuSbar ctermfg=233 ctermbg=242 cterm=bold guifg=#121212 guibg=#6c6c6c gui=bold 83 | hi PmenuThumb ctermfg=233 ctermbg=242 cterm=bold guifg=#121212 guibg=#6c6c6c gui=bold 84 | hi PmenuSel ctermfg=164 ctermbg=242 cterm=bold guifg=#d700d7 guibg=#6c6c6c gui=bold 85 | 86 | hi Folded ctermfg=258 ctermbg=239 cterm=bold guifg=#eeeeee guibg=#4e4e4e gui=bold 87 | hi FoldColumn ctermfg=258 ctermbg=239 cterm=bold guifg=#eeeeee guibg=#4e4e4e gui=bold 88 | 89 | hi Statusline ctermfg=231 ctermbg=197 cterm=bold guifg=#eeeeee guibg=#ff005f gui=bold 90 | hi StatuslineNC ctermfg=231 ctermbg=204 cterm=bold guifg=#eeeeee guibg=#ff5f87 gui=bold 91 | 92 | hi GitGutterAdd ctermfg=154 ctermbg=233 cterm=NONE guifg=#afff00 guibg=#121212 gui=NONE 93 | hi GitGutterChange ctermfg=229 ctermbg=233 cterm=NONE guifg=#ffffaf guibg=#121212 gui=NONE 94 | hi GitGutterDelete ctermfg=197 ctermbg=233 cterm=NONE guifg=#ff005f guibg=#121212 gui=NONE 95 | 96 | hi htmlTagName ctermfg=231 ctermbg=NONE cterm=NONE guifg=#ffffff guibg=NONE gui=NONE 97 | hi pythonEscape ctermfg=197 ctermbg=NONE cterm=NONE guifg=#ff005f guibg=NONE gui=NONE 98 | -------------------------------------------------------------------------------- /colors/efficient.vim: -------------------------------------------------------------------------------- 1 | " File : efficient.vim 2 | " Author: Matthieu Petiteau 3 | " Date : 01.12.2019 4 | " 5 | " A very simple but efficient monochrome-ish colorscheme. 6 | " 7 | 8 | hi clear 9 | 10 | if exists("syntax on") 11 | syntax reset 12 | endif 13 | 14 | let g:colors_name="efficient" 15 | set background=dark 16 | 17 | " 18 | " Colors 19 | " 20 | hi Normal ctermfg=231 ctermbg=233 cterm=NONE guifg=#ffffff guibg=#121212 gui=NONE 21 | hi Constant ctermfg=231 ctermbg=233 cterm=NONE guifg=#ffffff guibg=#121212 gui=NONE 22 | 23 | hi Character ctermfg=250 ctermbg=NONE cterm=NONE guifg=#bcbcbc guibg=NONE gui=NONE 24 | hi Comment ctermfg=240 ctermbg=NONE cterm=NONE guifg=#585858 guibg=NONE gui=NONE 25 | hi String ctermfg=252 ctermbg=NONE cterm=NONE guifg=#d0d0d0 guibg=NONE gui=NONE 26 | 27 | hi Number ctermfg=197 ctermbg=NONE cterm=NONE guifg=#ff005f guibg=NONE gui=NONE 28 | hi Float ctermfg=197 ctermbg=NONE cterm=NONE guifg=#ff005f guibg=NONE gui=NONE 29 | hi Boolean ctermfg=231 ctermbg=NONE cterm=NONE guifg=#ffffff guibg=NONE gui=NONE 30 | hi Identifier ctermfg=231 ctermbg=NONE cterm=NONE guifg=#ffffff guibg=NONE gui=NONE 31 | 32 | hi Include ctermfg=231 ctermbg=NONE cterm=bold guifg=#ffffff guibg=NONE gui=bold 33 | hi Function ctermfg=231 ctermbg=NONE cterm=NONE guifg=#ffffff guibg=NONE gui=NONE 34 | hi Statement ctermfg=231 ctermbg=NONE cterm=bold guifg=#ffffff guibg=NONE gui=bold 35 | hi Conditional ctermfg=231 ctermbg=NONE cterm=bold guifg=#ffffff guibg=NONE gui=bold 36 | hi Operator ctermfg=231 ctermbg=NONE cterm=NONE guifg=#ffffff guibg=NONE gui=NONE 37 | hi Repeat ctermfg=231 ctermbg=NONE cterm=NONE guifg=#ffffff guibg=NONE gui=NONE 38 | 39 | hi Type ctermfg=231 ctermbg=NONE cterm=NONE guifg=#ffffff guibg=NONE gui=NONE 40 | hi Character ctermfg=231 ctermbg=NONE cterm=NONE guifg=#ffffff guibg=NONE gui=NONE 41 | hi linenr ctermfg=240 ctermbg=NONE cterm=NONE guifg=#585858 guibg=NONE gui=NONE 42 | 43 | hi NonText ctermfg=241 ctermbg=NONE cterm=NONE guifg=#626262 guibg=NONE gui=NONE 44 | hi Visual ctermfg=233 ctermbg=243 cterm=NONE guifg=#121212 guibg=#767676 gui=NONE 45 | 46 | hi Special ctermfg=250 ctermbg=NONE cterm=NONE guifg=#bcbcbc guibg=NONE gui=NONE 47 | hi SpecialChar ctermfg=250 ctermbg=NONE cterm=NONE guifg=#bcbcbc guibg=NONE gui=NONE 48 | hi SpecialKey ctermfg=250 ctermbg=NONE cterm=NONE guifg=#bcbcbc guibg=NONE gui=NONE 49 | 50 | hi MatchParen ctermfg=234 ctermbg=51 cterm=NONE guifg=#121212 guibg=#00ffff gui=NONE 51 | hi ColorColumn ctermfg=NONE ctermbg=236 cterm=NONE guifg=NONE guibg=#303030 gui=NONE 52 | 53 | hi Cursor ctermfg=234 ctermbg=51 cterm=NONE guifg=#121212 guibg=#00ffff gui=NONE 54 | hi CursorColumn ctermfg=250 ctermbg=233 cterm=NONE guifg=#b9b9b9 guibg=#101010 gui=NONE 55 | hi CursorLine ctermfg=250 ctermbg=233 cterm=NONE guifg=#b9b9b9 guibg=#101010 gui=NONE 56 | hi CursorLineNR ctermfg=250 ctermbg=233 cterm=NONE guifg=#b9b9b9 guibg=#101010 gui=NONE 57 | 58 | hi DiffAdd ctermfg=22 ctermbg=194 cterm=NONE guifg=#005f00 guibg=#d7ffd7 gui=NONE 59 | hi DiffChange ctermfg=166 ctermbg=233 cterm=NONE guifg=#d75f00 guibg=#121212 gui=NONE 60 | hi DiffText ctermfg=166 ctermbg=228 cterm=NONE guifg=#d75f00 guibg=#ffff87 gui=NONE 61 | hi DiffDelete ctermfg=254 ctermbg=197 cterm=NONE guifg=#e4e4e4 guibg=#ff005f gui=NONE 62 | 63 | hi VertSplit ctermfg=197 ctermbg=233 cterm=NONE guifg=#ff005f guibg=#121212 gui=NONE 64 | hi SignColumn ctermfg=233 ctermbg=233 cterm=NONE guifg=#121212 guibg=#121212 gui=NONE 65 | 66 | hi IncSearch ctermfg=51 ctermbg=NONE cterm=bold guifg=#00ffff guibg=NONE gui=bold 67 | hi Search ctermfg=237 ctermbg=229 cterm=bold guifg=#3a3a3a guibg=#ffffaf gui=bold 68 | 69 | hi TODO ctermfg=190 ctermbg=NONE cterm=NONE guifg=#d7ff00 guibg=NONE gui=NONE 70 | hi Error ctermfg=9 ctermbg=NONE cterm=underline guifg=#ff0000 guibg=NONE gui=underline 71 | hi ErrorMsg ctermfg=9 ctermbg=NONE cterm=underline guifg=#ff0000 guibg=NONE gui=underline 72 | 73 | hi PreProc ctermfg=231 ctermbg=NONE cterm=NONE guifg=#ffffff guibg=NONE gui=NONE 74 | hi Title ctermfg=197 ctermbg=NONE cterm=bold guifg=#ff005f guibg=NONE gui=bold 75 | hi WildMenu ctermfg=197 ctermbg=NONE cterm=NONE guifg=#ff005f guibg=NONE gui=NONE 76 | hi Underlined ctermfg=197 ctermbg=NONE cterm=underline guifg=#ff005f guibg=NONE gui=underline 77 | hi Directory ctermfg=197 ctermbg=NONE cterm=bold guifg=#ff005f guibg=NONE gui=bold 78 | 79 | hi Pmenu ctermfg=233 ctermbg=242 cterm=bold guifg=#121212 guibg=#6c6c6c gui=bold 80 | hi PmenuSbar ctermfg=233 ctermbg=242 cterm=bold guifg=#121212 guibg=#6c6c6c gui=bold 81 | hi PmenuThumb ctermfg=233 ctermbg=242 cterm=bold guifg=#121212 guibg=#6c6c6c gui=bold 82 | hi PmenuSel ctermfg=164 ctermbg=242 cterm=bold guifg=#d700d7 guibg=#6c6c6c gui=bold 83 | 84 | hi Folded ctermfg=258 ctermbg=239 cterm=bold guifg=#eeeeee guibg=#4e4e4e gui=bold 85 | hi FoldColumn ctermfg=258 ctermbg=239 cterm=bold guifg=#eeeeee guibg=#4e4e4e gui=bold 86 | 87 | hi Statusline ctermfg=231 ctermbg=197 cterm=bold guifg=#eeeeee guibg=#ff005f gui=bold 88 | hi StatuslineNC ctermfg=231 ctermbg=204 cterm=bold guifg=#eeeeee guibg=#ff5f87 gui=bold 89 | 90 | hi GitGutterAdd ctermfg=154 ctermbg=233 cterm=NONE guifg=#afff00 guibg=#121212 gui=NONE 91 | hi GitGutterChange ctermfg=229 ctermbg=233 cterm=NONE guifg=#ffffaf guibg=#121212 gui=NONE 92 | hi GitGutterDelete ctermfg=197 ctermbg=233 cterm=NONE guifg=#ff005f guibg=#121212 gui=NONE 93 | 94 | hi htmlTagName ctermfg=231 ctermbg=NONE cterm=bold guifg=#ffffff guibg=NONE gui=bold 95 | hi pythonEscape ctermfg=197 ctermbg=NONE cterm=bold guifg=#ff005f guibg=NONE gui=bold 96 | --------------------------------------------------------------------------------