]> git.r.bdr.sh - rbdr/dotfiles/blame - vim/colors/tango2.vim
Turn off the blur
[rbdr/dotfiles] / vim / colors / tango2.vim
CommitLineData
0d23b6e5
BB
1" =============================================================================
2" Name: Tango2
3" Purpose: Another colour scheme using the Tango colour palette
4" Maintainer: Pranesh Srinivasan
5" Last Modified: Saturday 04 October 2008 02:06:26 AM IST
6" =============================================================================
7
8" Inspired from some Gnome renditions of the Tango colour scheme.
9
10" =============================================================================
11" Preamble
12" =============================================================================
13
14set background=dark
15
16hi clear
17
18if exists("syntax-on")
19syntax reset
20endif
21
22let colors_name = "tango2"
23
24" =============================================================================
25" Vim >= 7.0 specific colours
26" =============================================================================
27
28if version >= 700
29" No support for cursor line yet
30" hi CursorLine term=underline cterm=underline guibg=#111133
31" hi CursorColoumn
32" hi MatchParen
33" hi Pmenu
34" hi PmenuSel
35endif
36
37" =============================================================================
38" General colours
39" =============================================================================
40
41hi Normal guibg=#2E3436 guifg=#eeeeec
42hi Cursor gui=none guibg=White guifg=Black
43
44hi Folded guibg=#4D585B guibg=#d2d2d2
45" No fold column support yet
46" hi FoldColumn guifg=Orange guibg=DarkBlue
47" =============================================================================
48" Syntax highlighting
49" =============================================================================
50
51hi Comment gui=italic guifg=#6d7e8a ctermfg=Grey
52hi Todo term=bold guifg=#EBC450
53hi Constant guifg=#8ae234
54hi Type guifg=#8AE234
55hi Function gui=bold guifg=#9BCF8D
56hi Statement guifg=#729FCF
57hi Identifier guifg=#AD7FA8
58hi PreProc guifg=#e9ba6e
59hi Special term=underline guifg=#5EAFE5
60
61hi Search guibg=#81ABBD
62" hi QtClass guifg=Orange ctermfg=LightBlue