summaryrefslogtreecommitdiff
path: root/colors/blacktango.vim
blob: ce66767b3296d0c635451bca437326a410418cd5 (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
" Vim color file
" Name: DarkTango
" Maintainer: Panos Laganakos <panos.laganakos@gmail.com>
" Version: 0.3


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="blacktango"

"hi Normal	guibg=#2e3436 guifg=#d3d7cf
hi Normal	guibg=black guifg=#d3d7cf

" {{{ syntax
hi Comment	guifg=#555753
hi Title	guifg=#eeeeec
hi Underlined	guifg=#20b0eF gui=none
hi Statement	guifg=#888a85
hi Type		guifg=#ce5c00
hi PreProc	guifg=#eeeeec 
hi Constant	guifg=#babdb6
hi Identifier	guifg=#ce5c00 
hi Special	guifg=#eeeeec
hi Ignore	guifg=#f57900
hi Todo		guibg=#ce5c00 guifg=#eeeeec
"hi Error
"}}}

" {{{ groups
hi Cursor	guibg=#babdb6 guifg=#2e3436
"hi CursorIM
hi Directory	guifg=#bbd0df
"hi DiffAdd
"hi DiffChange
"hi DiffDelete
"hi DiffText
"hi ErrorMsg
hi VertSplit	guibg=#555753 guifg=#2e3436 gui=none
hi Folded	guibg=#555753 guifg=#eeeeec
hi FoldColumn	guibg=#2e3436 guifg=#555753
hi LineNr	guibg=#2e3436 guifg=#555753
hi MatchParen	guibg=#babdb6 guifg=#2e3436
hi ModeMsg	guifg=#ce5c00
hi MoreMsg	guifg=#ce5c00
hi NonText	guibg=#2e3436 guifg=#555753
hi Question	guifg=#aabbcc
hi Search	guibg=#fce94f guifg=#c4a000
hi IncSearch	guibg=#c4a000 guifg=#fce94f
hi SpecialKey	guifg=#ce5c00
hi StatusLine	guibg=#555753 guifg=#eeeeec gui=none
hi StatusLineNC	guibg=#555753 guifg=#272334 gui=none
hi Visual	guibg=#fcaf3e guifg=#ce5c00 
"hi VisualNOS
hi WarningMsg	guifg=salmon
"hi WildMenu
"hi Menu
"hi Scrollbar  guibg=grey30 guifg=tan
"hi Tooltip
hi Pmenu	guibg=#babdb6 guifg=#555753
hi PmenuSel	guibg=#eeeeec guifg=#2e3436
hi CursorLine	guibg=#212628
" }}}

"  {{{ terminal
" TODO
" }}}

"vim: sw=4