Update vim color schemes

This commit is contained in:
Michael Campagnaro 2019-11-28 08:22:01 -05:00
parent 6ce757d8d1
commit a6f44906ee
6 changed files with 53 additions and 42 deletions

View File

@ -13,18 +13,18 @@ if has('termguicolors')
let s:blue = "3699cc" let s:blue = "3699cc"
let s:purple = "ce93d8" let s:purple = "ce93d8"
let s:window = "37474f"
let s:grey = "b0bec5" let s:grey = "b0bec5"
let s:orange = "ffb74d" let s:orange = "ffb74d"
let s:yellow = "fff176" let s:yellow = "fff176"
let s:green = "88b888" let s:green = "88b888"
let s:red = "ef2929" let s:red = "ef2929"
let s:text = "dfdfdf" let s:text = "e9e9e9"
let s:foreground = s:text let s:foreground = s:text
let s:background = "0f3c42" let s:background = "08363c"
let s:selection = "546e7a" let s:selection = "546e7a"
let s:window = "37474f"
let s:line = "034a4a" let s:line = "034a4a"
let s:bad_spelling = "ee877d" let s:bad_spelling = "ee877d"
let s:todo = "b8fbb0" let s:todo = "b8fbb0"
@ -32,10 +32,10 @@ if has('termguicolors')
let s:error_msg_background = s:background let s:error_msg_background = s:background
let s:error_msg_foreground = "e40e0e" let s:error_msg_foreground = "e40e0e"
let s:function_name = "24f5d6" let s:function_name = "0effdb"
let s:pre_processor = "96e4dd" let s:pre_processor = "a6f0e9"
let s:define = "a5bce4" let s:define = "a5bce4"
let s:struct = "e2a2ec" let s:struct = "de90ea"
" things like 'return' " things like 'return'
let s:statement = "ffffff" let s:statement = "ffffff"
let s:number = "ffffff" let s:number = "ffffff"
@ -63,7 +63,8 @@ hi clear
if exists("syntax_on") if exists("syntax_on")
syntax reset syntax reset
endif endif
let g:colors_name = "campo-dark"
let g:colors_name = "campo-dark-blue"
if has("gui_running") || &t_Co == 88 || &t_Co == 256 if has("gui_running") || &t_Co == 88 || &t_Co == 256
" Returns an approximate grey index for the given grey level " Returns an approximate grey index for the given grey level

View File

@ -6,30 +6,39 @@
" See https://github.com/chriskempson/vim-tomorrow-theme.git for it. " See https://github.com/chriskempson/vim-tomorrow-theme.git for it.
" Hex color conversion functions borrowed from the theme "Desert256". " Hex color conversion functions borrowed from the theme "Desert256".
let g:campo_theme_use_rainbow_parens = 1
" Default GUI colors if has('termguicolors')
let s:foreground = "cfd8dc" " Supports 24-bit color range
let s:background = "333333" set termguicolors
let s:selection = "546e7a"
let s:line = "444444" let g:campo_theme_use_rainbow_parens = 0
let s:comment = "78909c"
let s:red = "ee877d" " Default GUI colors
let s:orange = "ffb74d" let s:foreground = "cfd8dc"
let s:yellow = "fff176" let s:background = "1f2431"
let s:green = "88b888" let s:selection = "546e7a"
let s:aqua = "00b8d4" let s:window = "394051"
let s:blue = "6699cc" let s:line = "323643"
let s:purple = "ce93d8" let s:comment = "96a2c1"
let s:window = "37474f" let s:red = "f27c71"
let s:grey = "b0bec5" let s:orange = "fcd8a2"
let s:yellow = "fff176"
let s:green = "80d580"
let s:aqua = "2dd7e2"
let s:blue = "2dd7e2"
let s:purple = "ce93d8"
let s:grey = "bac7ce"
else
echoerr "This theme requires 'termguicolors' support!"
endif
set background=dark set background=dark
hi clear hi clear
if exists("syntax_on") if exists("syntax_on")
syntax reset syntax reset
endif endif
let g:colors_name = "campo-dark"
let g:colors_name = "campo-dark-grey-blue"
if has("gui_running") || &t_Co == 88 || &t_Co == 256 if has("gui_running") || &t_Co == 88 || &t_Co == 256
" Returns an approximate grey index for the given grey level " Returns an approximate grey index for the given grey level

