22 lines
676 B
VimL
22 lines
676 B
VimL
" kuronami.vim - a Kuronami inspired colorscheme for Vim
|
|
|
|
if exists("syntax_on")
|
|
syntax reset
|
|
endif
|
|
let g:colors_name = "kuronami"
|
|
|
|
" Background and foreground
|
|
hi Normal guifg=#c9c9c9 guibg=#181a26
|
|
hi Cursor guibg=#e97f86
|
|
hi Comment guifg=#7fbbe9 gui=italic
|
|
hi Constant guifg=#cdb38f
|
|
hi String guifg=#65bab4
|
|
hi Function guifg=#fffafa
|
|
hi Keyword guifg=#a5bad7
|
|
hi Identifier guifg=#fffafa
|
|
hi Error guifg=#e97f86 gui=bold
|
|
hi WarningMsg guifg=#cdb38f gui=bold
|
|
hi Search guibg=#e97f86 guifg=#181a26
|
|
hi Visual guibg=#2e41ac
|
|
hi LineNr guifg=#a5bad7 guibg=#181a26
|
|
hi StatusLine guifg=#232328 guibg=#b3b3b3
|