2 """""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
4 " File Name: spring.vim
5 " Abstract: A color sheme file (only for GVIM), which make the VIM
6 " bright with colors. It looks like the flowers are in
8 " Author: CHE Wenlong <chewenlong AT buaa.edu.cn>
10 " Last Change: September 16, 2008
12 """""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
14 if !has("gui_running")
15 runtime! colors/default.vim
26 if exists("syntax_on")
31 let colors_name = "spring"
34 hi Normal guifg=#000000 guibg=#cce8cf gui=NONE
35 hi Visual guibg=#ccffff gui=NONE
36 hi Cursor guifg=#f5deb3 guibg=#2f4f4f gui=NONE
37 hi Cursorline guibg=#ccffff
38 hi lCursor guifg=#000000 guibg=#ffffff gui=NONE
39 hi LineNr guifg=#1060a0 guibg=#e0e0e0 gui=NONE
40 hi Title guifg=#202020 guibg=NONE gui=bold
41 hi Underlined guifg=#202020 guibg=NONE gui=underline
44 hi StatusLine guifg=#f5deb3 guibg=#2f4f4f gui=bold
45 hi StatusLineNC guifg=#f5deb3 guibg=#2f4f4f gui=NONE
46 hi VertSplit guifg=#2f4f4f guibg=#2f4f4f gui=NONE
49 hi Folded guifg=#006699 guibg=#e0e0e0 gui=NONE
52 hi Type guifg=#009933 guibg=NONE gui=bold
53 hi Define guifg=#1060a0 guibg=NONE gui=bold
54 hi Comment guifg=#1e90ff guibg=NONE gui=NONE
55 hi Constant guifg=#a07040 guibg=NONE gui=NONE
56 hi String guifg=#a07040 guibg=NONE gui=NONE
57 hi Number guifg=#cd0000 guibg=NONE gui=NONE
58 hi Statement guifg=#fc548f guibg=NONE gui=bold
61 hi PreProc guifg=#1060a0 guibg=NONE gui=NONE
62 hi Error guifg=#ff0000 guibg=#ffffff gui=bold,underline
63 hi Todo guifg=#a0b0c0 guibg=NONE gui=bold,underline
64 hi Special guifg=#8B038D guibg=NONE gui=NONE
65 hi SpecialKey guifg=#d8a080 guibg=#e8e8e8 gui=NONE
67 """""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
71 """""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""