View File

@ -13,40 +13,39 @@ if has('termguicolors')
let s:blue = "3699cc" let s:blue = "3699cc"
let s:purple = "ce93d8" let s:purple = "ce93d8"
let s:window = "37474f"
let s:grey = "b0bec5" let s:grey = "b0bec5"
let s:orange = "ffb74d" let s:orange = "ffb74d"
let s:yellow = "fff176" let s:yellow = "fff176"
let s:green = "88b888" let s:green = "88b888"
let s:red = "ef2929" let s:red = "ef2929"
let s:text = "cbc5b0" let s:text = "ffffff"
let s:foreground = s:text let s:foreground = s:text
"let s:background = "132f32" let s:background = "282d37"
let s:background = "05353d"
let s:selection = "546e7a" let s:selection = "546e7a"
let s:line = "034a4a" let s:window = "394051"
let s:line = "333946"
let s:bad_spelling = "ee877d" let s:bad_spelling = "ee877d"
let s:todo = "b8fbb0" let s:todo = "b8fbb0"
let s:bugs = "b8fbb0" let s:bugs = "b8fbb0"
let s:error_msg_background = s:background let s:error_msg_background = s:background
let s:error_msg_foreground = "e40e0e" let s:error_msg_foreground = "e40e0e"
let s:function_name = "2ebda9" let s:function_name = s:text
let s:pre_processor = "97debf" let s:pre_processor = s:text
let s:define = "a5bce4" let s:define = s:text
let s:struct = "ce93d8" let s:struct = s:text
" things like 'return' " things like 'return'
let s:statement = "ffffff" let s:statement = s:text
let s:number = "ffffff" let s:number = s:text
" this like 'inline' " this like 'inline'
let s:type = "ffffff" let s:type = s:text
" #include " #include
let s:include = s:text let s:include = s:text
let s:string = s:text let s:string = s:text
let s:comment = "71d87d" let s:comment = "aaaaaa"
let s:constant = "a0dbdf" let s:constant = s:text
let s:c_type = s:pre_processor let s:c_type = s:pre_processor
let s:c_storage_class = s:text let s:c_storage_class = s:text
@ -64,7 +63,8 @@ hi clear
if exists("syntax_on") if exists("syntax_on")
syntax reset syntax reset
endif endif
let g:colors_name = "campo-dark"
let g:colors_name = "campo-dark-greyscale"
if has("gui_running") || &t_Co == 88 || &t_Co == 256 if has("gui_running") || &t_Co == 88 || &t_Co == 256
" Returns an approximate grey index for the given grey level " Returns an approximate grey index for the given grey level

View File

@ -229,3 +229,4 @@ updatable
blogging blogging
Screenshot Screenshot
architecting architecting
souvlaki

Binary file not shown.

6
vimrc
View File

@ -718,9 +718,9 @@ set statusline=%<%f\ (%{&ft})\ %-4(%m%)%=%-19(%3l,%02c%03V%)
""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" """""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
let g:campo_theme_use_rainbow_parens = 1 let g:campo_theme_use_rainbow_parens = 1
"let s:dark_theme = 'campo-dark-green' "let s:dark_theme = 'campo-dark-blue'
let s:dark_theme = 'campo-flux-dark-green' let s:dark_theme = 'campo-dark-greyscale'
"let s:dark_theme = 'campo-dark' "let s:dark_theme = 'campo-dark-grey-blue'
let s:light_theme = 'campo-light' let s:light_theme = 'campo-light'
execute "autocmd ColorScheme " . s:dark_theme . " call ReloadRainbow()" execute "autocmd ColorScheme " . s:dark_theme . " call ReloadRainbow()"