Changed DiffText and Constant highlight groups
[MacVim/jjgod.git] / runtime / colors / macvim.vim
blob320f0355154d2c01e0b0e2bdf805efc87767c50c
1 " MacVim colorscheme
3 " Maintainer:   Bjorn Winckler <bjorn.winckler@gmail.com>
4 " Last Change:  2007 Oct 25
8 " Tell vim that this is a light color scheme:
9 set background=light
10 highlight clear
12 " Reset String -> Constant links etc if they were reset
13 if exists("syntax_on")
14   syntax reset
15 endif
17 let colors_name = "macvim"
19 " `:he highlight-groups`
20 hi ErrorMsg     guibg=Firebrick2 guifg=White
21 hi IncSearch    gui=reverse
22 hi ModeMsg      gui=bold
23 hi NonText      gui=bold guifg=Blue
24 hi StatusLine   gui=NONE guifg=White guibg=DarkSlateGray
25 hi StatusLineNC gui=NONE guifg=SlateGray guibg=Gray90
26 hi VertSplit    gui=NONE guifg=DarkSlateGray guibg=Gray90
27 hi DiffText     gui=NONE guibg=Gold
28 hi PmenuThumb   gui=reverse
29 hi PmenuSbar    guibg=Grey
30 hi TabLineSel   gui=bold
31 hi TabLineFill  gui=reverse
32 hi Cursor       guibg=fg guifg=bg
33 hi CursorIM     guibg=fg guifg=bg
34 hi lCursor      guibg=fg guifg=bg
37 hi Directory    guifg=#1600FF
38 hi LineNr       guifg=#888888 guibg=#E6E6E6
39 hi MoreMsg      gui=bold guifg=SeaGreen4
40 hi Question     gui=bold guifg=Chartreuse4
41 hi Search       guibg=CadetBlue1 guifg=NONE
42 hi SpellBad     guisp=Firebrick2 gui=undercurl
43 hi SpellCap     guisp=Blue gui=undercurl
44 hi SpellRare    guisp=Magenta gui=undercurl
45 hi SpellLocal   guisp=DarkCyan gui=undercurl
46 hi Pmenu        guibg=LightSteelBlue1
47 hi PmenuSel     guifg=White guibg=SkyBlue4
48 hi SpecialKey   guifg=Blue
49 hi Title        gui=bold guifg=DeepSkyBlue3
50 hi WarningMsg   guifg=Firebrick2
51 hi WildMenu     guibg=SkyBlue guifg=Black
52 hi Folded       guibg=#E6E6E6 guifg=DarkBlue
53 hi FoldColumn   guibg=Grey guifg=DarkBlue
54 hi SignColumn   guibg=Grey guifg=DarkBlue
55 hi Visual       guibg=MacSelectedTextBackgroundColor
56 hi DiffAdd      guibg=MediumSeaGreen
57 hi DiffChange   guibg=DeepSkyBlue
58 hi DiffDelete   gui=bold guifg=Black guibg=SlateBlue
59 hi TabLine      gui=underline guibg=LightGrey
60 hi CursorColumn guibg=#F1F5FA
61 hi CursorLine   guibg=#F1F5FA   "Data browser list view secondary color
62 hi MatchParen   guifg=White guibg=MediumPurple1
63 hi Normal       gui=NONE guifg=MacTextColor guibg=MacTextBackgroundColor
66 " Syntax items (`:he group-name` -- more groups are available, these are just
67 " the top level syntax items for now).
69 hi Comment gui=italic guifg=Blue2 guibg=NONE
70 hi Constant gui=NONE guifg=DarkOrange guibg=NONE
71 hi String gui=NONE guifg=SkyBlue4 guibg=NONE
72 hi Boolean gui=NONE guifg=Red3 guibg=NONE
73 hi Identifier gui=NONE guifg=Aquamarine4 guibg=NONE
74 hi Statement gui=bold guifg=Maroon guibg=NONE
75 hi PreProc gui=NONE guifg=DodgerBlue3 guibg=NONE
76 hi Type gui=bold guifg=Green4 guibg=NONE
77 hi Special  gui=NONE guifg=BlueViolet guibg=NONE
78 hi Underlined gui=underline guifg=SteelBlue1
79 hi Ignore gui=NONE guifg=bg guibg=NONE
80 hi Error gui=NONE guifg=White guibg=Firebrick3
81 hi Todo gui=NONE guifg=DarkGreen guibg=PaleGreen1
84 " Change the selection color on focus change (but only if the "macvim"
85 " colorscheme is active).
86 if !exists("s:augroups_defined")
87   au FocusLost * if colors_name == "macvim" | hi Visual guibg=MacSecondarySelectedControlColor | endif
88   au FocusGained * if colors_name == "macvim" | hi Visual guibg=MacSelectedTextBackgroundColor | endif
90   let s:augroups_defined = 1
91 endif
93 " vim: sw=2