1" vim:set ts=8 sts=2 sw=2 tw=0:
2"
3" matrix.vim - MATRIX like colorscheme.
4"
5" Maintainer:	MURAOKA Taro <koron@tka.att.ne.jp>
6" Last Change:  10-Jun-2003.
7
8set background=dark
9hi clear
10if exists("syntax_on")
11  syntax reset
12endif
13"let g:colors_name = 'matrix'
14
15" the character under the cursor
16hi Cursor	guifg=#226622 guibg=#55ff55
17hi lCursor	guifg=#226622 guibg=#55ff55
18" like Cursor, but used when in IME mode |CursorIM|
19hi CursorIM	guifg=#226622 guibg=#55ff55
20" directory names (and other special names in listings)
21hi Directory	guifg=#55ff55 guibg=#000000
22" diff mode: Added line |diff.txt|
23hi DiffAdd	guifg=#55ff55 guibg=#226622 gui=none
24" diff mode: Changed line |diff.txt|
25hi DiffChange	guifg=#55ff55 guibg=#226622 gui=none
26" diff mode: Deleted line |diff.txt|
27hi DiffDelete	guifg=#113311 guibg=#113311 gui=none
28" diff mode: Changed text within a changed line |diff.txt|
29hi DiffText	guifg=#55ff55 guibg=#339933 gui=bold
30" error messages on the command line
31hi ErrorMsg	guifg=#55ff55 guibg=#339933
32" the column separating vertically split windows
33hi VertSplit	guifg=#339933 guibg=#339933
34" line used for closed folds
35hi Folded	guifg=#44cc44 guibg=#113311
36" 'foldcolumn'
37hi FoldColumn	guifg=#44cc44 guibg=#226622
38" 'incsearch' highlighting; also used for the text replaced with
39hi IncSearch	guifg=#226622 guibg=#55ff55 gui=none
40" line number for ":number" and ":#" commands, and when 'number'
41hi LineNr	guifg=#44cc44 guibg=#002200
42" 'showmode' message (e.g., "-- INSERT --")
43hi ModeMsg	guifg=#44cc44 guibg=#000000
44" |more-prompt|
45hi MoreMsg	guifg=#44cc44 guibg=#000000
46" '~' and '@' at the end of the window, characters from
47hi NonText	guifg=#00cc00 guibg=#001100
48" normal text
49hi Normal	guifg=#44cc44 guibg=#000000
50" |hit-enter| prompt and yes/no questions
51hi Question	guifg=#44cc44 guibg=#000000
52" Last search pattern highlighting (see 'hlsearch').
53hi Search	guifg=#113311 guibg=#44cc44 gui=none
54"+++ Cream:
55hi SignColumn   guifg=#44cc44 guibg=#003300
56"+++
57hi SpecialKey	guifg=#44cc44 guibg=#000000
58" Meta and special keys listed with ":map", also for text used
59hi SpecialKey	guifg=#44cc44 guibg=#000000
60" status line of current window
61hi StatusLine	guifg=#55ff55 guibg=#339933 gui=none
62" status lines of not-current windows
63hi StatusLineNC	guifg=#113311 guibg=#339933 gui=none
64" titles for output from ":set all", ":autocmd" etc.
65hi Title	guifg=#55ff55 guibg=#113311 gui=bold
66" Visual mode selection
67hi Visual	guifg=#55ff55 guibg=#339933 gui=none
68" Visual mode selection when vim is "Not Owning the Selection".
69hi VisualNOS	guifg=#44cc44 guibg=#000000
70" warning messages
71hi WarningMsg	guifg=#55ff55 guibg=#000000
72" current match in 'wildmenu' completion
73hi WildMenu	guifg=#226622 guibg=#55ff55
74
75hi Comment	guifg=#116611 guibg=#000000
76hi Constant	guifg=#55ff55 guibg=#226622
77hi Special	guifg=#44cc44 guibg=#226622
78hi Identifier	guifg=#55ff55 guibg=#000000
79hi Statement	guifg=#55ff55 guibg=#000000 gui=bold
80hi PreProc	guifg=#339933 guibg=#000000
81hi Type		guifg=#55ff55 guibg=#000000 gui=bold
82hi Underlined	guifg=#55ff55 guibg=#000000 gui=underline
83hi Error	guifg=#55ff55 guibg=#339933
84hi Todo		guifg=#113311 guibg=#44cc44 gui=none
85
86"+++ Cream:
87
88" statusline
89highlight User1  gui=BOLD guifg=#116611 guibg=#002200
90highlight User2  gui=bold guifg=#66aa66 guibg=#002200
91highlight User3  gui=bold guifg=#00cc00 guibg=#002200
92highlight User4  gui=bold guifg=#ffff00 guibg=#002200
93
94" bookmarks
95highlight Cream_ShowMarksHL gui=BOLD guifg=#99ff33 guibg=#006600
96
97" spell check
98highlight SpellBad   gui=undercurl guisp=#00ff00
99highlight SpellRare  gui=undercurl guisp=#779900
100highlight SpellLocal gui=undercurl guisp=#009900
101highlight SpellCap   gui=undercurl guisp=#66cc00
102
103" current line
104highlight CurrentLine term=reverse ctermbg=0 ctermfg=14 gui=none guibg=#406070
105
106" email
107highlight EQuote1 guifg=#00aa00
108highlight EQuote2 guifg=#009900
109highlight EQuote3 guifg=#007700
110highlight Sig guifg=#005500
111
112"+++
113
114