]> git.r.bdr.sh - rbdr/dotfiles/blame - vim/colors/spring.vim
Turn off the blur
[rbdr/dotfiles] / vim / colors / spring.vim
CommitLineData
0d23b6e5
BB
1
2"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
3
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
7" blossom in Spring.
8" Author: CHE Wenlong <chewenlong AT buaa.edu.cn>
9" Version: 1.0
10" Last Change: September 16, 2008
11
12"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
13
14if !has("gui_running")
15 runtime! colors/default.vim
16 finish
17endif
18
19set background=light
20
21hi clear
22
23" Version control
24if version > 580
25 hi clear
26 if exists("syntax_on")
27 syntax reset
28 endif
29endif
30
31let colors_name = "spring"
32
33" Common
34hi Normal guifg=#000000 guibg=#cce8cf gui=NONE
35hi Visual guibg=#ccffff gui=NONE
36hi Cursor guifg=#f5deb3 guibg=#2f4f4f gui=NONE
37hi Cursorline guibg=#ccffff
38hi lCursor guifg=#000000 guibg=#ffffff gui=NONE
39hi LineNr guifg=#1060a0 guibg=#e0e0e0 gui=NONE
40hi Title guifg=#202020 guibg=NONE gui=bold
41hi Underlined guifg=#202020 guibg=NONE gui=underline
42
43" Split
44hi StatusLine guifg=#f5deb3 guibg=#2f4f4f gui=bold
45hi StatusLineNC guifg=#f5deb3 guibg=#2f4f4f gui=NONE
46hi VertSplit guifg=#2f4f4f guibg=#2f4f4f gui=NONE
47
48" Folder
49hi Folded guifg=#006699 guibg=#e0e0e0 gui=NONE
50
51" Syntax
52hi Type guifg=#009933 guibg=NONE gui=bold
53hi Define guifg=#1060a0 guibg=NONE gui=bold
54hi Comment guifg=#1e90ff guibg=NONE gui=NONE
55hi Constant guifg=#a07040 guibg=NONE gui=NONE
56hi String guifg=#a07040 guibg=NONE gui=NONE
57hi Number guifg=#cd0000 guibg=NONE gui=NONE
58hi Statement guifg=#fc548f guibg=NONE gui=bold
59
60" Others
61hi PreProc guifg=#1060a0 guibg=NONE gui=NONE
62hi Error guifg=#ff0000 guibg=#ffffff gui=bold,underline
63hi Todo guifg=#a0b0c0 guibg=NONE gui=bold,underline
64hi Special guifg=#8B038D guibg=NONE gui=NONE
65hi SpecialKey guifg=#d8a080 guibg=#e8e8e8 gui=NONE
66
67"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
68
69" vim:tabstop=4
70
71"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""