├── LICENSE ├── README.md └── colors └── acme.vim /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2019 plan9-for-vimspace 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 | # acme-colors 2 | 3 | acme colors for vim. 4 | 5 | supports 256 colors. 6 | 7 | ![screenshot](http://i.imgur.com/FJmTGqp.png) 8 | 9 | -------------------------------------------------------------------------------- /colors/acme.vim: -------------------------------------------------------------------------------- 1 | highlight clear 2 | 3 | " for cterm, 'black' might get overwritten by the terminal emulator, so we use 4 | " 232 (#080808), which is close enough. 5 | 6 | highlight! Normal guibg=#ffffea guifg=#000000 ctermbg=230 ctermfg=232 7 | highlight! NonText guibg=bg guifg=#ffffea ctermbg=bg ctermfg=230 8 | highlight! StatusLine guibg=#aeeeee guifg=#000000 gui=NONE ctermbg=159 ctermfg=232 cterm=NONE 9 | highlight! StatusLineNC guibg=#eaffff guifg=#000000 gui=NONE ctermbg=194 ctermfg=232 cterm=NONE 10 | highlight! WildMenu guibg=#000000 guifg=#eaffff gui=NONE ctermbg=black ctermfg=159 cterm=NONE 11 | highlight! VertSplit guibg=#ffffea guifg=#000000 gui=NONE ctermbg=159 ctermfg=232 cterm=NONE 12 | highlight! Folded guibg=#cccc7c guifg=fg gui=italic ctermbg=187 ctermfg=fg cterm=italic 13 | highlight! FoldColumn guibg=#fcfcce guifg=fg ctermbg=229 ctermfg=fg 14 | highlight! Conceal guibg=bg guifg=fg gui=NONE ctermbg=bg ctermfg=fg cterm=NONE 15 | highlight! LineNr guibg=bg guifg=#505050 gui=italic ctermbg=bg ctermfg=239 cterm=italic 16 | highlight! Visual guibg=fg guifg=bg ctermbg=fg ctermfg=bg 17 | highlight! CursorLine guibg=#ffffca guifg=fg ctermbg=230 ctermfg=fg 18 | highlight! Pmenu guibg=bg guifg=fg ctermbg=bg ctermfg=fg 19 | highlight! PmenuSel guibg=fg guifg=bg ctermbg=fg ctermfg=bg 20 | 21 | highlight! Statement guibg=bg guifg=fg gui=italic ctermbg=bg ctermfg=fg cterm=italic 22 | highlight! Identifier guibg=bg guifg=fg gui=bold ctermbg=bg ctermfg=fg cterm=bold 23 | highlight! Type guibg=bg guifg=fg gui=bold ctermbg=bg ctermfg=fg cterm=bold 24 | highlight! PreProc guibg=bg guifg=fg gui=bold ctermbg=bg ctermfg=fg cterm=bold 25 | highlight! Constant guibg=bg guifg=#101010 gui=bold ctermbg=bg ctermfg=233 cterm=italic 26 | highlight! Comment guibg=bg guifg=#303030 gui=italic ctermbg=bg ctermfg=236 cterm=italic 27 | highlight! Special guibg=bg guifg=fg gui=bold ctermbg=bg ctermfg=fg cterm=bold 28 | highlight! SpecialKey guibg=bg guifg=fg gui=bold ctermbg=bg ctermfg=fg cterm=bold 29 | highlight! NonText guibg=bg guifg=fg gui=bold ctermbg=bg ctermfg=fg cterm=bold 30 | highlight! Directory guibg=bg guifg=fg gui=bold ctermbg=bg ctermfg=fg cterm=bold 31 | highlight! link Title Directory 32 | highlight! link MoreMsg Comment 33 | highlight! link Question Comment 34 | 35 | " vim 36 | hi link vimFunction Identifier 37 | 38 | let g:colors_name = "acme" 39 | --------------------------------------------------------------------------------