mirror of
https://github.com/prurigro/darkcloud-nvimconfig.git
synced 2024-11-09 15:06:38 -05:00
Fix colors in GUI
This commit is contained in:
parent
0d70c1bdfa
commit
ee6d30175a
1 changed files with 20 additions and 1 deletions
|
@ -1,4 +1,23 @@
|
|||
if &t_Co >= 256
|
||||
if has("gui_running")
|
||||
let g:cBlack = '#000000'
|
||||
let g:cWhite = '#ffffff'
|
||||
'
|
||||
let g:cGray1 = '#dadada'
|
||||
let g:cGray2 = '#c6c6c6'
|
||||
let g:cGray3 = '#6c6c6c'
|
||||
let g:cGray4 = '#4e4e4e'
|
||||
'
|
||||
let g:cBlue = '#87d7ff'
|
||||
let g:cRed = '#d75f5f'
|
||||
let g:cYellow = '#ffd787'
|
||||
'
|
||||
let g:cDarkBlue = '#5fafd7'
|
||||
let g:cDarkRed = '#af5f5f'
|
||||
let g:cDarkYellow = '#d7af5f'
|
||||
'
|
||||
let g:cLightBg = '#303030'
|
||||
let g:cDarkBg = '#262626'
|
||||
elseif &t_Co >= 256
|
||||
let g:cBlack = '0' "#000000
|
||||
let g:cWhite = '15' "#ffffff
|
||||
|
||||
|
|
Loading…
Reference in a new issue