summaryrefslogtreecommitdiffstats
path: root/colors/vylight.vim
diff options
context:
space:
mode:
authorAhmed Abdelhalim <[email protected]>2015-06-27 23:29:09 +0200
committerAhmed Abdelhalim <[email protected]>2015-06-27 23:29:09 +0200
commitac3d9b59f979344ad051e0e2a1b15e6b4a0c2a4e (patch)
tree77ada96cb7108d639f66cc0cebb6e5831b88b276 /colors/vylight.vim
Add the colors schemas for vim
Diffstat (limited to 'colors/vylight.vim')
-rwxr-xr-xcolors/vylight.vim81
1 files changed, 81 insertions, 0 deletions
diff --git a/colors/vylight.vim b/colors/vylight.vim
new file mode 100755
index 0000000..156adf3
--- /dev/null
+++ b/colors/vylight.vim
@@ -0,0 +1,81 @@
+"
+" Vim colour file
+"
+" Maintainer: Vy-Shane Sin Fat <[email protected]>
+" Last Change: 20 November 2009
+" Version: 1.1
+"
+" This colour file is meant for GUI use.
+"
+
+set background=light
+hi clear
+if exists("syntax_on")
+ syntax reset
+endif
+let g:colors_name="vylight"
+
+
+hi Normal guifg=#1a1a1a guibg=white
+hi Title guifg=black guibg=white
+hi Cursor guibg=#111111
+hi LineNr guifg=#aaaaaa guibg=#f8f8f8
+hi Visual guibg=#bbddff
+hi NonText guifg=#cccccc guibg=#fafafa
+hi StatusLine guifg=#222222 guibg=#eeeeee gui=none
+hi StatusLineNC guifg=#666666 guibg=#eeeeee gui=none
+hi VertSplit guifg=#eeeeee guibg=#eeeeee gui=none
+hi ModeMsg guifg=#007050 guibg=#eeeeee gui=none
+hi ErrorMsg guifg=#f03050 guibg=#eeeeee gui=none
+hi Error guifg=#bb3355 guibg=white gui=none
+
+
+" Vim 7.x specific
+if version >= 700
+ hi CursorLine guibg=#eeeeee gui=none
+ hi MatchParen guibg=#ccffdd gui=none
+ hi Pmenu guifg=#60656f guibg=#f0f5ff gui=none
+ hi PmenuSel guifg=white guibg=#3585ef gui=bold
+ hi PmenuSbar guifg=#d0d5dd guibg=#e0e5ee gui=bold
+ hi PmenuThumb guifg=#e0e5ee guibg=#c0c5dd gui=bold
+ hi Search guibg=#fcfcaa gui=none
+ hi IncSearch guibg=#ffff33 gui=bold
+endif
+
+
+" Syntax highlighting
+hi Comment guifg=#668866 gui=none
+"hi Todo guifg=#225522 guibg=white gui=italic
+hi Todo guifg=#446644 guibg=#ddeecc gui=italic
+hi Operator guifg=#1a1a1a gui=none
+hi Identifier guifg=#1a1a1a gui=none
+hi Statement guifg=#0050b0 gui=none
+hi Type guifg=#0050b0 gui=none
+hi Constant guifg=#204070 gui=none
+hi Conditional guifg=#006040 gui=none
+hi Delimiter guifg=#1a1a1a gui=none
+hi PreProc guifg=#007050 gui=none
+hi Special guifg=#a05050 gui=none
+hi Keyword guifg=#007050 gui=none
+
+hi link Function Normal
+hi link Character Constant
+hi link String Constant
+hi link Boolean Constant
+hi link Number Constant
+hi link Float Number
+hi link Repeat Conditional
+hi link Label Statement
+hi link Exception Statement
+hi link Include PreProc
+hi link Define PreProc
+hi link Macro PreProc
+hi link PreCondit PreProc
+hi link StorageClass Type
+hi link Structure Type
+hi link Typedef Type
+hi link Tag Special
+hi link SpecialChar Special
+hi link SpecialComment Special
+hi link Debug Special
+