comparison vim/vimfiles/colors/Dark.vim @ 0:48859d9c82c5

Initial commit, based on settings used at work (minus NERD tree & some tagging plugins).
author Brian Neal <bgneal@gmail.com>
date Tue, 03 Jan 2012 20:53:13 -0600
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:48859d9c82c5
1
2 "
3 " Restore default colors
4 hi clear
5 set background=dark
6
7
8 if exists("syntax_on")
9 syntax reset
10 endif
11
12 let g:colors_name = "Dark"
13
14
15 hi Normal guibg=grey20 guifg=GhostWhite
16 hi NonText guibg=grey15 guifg=yellow3
17 "hi Cursor guibg=GhostWhite
18 "hi Cursor guibg=red guifg=white
19 hi Cursor guibg=green2 guifg=black
20
21 hi Statement guifg=tan
22 hi Constant guifg=#FF7070
23 hi String guifg=#ffa0a0
24 hi Comment guifg=SkyBlue
25 hi PreProc guifg=orchid2
26 hi Character guifg=Cyan
27 hi Type guifg=orange gui=none
28 hi Special guifg=#DDDD00
29 hi Identifier guifg=#60DD60
30 hi link Function Identifier
31 "hi Function guifg=#ffa0a0
32
33 " Slight tweaks after some time away:
34 hi Type guifg=LightMagenta
35 hi PreProc guifg=orange2
36
37
38 hi link SpecialKey Comment
39 hi link Directory Comment
40
41 "
42 " Colors not part of the original set:
43 "
44 "hi Folded guifg=cyan4 guibg=grey20
45 hi Folded guifg=grey90 guibg=grey45
46 hi Visual gui=reverse guibg=fg guifg=darkolivegreen
47 hi Search guifg=black guibg=LightSkyBlue3 gui=none
48 "hi IncSearch guifg=yellow guibg=LightSkyBlue3 gui=bold
49 hi IncSearch guibg=blue guifg=yellow gui=bold
50 hi WarningMsg guifg=red guibg=GhostWhite gui=bold
51 hi Error guibg=red3
52
53
54 " Here are the original colors:
55 "hi guifg=grey70 gui=bold
56 "hi guifg=#FF7070 gui=bold
57 "hi guifg=green gui=bold
58 "hi guifg=yellow gui=bold
59 "hi guifg=SkyBlue gui=bold
60 "hi guifg=orchid1 gui=bold
61 "hi guifg=Cyan gui=bold
62 "hi guifg=White gui=bold
63 "