citadel

My dotfiles, scripts and nix configs
git clone git://jb55.com/citadel
Log | Files | Refs | README | LICENSE

robinhood.vim (2830B)


      1 " Vim color file
      2 " Maintainer: Datila Carvalho <datila@hotmail.com>
      3 " Last Change: May, 19, 2005
      4 " Version: 0.2
      5 
      6 " This is a VIM's version of the emacs color theme
      7 " _Robin Hood_ created by Alex Schroede.
      8 
      9 set background=dark
     10 hi clear
     11 if exists("syntax_on")
     12     syntax reset
     13 endif
     14 
     15 let g:colors_name = "robinhood"
     16 
     17 
     18 """ Colors
     19 
     20 " GUI colors
     21 hi Cursor               guifg=fg guibg=gray
     22 hi CursorIM             guifg=NONE guibg=gray
     23 "hi Directory
     24 "hi DiffAdd
     25 "hi DiffChange
     26 "hi DiffDelete
     27 "hi DiffText
     28 hi ErrorMsg             gui=bold guifg=white guibg=Red
     29 "hi VertSplit
     30 "hi Folded
     31 "hi FoldColumn
     32 "hi IncSearch
     33 hi LineNr               gui=bold guifg=yellowgreen guibg=#203010
     34 "hi ModeMsg
     35 "hi MoreMsg
     36 "hi NonText
     37 hi Normal               guibg=#304020 guifg=wheat
     38 "hi Question
     39 hi Search               gui=bold guifg=black guibg=gray
     40 "hi SpecialKey
     41 hi StatusLine           guifg=darkolivegreen guibg=wheat
     42 hi StatusLineNC         guifg=olivedrab guibg=wheat
     43 "hi Title
     44 hi Visual               guifg=darkslategrey guibg=fg
     45 hi VisualNOS            gui=bold guifg=Black guibg=fg
     46 hi WarningMsg           guifg=White guibg=Tomato
     47 "hi WildMenu
     48 
     49 hi User2                guifg=yellowgreen guibg=#091900 gui=bold
     50 
     51 " If using Motif/Athena
     52 hi Menu                 guibg=#304020 guifg=wheat
     53 hi Scrollbar            guibg=bg
     54 
     55 " Colors for syntax highlighting
     56 hi Comment              guifg=lightblue
     57 
     58 hi Constant             gui=bold guifg=lightcyan
     59     hi String           guifg=lightsalmon
     60     hi Character        guifg=lightsalmon
     61     hi Number           gui=bold guifg=lightcyan
     62     hi Boolean          gui=bold guifg=lightcyan
     63     hi Float            gui=bold guifg=lightcyan
     64 
     65 hi Identifier           gui=bold guifg=palegreen
     66     hi Function         guifg=yellowgreen
     67 
     68 hi Statement            gui=bold guifg=salmon
     69     hi Conditional      gui=bold guifg=salmon
     70     hi Repeat           gui=bold guifg=salmon
     71     hi Label            guifg=salmon
     72     hi Operator         guifg=salmon
     73     "hi Keyword
     74     "hi Exception
     75 
     76 hi PreProc              guifg=palegreen
     77     hi Include          gui=bold guifg=palegreen
     78     hi Define           guifg=palegreen
     79     hi Macro            guifg=aquamarine
     80     hi PreCondit        guifg=palegreen
     81 
     82 hi Type                 gui=bold guifg=yellowgreen
     83     hi StorageClass     gui=bold guifg=aquamarine
     84     hi Structure        gui=bold guifg=aquamarine
     85     hi Typedef          gui=bold guifg=aquamarine
     86 
     87 "hi Special
     88     ""Underline Character
     89     "hi SpecialChar      gui=underline
     90     "hi Tag              gui=bold,underline
     91     ""Statement
     92     "hi Delimiter        gui=bold
     93     ""Bold comment (in Java at least)
     94     "hi SpecialComment   gui=bold
     95     "hi Debug            gui=bold
     96 
     97 hi Underlined           gui=underline
     98 
     99 hi Ignore               guifg=bg
    100 
    101 hi Error                gui=bold guifg=White guibg=Red
    102 
    103 "hi Todo