]> git.r.bdr.sh - rbdr/dotfiles/blame - vim/colors/dawn.vim
Turn off the blur
[rbdr/dotfiles] / vim / colors / dawn.vim
CommitLineData
0d23b6e5
BB
1" Vim color file
2" Maintainer: Ajit J. Thakkar (ajit AT unb DOT ca)
3" Last Change: 2005 Nov. 24
4" Version: 1.5
5" URL: http://www.unb.ca/chem/ajit/vim.htm
6
7" This GUI-only color scheme has a light grey background, and is a softer
8" variant of the default and morning color schemes.
9
10set background=light
11hi clear
12if exists("syntax_on")
13 syntax reset
14endif
15
16let colors_name = "dawn"
17
18hi Normal guifg=Black guibg=grey90
19"hi Normal guifg=Black guibg=grey80
20
21" Groups used in the 'highlight' and 'guicursor' options default value.
22hi ErrorMsg gui=NONE guifg=Red guibg=Linen
23hi IncSearch gui=NONE guifg=fg guibg=LightGreen
24hi ModeMsg gui=NONE guifg=fg guibg=bg
25hi StatusLine gui=NONE guifg=DarkBlue guibg=grey70
26hi StatusLineNC gui=NONE guifg=grey90 guibg=grey70
27hi VertSplit gui=NONE guifg=grey70 guibg=grey70
28hi Visual gui=reverse guifg=Grey guibg=fg
29hi VisualNOS gui=underline,bold guifg=fg guibg=bg
30hi DiffText gui=NONE guifg=Blue guibg=LightYellow
31"hi DiffText gui=NONE guifg=Blue guibg=MistyRose2
32hi Cursor guifg=NONE guibg=Green
33hi lCursor guifg=NONE guibg=Cyan
34hi Directory guifg=Blue guibg=bg
35hi LineNr guifg=Brown guibg=grey80
36hi MoreMsg gui=NONE guifg=SeaGreen guibg=bg
37hi NonText gui=NONE guifg=Blue guibg=grey80
38hi Question gui=NONE guifg=SeaGreen guibg=bg
39hi Search guifg=fg guibg=PeachPuff
40hi SpecialKey guifg=Blue guibg=bg
41hi Title gui=NONE guifg=Magenta guibg=bg
42hi WarningMsg guifg=Red guibg=bg
43hi WildMenu guifg=fg guibg=PeachPuff
44hi Folded guifg=Grey40 guibg=bg " guifg=DarkBlue guibg=LightGrey
45hi FoldColumn guifg=DarkBlue guibg=Grey
46hi DiffAdd gui=NONE guifg=Blue guibg=LightCyan
47hi DiffChange gui=NONE guifg=fg guibg=MistyRose2
48hi DiffDelete gui=NONE guifg=LightBlue guibg=LightCyan
49
50" Colors for syntax highlighting
51hi Constant gui=NONE guifg=azure4 guibg=bg
52"hi Constant gui=NONE guifg=DeepSkyBlue4 guibg=bg
53hi String gui=NONE guifg=DarkOliveGreen4 guibg=bg
54hi Special gui=NONE guifg=Cyan4 guibg=bg
55hi Statement gui=NONE guifg=SlateBlue4 guibg=bg
56hi Operator gui=NONE guifg=Purple guibg=bg
57hi Ignore gui=NONE guifg=bg guibg=bg
58if v:version >= 700
59 hi SpellBad gui=undercurl guisp=DeepPink1 guifg=fg guibg=bg
60 hi SpellCap gui=undercurl guisp=Blue guifg=fg guibg=bg
61 hi SpellRare gui=undercurl guisp=Black guifg=fg guibg=bg
62 hi SpellLocal gui=undercurl guisp=SeaGreen guifg=fg guibg=bg
63endif
64hi ToDo gui=NONE guifg=DeepPink1 guibg=bg
65hi Error gui=NONE guifg=Red guibg=Linen
66hi Comment gui=NONE guifg=RoyalBlue guibg=NONE
67hi Identifier gui=NONE guifg=DodgerBlue3 guibg=NONE
68"hi Identifier gui=NONE guifg=SteelBlue4 guibg=NONE
69hi PreProc gui=NONE guifg=Magenta4 guibg=NONE
70hi Type gui=NONE guifg=Brown guibg=NONE
71hi Underlined gui=underline guifg=SlateBlue guibg=bg
72"if exists("g:minimal_colors")
73" hi Statement gui=NONE guifg=fg guibg=bg
74" hi Identifier gui=NONE guifg=fg guibg=bg
75" hi Type gui=NONE guifg=fg guibg=bg
76"endif
77
78" vim: sw=2