Update vim color scheme

Show the column line in the dark theme.
This commit is contained in:
Michael Campagnaro 2017-07-26 12:04:42 -04:00
parent 420cdca5df
commit b1d21192f8
2 changed files with 14 additions and 22 deletions

View File

@ -1,18 +1,16 @@
" A simple dark vim colorscheme.
" Maintainer: zcodes <zcodes@qq.com>
" Maintainer: Michael Campagnaro <mikecampo@gmail.com>
" Version: 1.0
"
" The theme file original copyed from Tomorrow theme.
" The theme file original copied from the Tomorrow theme.
" See https://github.com/chriskempson/vim-tomorrow-theme.git for it.
" And hex color conversion functions borrowed from the theme "Desert256".
"
" Most of the colors based on Google Material Design.
" Hex color conversion functions borrowed from the theme "Desert256".
" Default GUI colors
let s:foreground = "cfd8dc"
let s:background = "263238"
let s:background = "333333"
let s:selection = "546e7a"
let s:line = "37474f"
let s:line = "444444"
let s:comment = "78909c"
let s:red = "ee877d"
let s:orange = "ffb74d"
@ -24,11 +22,6 @@ let s:purple = "ce93d8"
let s:window = "37474f"
let s:grey = "b0bec5"
if !has("gui_running")
let s:background = "333333"
let s:line = "303030"
endif
set background=dark
hi clear
if exists("syntax_on")

View File

@ -1,15 +1,12 @@
" basic-light -- a simple light vim theme
"
" Maintainer: zcodes <zcodes@qq.com>
" A simple light vim colorscheme.
" Maintainer: Michael Campagnaro <mikecampo@gmail.com>
" Version: 1.0
"
" the theme file original copyed from Tomorrow theme.
" see: https://github.com/chriskempson/vim-tomorrow-theme.git for it.
"
" the colors choose from Google Material Desgin and some from Sublime Text
" LAZY theme.
" The theme file original copied from the Tomorrow theme.
" See https://github.com/chriskempson/vim-tomorrow-theme.git for it.
" Hex color conversion functions borrowed from the theme "Desert256".
" default gui colors
" Default GUI colors
let s:foreground = "263238"
let s:background = "fbfbfb"
let s:selection = "e3fc8d"
@ -26,7 +23,9 @@ let s:window = "cfd8dc"
set background=light
hi clear
syntax reset
if exists("syntax_on")
syntax reset
endif
let g:colors_name = "basic-light"