Last active
June 13, 2022 02:55
-
-
Save euclaise/3f06c8a62fd206d9acfe048878375026 to your computer and use it in GitHub Desktop.
A softer acme-inspired vim colorscheme
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
highlight clear | |
" Based on acme-ish-colors https://github.com/notagoodidea/acme-ish-colors/blob/master/colors/acme-ish.vim | |
" Following convention of acme-colors : | |
" 232 (#080808) instead of black as it can be overwritten by the terminal | |
" emulator | |
highlight! Normal guibg=#f5f0e7 guifg=#000000 ctermbg=230 ctermfg=232 | |
highlight! NonText guibg=bg guifg=#d5d0c7 ctermbg=bg ctermfg=230 | |
highlight! StatusLine guibg=#aeeeee guifg=#000000 gui=NONE ctermbg=159 ctermfg=232 cterm=NONE | |
highlight! StatusLineNC guibg=#eaffff guifg=#000000 gui=NONE ctermbg=194 ctermfg=232 cterm=NONE | |
highlight! WildMenu guibg=#000000 guifg=#eaffff gui=NONE ctermbg=black ctermfg=159 cterm=NONE | |
highlight! VertSplit guibg=#ffffea guifg=#000000 gui=NONE ctermbg=159 ctermfg=232 cterm=NONE | |
highlight! Folded guibg=#cccc7c guifg=fg gui=italic ctermbg=187 ctermfg=fg cterm=italic | |
highlight! FoldColumn guibg=#fcfcce guifg=fg ctermbg=229 ctermfg=fg | |
highlight! Conceal guibg=bg guifg=fg gui=NONE ctermbg=bg ctermfg=fg cterm=NONE | |
highlight! LineNr guibg=bg guifg=#808050 gui=italic ctermbg=bg ctermfg=239 cterm=italic | |
highlight! Visual guibg=fg guifg=bg ctermbg=fg ctermfg=bg | |
highlight! CursorLine guibg=#ffffca guifg=fg ctermbg=230 ctermfg=fg | |
highlight! Statement guibg=bg guifg=fg gui=NONE ctermbg=bg ctermfg=fg cterm=NONE "italic | |
highlight! Identifier guibg=bg guifg=fg gui=NONE ctermbg=bg ctermfg=fg cterm=NONE "bold | |
highlight! Function guibg=bg guifg=fg gui=NONE ctermbg=bg ctermfg=fg cterm=NONE "underline | |
highlight! Type guibg=bg guifg=fg gui=NONE ctermbg=bg ctermfg=fg cterm=NONE "bold | |
highlight! PreProc guibg=bg guifg=fg gui=NONE ctermbg=bg ctermfg=fg cterm=bold | |
highlight! Constant guibg=bg guifg=fg gui=bold ctermbg=bg ctermfg=233 cterm=bold "bold | |
highlight! Comment guibg=bg guifg=#505050 gui=italic ctermbg=bg ctermfg=248 cterm=italic | |
highlight! Special guibg=bg guifg=fg gui=NONE ctermbg=bg ctermfg=fg cterm=NONE "bold | |
highlight! SpecialKey guibg=bg guifg=fg gui=NONE ctermbg=bg ctermfg=fg cterm=NONE "bold | |
highlight! SpecialCahr guibg=bg guifg=NONE gui=NONE ctermbg=bg ctermfg=NONE cterm=NONE | |
highlight! Directory guibg=bg guifg=fg gui=NONE ctermbg=bg ctermfg=fg cterm=NONE "bold | |
highlight! link Title Directory | |
highlight! link MoreMsg Comment | |
highlight! link Question Comment | |
" Markdown | |
highlight! markdownBold gui=bold | |
highlight! markdownCode guifg=#707070 | |
highlight! markdownH1 gui=bold | |
highlight! markdownH2 gui=bold | |
highlight! markdownH3 gui=bold | |
highlight! markdownH4 gui=bold | |
highlight! markdownH5 gui=bold | |
highlight! markdownH6 gui=bold | |
highlight! ColorColumn guibg=lightgray | |
highlight! Pmenu guibg=lightgray | |
" vim | |
hi link vimFunction Identifier | |
let g:colors_name = "acme-lite" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment