| 12
 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
 
 | " Vim color file
" Maintainer: Datila Carvalho <datila@saci.homeip.net>
" Last Change: November, 3, 2003
" Version: 0.1
" This is a VIM's version of the emacs color theme
" _Dark Blue2_ created by Chris McMahan.
""" Init stuff
set background=dark
hi clear
if exists("syntax_on")
    syntax reset
endif
let g:colors_name = "darkblue2"
""" Colors
" GUI colors
hi Cursor               guifg=#233b5a guibg=Yellow
hi CursorIM             guifg=NONE guibg=Yellow
hi Directory            gui=bold guifg=cyan
"hi DiffAdd
"hi DiffChange
"hi DiffDelete
hi DiffText             guibg=grey50
hi ErrorMsg             gui=bold guifg=White guibg=gray85
hi VertSplit            gui=bold guifg=NONE guibg=gray80
"hi Folded
"hi FoldColumn
"hi IncSearch
"hi LineNr
hi ModeMsg              gui=bold
"hi MoreMsg
"hi NonText
hi Normal               guibg=#233b5a guifg=#fff8dc
"hi Question
hi Search               gui=bold guifg=#233b5a guibg=lightgoldenrod
"hi SpecialKey
hi StatusLine           guifg=aquamarine
hi StatusLineNC         guifg=steelblue3
"hi Title
hi Visual               guifg=steelblue guibg=fg
hi VisualNOS            gui=bold guifg=steelblue guibg=fg
hi WarningMsg           guifg=White guibg=Tomato
"hi WildMenu
" Colors for syntax highlighting
hi Comment              gui=italic guifg=mediumaquamarine
hi Constant             gui=bold guifg=lightgoldenrod1
    hi String           guifg=aquamarine
    hi Character        guifg=aquamarine
    hi Number           gui=bold guifg=lightgoldenrod1
    hi Boolean          gui=bold guifg=lightgoldenrod1
    hi Float            gui=bold guifg=lightgoldenrod1
hi Identifier           gui=bold guifg=palegreen
    hi Function         guifg=lightskyblue
hi Statement            gui=bold guifg=cyan
    hi Conditional      gui=bold guifg=cyan
    hi Repeat           gui=bold guifg=cyan
    hi Label            guifg=cyan
    hi Operator         guifg=cyan
    "hi Keyword
    "hi Exception
hi PreProc              guifg=lightsteelblue
    hi Include          gui=bold guifg=lightsteelblue
    hi Define           guifg=lightsteelblue
    hi Macro            guifg=lightsteelblue
    hi PreCondit        guifg=lightsteelblue
hi Type                 gui=bold guifg=palegreen
    hi StorageClass     gui=bold guifg=lightgoldenrod1
    hi Structure        gui=bold guifg=lightgoldenrod1
    hi Typedef          gui=bold guifg=lightgoldenrod1
"hi Special
    ""Underline Character
    "hi SpecialChar
    "hi Tag
    ""Statement
    "hi Delimiter
    ""Bold comment (in Java at least)
    "hi SpecialComment
    "hi Debug
hi Underlined           gui=underline
hi Ignore               guifg=bg
hi Error                gui=bold guifg=White guibg=Red
"hi Todo
 |