citadel

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

cleanphp.vim (2227B)


      1 " Vim color file
      2 " Maintainer:	Billy McIntosh <billymcintosh@ntlworld.com>
      3 " Last Change:	June 24, 2003
      4 " Licence:	    Public Domain
      5 
      6 " This package offers a eye-catching color scheme for PHP syntax
      7 
      8 " First remove all existing highlighting.
      9 set background=dark
     10 hi clear
     11 if exists("syntax_on")
     12   syntax reset
     13 endif
     14 
     15 let colors_name = "cleanphp"
     16 
     17 hi Normal guifg=#008000 guibg=#d3e4f8
     18 
     19 hi ErrorMsg guibg=#d3e4f8 guifg=Red
     20 hi IncSearch gui=reverse
     21 hi ModeMsg gui=bold
     22 hi StatusLine gui=reverse,bold
     23 hi StatusLineNC gui=reverse
     24 hi VertSplit gui=reverse
     25 hi Visual gui=reverse guifg=#c0c0c0 guibg=fg
     26 hi VisualNOS gui=underline,bold
     27 hi DiffText gui=bold guibg=Red
     28 hi Cursor guibg=Black guifg=NONE
     29 hi lCursor guibg=Black guifg=NONE
     30 hi Directory guifg=#ff8040
     31 hi LineNr guifg=#008000
     32 hi MoreMsg gui=bold guifg=SeaGreen
     33 hi NonText gui=bold guifg=#ff8040 guibg=#d3e4f8
     34 hi Question gui=bold guifg=Black
     35 hi Search guibg=#008000 guifg=NONE
     36 hi SpecialKey guifg=#ff8040
     37 hi Title gui=bold guifg=Magenta
     38 hi WarningMsg guifg=Red
     39 hi WildMenu guibg=Cyan guifg=#d3e4f8
     40 hi Folded guibg=White guifg=Darkblue
     41 hi FoldColumn guibg=#c0c0c0 guifg=Darkblue
     42 hi DiffAdd guibg=Lightblue
     43 hi DiffChange guibg=LightMagenta
     44 hi DiffDelete gui=bold guifg=#ff8040 guibg=LightCyan
     45 
     46 hi Comment guifg=#ff8040 guibg=#d3e4f8
     47 hi Constant guifg=#BB0000 guibg=#d3e4f8
     48 hi PreProc guifg=#008080 guibg=#d3e4f8
     49 hi Statement gui=NONE guifg=#008000 guibg=#d3e4f8
     50 hi Special guifg=#008080 guibg=#d3e4f8
     51 hi Ignore guifg=#c0c0c0
     52 hi Identifier guifg=#000080 guibg=#d3e4f8
     53 hi Type guifg=#00BB00 guibg=#d3e4f8
     54 
     55 hi link IncSearch		Visual
     56 hi link String			Constant
     57 hi link Character		Constant
     58 hi link Number			Constant
     59 hi link Boolean			Constant
     60 hi link Float			Number
     61 hi link Function		Identifier
     62 hi link Conditional		Statement
     63 hi link Repeat			Statement
     64 hi link Label			Statement
     65 hi link Operator		Statement
     66 hi link Keyword			Statement
     67 hi link Exception		Statement
     68 hi link Include			PreProc
     69 hi link Define			PreProc
     70 hi link Macro			PreProc
     71 hi link PreCondit		PreProc
     72 hi link StorageClass	Type
     73 hi link Structure		Type
     74 hi link Typedef			Type
     75 hi link Tag				Special
     76 hi link SpecialChar		Special
     77 hi link Delimiter		Special
     78 hi link SpecialComment	Special
     79 hi link Debug			Special
     80 
     81 " vim: sw=2