Skip to content

Commit

Permalink
Version 0.1: Initial upload
Browse files Browse the repository at this point in the history
  • Loading branch information
=?UTF-8?B?Q2hyaXMgTcO8bGxlcg==?= authored and vim-scripts committed Feb 10, 2011
0 parents commit 04c0be0
Show file tree
Hide file tree
Showing 3 changed files with 215 additions and 0 deletions.
13 changes: 13 additions & 0 deletions README
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
This is a mirror of http://www.vim.org/scripts/script.php?script_id=3442

This package contains two selfmade colorschemes for gvim and has specific syntax highlighting for c, c++ and ruby.

Royalking (http://img13.imageshack.us/img13/7114/royalking.png)
- dark colorscheme with light golden keywords

Royaltango (http://img64.imageshack.us/img64/7064/royaltango.png)
- light colorscheme with navy blue keywords

Hope you all like it ...


97 changes: 97 additions & 0 deletions colors/royalking.vim
Original file line number Diff line number Diff line change
@@ -0,0 +1,97 @@
" ------------------------------------------------------------------------
" Royal King - VIM Colorscheme
" ------------------------------------------------------------------------
" Maintainer: Christoph Mueller
" Last Change: 2011/01/24 00:00
" URL: unknown
" ------------------------------------------------------------------------

let g:colors_name = "royalruby"

set background=dark
hi clear
if exists("syntax_on")
syntax reset
endif

" ------------------------------------------------------------------------
" General attributes
" ------------------------------------------------------------------------

hi Normal guifg=white guibg=grey10
hi NonText guifg=lightgoldenrod1
hi Cursor guifg=bg guibg=indianred3
hi CursorLine guibg=grey15
hi StatusLine guibg=grey20 guifg=white gui=bold
hi StatusLineNC guibg=grey20 guifg=white gui=none
hi LineNr guifg=grey70
hi ModeMsg guifg=lightgoldenrod1 gui=bold
hi MoreMsg guifg=lightgoldenrod1 gui=none
hi Error guifg=red guibg=bg gui=bold
hi ErrorMsg guifg=red guibg=bg gui=bold
hi MatchParen guifg=gold1 guibg=bg gui=bold
hi Folded guifg=white guibg=grey93
hi FoldColumn guifg=white guibg=grey93
hi Visual guifg=black guibg=lightgoldenrod1
hi VertSplit guibg=white guifg=bg gui=reverse

hi Comment guifg=lightgreen
hi Keyword guifg=lightgoldenrod1 gui=bold
hi Statement guifg=lightgoldenrod1 gui=bold
hi Operator guifg=Springgreen1
hi PreProc guifg=lightcoral gui=bold
hi Special guifg=tan3
hi Identifier guifg=slategray2

hi String guifg=navajowhite1
hi Number guifg=lightsteelblue2
hi Boolean guifg=slategray2
hi Todo guifg=springgreen1 guibg=bg gui=bold

hi! link Type Keyword
hi! link Float Number


hi link IncSearch Visual
hi link Function Identifier
hi link Include PreProc
hi link Define PreProc
hi link Macro PreProc
hi link PreCondit PreProc
hi link Conditional Statement
hi link Repeat Statement
hi link Keyword Statement
hi link StorageClass Type
hi link Structure Type
hi link Typedef Type
hi link Tag Special
hi link Delimiter Special
hi! link SpecialComment Special
hi link Debug Special

hi Pmenu guifg=black guibg=#F3E8B3 gui=NONE
hi PmenuSel guibg=black guifg=white gui=bold
hi PmenuSbar guibg=#C3C6CC gui=NONE
hi PmenuThumb guibg=#002A5C gui=reverse

hi rubyRegexp guifg=mediumpurple
hi rubyRegexpDelimiter guifg=mediumpurple
hi rubyRegexpSpecial guifg=mediumpurple gui=bold
hi rubyConstant guifg=khaki gui=none
hi rubyBlockArgument guifg=lightsalmon

hi link rubyClass Keyword
hi link rubyDefine Keyword
hi link rubyModule Keyword
hi link rubyControl Keyword
hi link rubyOperator Operator
hi link rubyStringDelimiter String
hi link rubyIdentifier Identifier
hi link rubyInstanceVariable Identifier
hi link rubyGlobalVariable Identifier
hi link rubyClassVariable Identifier
hi link rubyConstant Type
hi link rubyEscape SpecialChar
hi link rubyStringEscape SpecialChar
hi link rubySymbol Boolean
hi link rubyBeginEnd Keyword
105 changes: 105 additions & 0 deletions colors/royaltango.vim
Original file line number Diff line number Diff line change
@@ -0,0 +1,105 @@
" --------------------------------------------------------------------------------
" Royal Tango - GVIM Colorscheme
" --------------------------------------------------------------------------------
" Maintainer: Christoph Mueller
" Last Change: 2011/01/04 00:00
" URL: unknown
" --------------------------------------------------------------------------------

let g:colors_name = "royaltango"

set background=light
hi clear
if exists("syntax_on")
syntax reset
endif

" --------------------------------------------------------------------------------
" Generell attributes
" --------------------------------------------------------------------------------

hi Normal guifg=black guibg=grey99
hi Cursor guifg=bg guibg=green
hi CursorLine guibg=grey95
hi StatusLine guibg=#445588 guifg=white gui=bold
hi StatusLineNC guibg=grey99 guifg=#445588
hi ModeMsg guifg=#445588 gui=bold
hi MoreMsg guifg=SlateBlue gui=none
hi LineNr guifg=grey40
hi ErrorMsg guifg=white guibg=red gui=bold
hi MatchParen guifg=#445588 guibg=bg gui=bold
hi Folded guifg=black guibg=grey93
hi FoldColumn guifg=black guibg=grey93
hi Visual gui=reverse
hi VertSplit guibg=#445588 guifg=bg gui=reverse

hi Pmenu guibg=#F3E8B3 gui=NONE
hi PmenuSel guibg=black guifg=white gui=bold
hi PmenuSbar guibg=#C3C6CC gui=NONE
hi PmenuThumb guibg=#002A5C gui=reverse


" --------------------------------------------------------------------------------
" Languages attributes
" --------------------------------------------------------------------------------

hi Comment guifg=#999988
hi Keyword guifg=#445588 gui=bold
hi Statement guifg=#204070 gui=bold
hi PreProc guifg=firebrick3 gui=bold
hi Identifier guifg=SlateGrey
hi Special guifg=DarkViolet
hi SpecialChar guifg=goldenrod1 gui=bold
hi Operator guifg=black gui=bold
hi Exception guifg=black gui=bold

hi String guifg=sienna2
hi Number guifg=SpringGreen3
hi Constant guifg=DarkViolet
hi Boolean guifg=SpringGreen3 gui=bold
hi Label guifg=SlateGrey gui=bold

hi! link Type Keyword
hi! link Float Number

hi link IncSearch Visual
hi link Function Identifier
hi link Include PreProc
hi link Define PreProc
hi link Macro PreProc
hi link PreCondit PreProc
hi link Conditional Statement
hi link Repeat Statement
hi link Keyword Statement
hi link StorageClass Type
hi link Structure Type
hi link Typedef Type
hi link Tag Special
hi link Delimiter Special
hi! link SpecialComment Special
hi link Debug Special

" --------------------------------------------------------------------------------
" Ruby attributes
" --------------------------------------------------------------------------------
hi rubyRegexp guifg=DarkViolet
hi rubyRegexpDelimiter guifg=DarkViolet
hi rubyRegexpSpecial guifg=DarkViolet gui=bold
hi rubyControl guifg=black gui=bold
hi rubyStringDelimiter guifg=sienna2
hi rubyConstant guifg=black gui=none
hi rubyBlockArgument guifg=Slategrey

hi link rubyClass Keyword
hi link rubyDefine Keyword
hi link rubyModule Keyword
hi link rubyOperator Operator
hi link rubyIdentifier Identifier
hi link rubyInstanceVariable Identifier
hi link rubyGlobalVariable Identifier
hi link rubyClassVariable Identifier
hi link rubyConstant Type
hi link rubyEscape SpecialChar
hi link rubyStringEscape SpecialChar
hi link rubySymbol Boolean
hi link rubyBeginEnd Keyword

0 comments on commit 04c0be0

Please sign in to comment.