summaryrefslogtreecommitdiff
path: root/colors/desertedoceanburnt_vim.vim
blob: 56dc8831d71ca4054753b0ff88fbe4d82afdb0fd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
" Vim color file
" desertedoceanburnt v0.1
" Maintainer:	Shawn Axsom <axs221@gmail.com>
"               [axs221.1l.com]

" desertedoceanburnt, a dull, low contrast version of the desertedocean 
"  colorscheme, which used the desert colorscheme as template, based
"  loosely off of desert, oceandeep, and zenburn.

" cool help screens
" :he group-name
" :he highlight-groups
" :he cterm-colors

set background=dark
if version > 580
    " no guarantees for version 5.8 and below, but this makes it stop
    "  complaining
    hi clear
    if exists("syntax_on")
		syntax reset
    endif
endif

let g:colors_name="desertedoceanburnt"

hi Normal	ctermfg=21
"hi Normal	ctermfg=21 ctermbg=22
hi Cursor	ctermbg=23 ctermfg=24
"hi CursorLine	ctermbg=22 cterm=NONE
"hi CursorIM

" syntax highlighting
hi Comment	  ctermfg=25
hi Title	ctermfg=26
hi Underlined ctermfg=27
hi Statement  ctermfg=28
hi Type		  ctermfg=29
hi PreProc    ctermfg=30 cterm=NONE
hi Constant	  ctermfg=31 " or #FF707A 
hi Identifier ctermfg=32
hi Special	  ctermfg=33
hi Ignore	ctermfg=34
hi Todo		ctermfg=35 ctermbg=36
"hi Error
"end syntax highlighting

" highlight groups
hi Directory ctermfg=37
"hi DiffAdd
"hi DiffChange
"hi DiffDelete
"hi DiffText
"hi ErrorMsg
hi VertSplit	ctermbg=38 ctermfg=39 cterm=none
hi Folded	ctermbg=40 ctermfg=41
hi FoldColumn	ctermbg=42 ctermfg=43
hi LineNr   ctermfg=44 ctermbg=45 
hi ModeMsg	ctermfg=46
hi MoreMsg	ctermfg=47
"hi NonText  ctermfg=48 ctermbg=49
hi NonText  ctermfg=48
hi Question	ctermfg=50
hi Search	ctermbg=51 ctermfg=52
hi IncSearch	ctermfg=51 ctermbg=53
hi SpecialKey	ctermfg=54 " blue green
hi StatusLine	ctermbg=55 ctermfg=56 cterm=none
hi StatusLineNC	ctermbg=57 ctermfg=58 cterm=none
"hi Visual   ctermfg=59 ctermbg=60
hi Visual	ctermbg=59
"hi VisualNOS
hi WarningMsg	ctermfg=61
"hi WildMenu
"hi Menu
"hi Scrollbar  ctermbg=62 ctermfg=63
"hi Tooltip


" color terminal definitions
"hi SpecialKey	ctermfg=64
"hi NonText	cterm=bold ctermfg=65
"hi Directory	ctermfg=66
"hi ErrorMsg	cterm=bold ctermfg=67 ctermbg=68
"hi IncSearch	cterm=NONE ctermfg=69 ctermbg=70
"hi Search	cterm=NONE ctermfg=71 ctermbg=72
"hi MoreMsg	ctermfg=64
"hi ModeMsg	cterm=NONE ctermfg=73
"hi LineNr	ctermfg=74
"hi Question	ctermfg=70
"hi StatusLine	cterm=bold,reverse
"hi StatusLineNC cterm=reverse
"hi VertSplit	cterm=reverse
"hi Title	ctermfg=75
"hi Visual	cterm=reverse
"hi VisualNOS	cterm=bold,underline
"hi WarningMsg	ctermfg=68
"hi WildMenu	ctermfg=76 ctermbg=74
"hi Folded	ctermfg=77 ctermbg=78
"hi FoldColumn	ctermfg=77 ctermbg=78
"hi DiffAdd	ctermbg=79
"hi DiffChange	ctermbg=75
"hi DiffDelete	cterm=bold ctermfg=79 ctermbg=80
"hi DiffText	cterm=bold ctermbg=68
"hi Comment	ctermfg=66
"hi Constant	ctermfg=73
"hi Special	ctermfg=75
"hi Identifier	ctermfg=80
"hi Statement	ctermfg=74
"hi PreProc	ctermfg=75
"hi Type		ctermfg=81
"hi Underlined	cterm=underline ctermfg=75
"hi Ignore	cterm=bold ctermfg=67
"hi Ignore	ctermfg=77
"hi Error	cterm=bold ctermfg=67 ctermbg=68


"vim: sw=4