dawn.vim (2865B)
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 10 set background=light 11 hi clear 12 if exists("syntax_on") 13 syntax reset 14 endif 15 16 let colors_name = "dawn" 17 18 hi Normal guifg=Black guibg=grey90 19 "hi Normal guifg=Black guibg=grey80 20 21 " Groups used in the 'highlight' and 'guicursor' options default value. 22 hi ErrorMsg gui=NONE guifg=Red guibg=Linen 23 hi IncSearch gui=NONE guifg=fg guibg=LightGreen 24 hi ModeMsg gui=NONE guifg=fg guibg=bg 25 hi StatusLine gui=NONE guifg=DarkBlue guibg=grey70 26 hi StatusLineNC gui=NONE guifg=grey90 guibg=grey70 27 hi VertSplit gui=NONE guifg=grey70 guibg=grey70 28 hi Visual gui=reverse guifg=Grey guibg=fg 29 hi VisualNOS gui=underline,bold guifg=fg guibg=bg 30 hi DiffText gui=NONE guifg=Blue guibg=LightYellow 31 "hi DiffText gui=NONE guifg=Blue guibg=MistyRose2 32 hi Cursor guifg=NONE guibg=Green 33 hi lCursor guifg=NONE guibg=Cyan 34 hi Directory guifg=Blue guibg=bg 35 hi LineNr guifg=Brown guibg=grey80 36 hi MoreMsg gui=NONE guifg=SeaGreen guibg=bg 37 hi NonText gui=NONE guifg=Blue guibg=grey80 38 hi Question gui=NONE guifg=SeaGreen guibg=bg 39 hi Search guifg=fg guibg=PeachPuff 40 hi SpecialKey guifg=Blue guibg=bg 41 hi Title gui=NONE guifg=Magenta guibg=bg 42 hi WarningMsg guifg=Red guibg=bg 43 hi WildMenu guifg=fg guibg=PeachPuff 44 hi Folded guifg=Grey40 guibg=bg " guifg=DarkBlue guibg=LightGrey 45 hi FoldColumn guifg=DarkBlue guibg=Grey 46 hi DiffAdd gui=NONE guifg=Blue guibg=LightCyan 47 hi DiffChange gui=NONE guifg=fg guibg=MistyRose2 48 hi DiffDelete gui=NONE guifg=LightBlue guibg=LightCyan 49 50 " Colors for syntax highlighting 51 hi Constant gui=NONE guifg=azure4 guibg=bg 52 "hi Constant gui=NONE guifg=DeepSkyBlue4 guibg=bg 53 hi String gui=NONE guifg=DarkOliveGreen4 guibg=bg 54 hi Special gui=NONE guifg=Cyan4 guibg=bg 55 hi Statement gui=NONE guifg=SlateBlue4 guibg=bg 56 hi Operator gui=NONE guifg=Purple guibg=bg 57 hi Ignore gui=NONE guifg=bg guibg=bg 58 if 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 63 endif 64 hi ToDo gui=NONE guifg=DeepPink1 guibg=bg 65 hi Error gui=NONE guifg=Red guibg=Linen 66 hi Comment gui=NONE guifg=RoyalBlue guibg=NONE 67 hi Identifier gui=NONE guifg=DodgerBlue3 guibg=NONE 68 "hi Identifier gui=NONE guifg=SteelBlue4 guibg=NONE 69 hi PreProc gui=NONE guifg=Magenta4 guibg=NONE 70 hi Type gui=NONE guifg=Brown guibg=NONE 71 hi 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