7
|
1 " Vim color file
|
|
2 " Maintainer: Bram Moolenaar <Bram@vim.org>
|
829
|
3 " Last Change: 2006 Apr 14
|
7
|
4
|
|
5 " This color scheme uses a dark grey background.
|
|
6
|
|
7 " First remove all existing highlighting.
|
|
8 set background=dark
|
|
9 hi clear
|
|
10 if exists("syntax_on")
|
|
11 syntax reset
|
|
12 endif
|
|
13
|
|
14 let colors_name = "evening"
|
|
15
|
|
16 hi Normal ctermbg=DarkGrey ctermfg=White guifg=White guibg=grey20
|
|
17
|
|
18 " Groups used in the 'highlight' and 'guicursor' options default value.
|
|
19 hi ErrorMsg term=standout ctermbg=DarkRed ctermfg=White guibg=Red guifg=White
|
|
20 hi IncSearch term=reverse cterm=reverse gui=reverse
|
|
21 hi ModeMsg term=bold cterm=bold gui=bold
|
|
22 hi StatusLine term=reverse,bold cterm=reverse,bold gui=reverse,bold
|
|
23 hi StatusLineNC term=reverse cterm=reverse gui=reverse
|
|
24 hi VertSplit term=reverse cterm=reverse gui=reverse
|
829
|
25 hi Visual term=reverse ctermbg=black guibg=grey60
|
7
|
26 hi VisualNOS term=underline,bold cterm=underline,bold gui=underline,bold
|
|
27 hi DiffText term=reverse cterm=bold ctermbg=Red gui=bold guibg=Red
|
|
28 hi Cursor guibg=Green guifg=Black
|
|
29 hi lCursor guibg=Cyan guifg=Black
|
|
30 hi Directory term=bold ctermfg=LightCyan guifg=Cyan
|
|
31 hi LineNr term=underline ctermfg=Yellow guifg=Yellow
|
|
32 hi MoreMsg term=bold ctermfg=LightGreen gui=bold guifg=SeaGreen
|
|
33 hi NonText term=bold ctermfg=LightBlue gui=bold guifg=LightBlue guibg=grey30
|
|
34 hi Question term=standout ctermfg=LightGreen gui=bold guifg=Green
|
|
35 hi Search term=reverse ctermbg=Yellow ctermfg=Black guibg=Yellow guifg=Black
|
|
36 hi SpecialKey term=bold ctermfg=LightBlue guifg=Cyan
|
|
37 hi Title term=bold ctermfg=LightMagenta gui=bold guifg=Magenta
|
|
38 hi WarningMsg term=standout ctermfg=LightRed guifg=Red
|
|
39 hi WildMenu term=standout ctermbg=Yellow ctermfg=Black guibg=Yellow guifg=Black
|
|
40 hi Folded term=standout ctermbg=LightGrey ctermfg=DarkBlue guibg=LightGrey guifg=DarkBlue
|
|
41 hi FoldColumn term=standout ctermbg=LightGrey ctermfg=DarkBlue guibg=Grey guifg=DarkBlue
|
|
42 hi DiffAdd term=bold ctermbg=DarkBlue guibg=DarkBlue
|
|
43 hi DiffChange term=bold ctermbg=DarkMagenta guibg=DarkMagenta
|
|
44 hi DiffDelete term=bold ctermfg=Blue ctermbg=DarkCyan gui=bold guifg=Blue guibg=DarkCyan
|
829
|
45 hi CursorColumn term=reverse ctermbg=Black guibg=grey40
|
|
46 hi CursorLine term=underline cterm=underline guibg=grey40
|
7
|
47
|
|
48 " Groups for syntax highlighting
|
|
49 hi Constant term=underline ctermfg=Magenta guifg=#ffa0a0 guibg=grey5
|
|
50 hi Special term=bold ctermfg=LightRed guifg=Orange guibg=grey5
|
|
51 if &t_Co > 8
|
|
52 hi Statement term=bold cterm=bold ctermfg=Yellow guifg=#ffff60 gui=bold
|
|
53 endif
|
|
54 hi Ignore ctermfg=DarkGrey guifg=grey20
|
|
55
|
|
56 " vim: sw=2
|