SetColor() implemented

This commit is contained in:
ManjaroOne666 2018-05-07 00:35:18 +01:00
parent 1505b83a9a
commit f0ce81b2e6
1 changed files with 13 additions and 10 deletions

View File

@ -1,4 +1,4 @@
" set bg=light
highlight clear highlight clear
if exists('syntax_on') if exists('syntax_on')
@ -7,22 +7,25 @@ endif
let g:colors_name = 'monotonous' let g:colors_name = 'monotonous'
if has('gui_running') let g:d_normal_fg = '#555555'
"{{{ let g:d_normal_bg = has('gui_running') ? '#000000' : 'NONE'
hi! Normal guifg=#555555 ctermbg=none guibg=#000000 let g:l_normal_fg = '#444444'
else let g:l_normal_bg = '#eeeeee'
hi! Normal guifg=#555555 ctermbg=none guibg=NONE
endif " call SetColor('', '', '', '', '', '')
"}}}
call SetColor('Normal', g:d_normal_fg, g:d_normal_bg, g:l_normal_fg, g:l_normal_bg, '')
" highlight groups " highlight groups
"{{{ "{{{
hi! ColorColumn guibg=#1d0808 " hi! ColorColumn guibg=#1d0808
call SetColor('ColorColumn', '', '#1d0808', '', '', '')
" Conceal " Conceal
" Cursor " Cursor
" CursorIM " CursorIM
" CursorColumn " CursorColumn
hi! CursorLine guibg=#222222 term=none cterm=none gui=NONE " hi! CursorLine guibg=#222222 term=none cterm=none gui=NONE
call SetColor('CursorLine', '', '#222222', '', '', '')
hi! Directory guifg=#eeeeee term=none cterm=none gui=NONE hi! Directory guifg=#eeeeee term=none cterm=none gui=NONE
hi! DiffAdd guifg=#aaaaaa guibg=#001000 term=none cterm=none gui=NONE hi! DiffAdd guifg=#aaaaaa guibg=#001000 term=none cterm=none gui=NONE
hi! DiffChange guifg=#777777 guibg=#101010 term=none cterm=none gui=NONE hi! DiffChange guifg=#777777 guibg=#101010 term=none cterm=none gui=NONE