BriansNotes: Dark.vim

File Dark.vim, 1.4 KB (added by brian, 2 years ago)

Dark vim color scheme.

Line 
1
2"
3" Restore default colors
4hi clear
5set background=dark
6
7
8if exists("syntax_on")
9  syntax reset
10endif
11
12let g:colors_name = "Dark"
13
14
15hi Normal guibg=grey20 guifg=GhostWhite
16hi NonText guibg=grey15 guifg=yellow3
17"hi Cursor guibg=GhostWhite
18"hi Cursor guibg=red guifg=white
19hi Cursor guibg=green2 guifg=black
20
21hi Statement  guifg=tan
22hi Constant   guifg=#FF7070
23hi String     guifg=#ffa0a0
24hi Comment    guifg=SkyBlue
25hi PreProc    guifg=orchid2
26hi Character  guifg=Cyan
27hi Type       guifg=orange   gui=none
28hi Special    guifg=#DDDD00
29hi Identifier guifg=#60DD60
30hi link Function Identifier
31"hi Function   guifg=#ffa0a0
32
33" Slight tweaks after some time away:
34hi Type guifg=LightMagenta
35hi PreProc guifg=orange2
36
37
38hi link SpecialKey Comment
39hi link Directory  Comment
40
41"
42" Colors not part of the original set:
43"
44"hi Folded guifg=cyan4 guibg=grey20
45hi Folded guifg=grey90 guibg=grey45
46hi Visual gui=reverse guibg=fg guifg=darkolivegreen
47hi Search guifg=black guibg=LightSkyBlue3 gui=none
48"hi IncSearch guifg=yellow guibg=LightSkyBlue3 gui=bold
49hi IncSearch guibg=blue guifg=yellow gui=bold
50hi WarningMsg guifg=red guibg=GhostWhite gui=bold
51hi 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"