Removed docs and colors, do not want.

This commit is contained in:
yan 2011-12-06 23:07:15 -08:00 committed by Yan Pritzker
parent 7a40c6d05d
commit 5623d26c71
216 changed files with 0 additions and 31895 deletions

View File

@ -1,101 +0,0 @@
# ~/.bashrc: executed by bash(1) for non-login shells.
# see /usr/share/doc/bash/examples/startup-files (in the package bash-doc)
# for examples
# If not running interactively, don't do anything
[ -z "$PS1" ] && return
# don't put duplicate lines in the history. See bash(1) for more options
# don't overwrite GNU Midnight Commander's setting of `ignorespace'.
export HISTCONTROL=$HISTCONTROL${HISTCONTROL+,}ignoredups
# ... or force ignoredups and ignorespace
export HISTCONTROL=ignoreboth
# append to the history file, don't overwrite it
shopt -s histappend
# for setting history length see HISTSIZE and HISTFILESIZE in bash(1)
# check the window size after each command and, if necessary,
# update the values of LINES and COLUMNS.
shopt -s checkwinsize
# make less more friendly for non-text input files, see lesspipe(1)
#[ -x /usr/bin/lesspipe ] && eval "$(SHELL=/bin/sh lesspipe)"
# set variable identifying the chroot you work in (used in the prompt below)
if [ -z "$debian_chroot" ] && [ -r /etc/debian_chroot ]; then
debian_chroot=$(cat /etc/debian_chroot)
fi
# set a fancy prompt (non-color, unless we know we "want" color)
case "$TERM" in
xterm-color) color_prompt=yes;;
esac
# uncomment for a colored prompt, if the terminal has the capability; turned
# off by default to not distract the user: the focus in a terminal window
# should be on the output of commands, not on the prompt
#force_color_prompt=yes
if [ -n "$force_color_prompt" ]; then
if [ -x /usr/bin/tput ] && tput setaf 1 >&/dev/null; then
# We have color support; assume it's compliant with Ecma-48
# (ISO/IEC-6429). (Lack of such support is extremely rare, and such
# a case would tend to support setf rather than setaf.)
color_prompt=yes
else
color_prompt=
fi
fi
if [ "$color_prompt" = yes ]; then
PS1='${debian_chroot:+($debian_chroot)}\[\033[01;32m\]\u@\h\[\033[00m\]:\[\033[01;34m\]\w\[\033[00m\]\$ '
else
PS1='${debian_chroot:+($debian_chroot)}\u@\h:\w\$ '
fi
unset color_prompt force_color_prompt
# If this is an xterm set the title to user@host:dir
case "$TERM" in
xterm*|rxvt*)
PS1="\[\e]0;${debian_chroot:+($debian_chroot)}\u@\h: \w\a\]$PS1"
;;
*)
;;
esac
# Alias definitions.
# You may want to put all your additions into a separate file like
# ~/.bash_aliases, instead of adding them here directly.
# See /usr/share/doc/bash-doc/examples in the bash-doc package.
#if [ -f ~/.bash_aliases ]; then
# . ~/.bash_aliases
#fi
# enable color support of ls and also add handy aliases
if [ -x /usr/bin/dircolors ]; then
eval "`dircolors -b`"
alias ls='ls --color=auto'
#alias dir='dir --color=auto'
#alias vdir='vdir --color=auto'
#alias grep='grep --color=auto'
#alias fgrep='fgrep --color=auto'
#alias egrep='egrep --color=auto'
fi
# some more ls aliases
#alias ll='ls -l'
#alias la='ls -A'
#alias l='ls -CF'
# enable programmable completion features (you don't need to enable
# this, if it's already enabled in /etc/bash.bashrc and /etc/profile
# sources /etc/bash.bashrc).
if [ -f /etc/bash_completion ]; then
. /etc/bash_completion
fi

View File

@ -1,97 +0,0 @@
" Vim colorscheme file
" Maintainer: Adrian Nagle <vim@naglenet.org>
" Last Change: 2001-09-25 07:48:15 Mountain Daylight Time
" URL: http://www.naglenet.org/vim/syntax/adrian.vim
" MAIN URL: http://www.naglenet.org/vim
" This is my custom syntax file to override the defaults provided with Vim.
" This file should be located in $HOME/vimfiles/colors.
" This file should automatically be sourced by $RUNTIMEPATH.
" NOTE(S):
" *(1)
" The color definitions assumes and is intended for a black or dark
" background.
" *(2)
" This file is specifically in Unix style EOL format so that I can simply
" copy this file between Windows and Unix systems. VIM can source files in
" with the UNIX EOL format (only <NL> instead of <CR><NR> for DOS) in any
" operating system if the 'fileformats' is not empty and there is no <CR>
" just before the <NL> on the first line. See ':help :source_crnl' and
" ':help fileformats'.
"
" *(3)
" Move this file to adrian.vim for vim6.0aw.
"
hi clear
set background=dark
if exists("syntax_on")
syntax reset
endif
let g:colors_name = "adrian"
" Normal is for the normal (unhighlighted) text and background.
" NonText is below the last line (~ lines).
highlight Normal guibg=Black guifg=Green
highlight Cursor guibg=Grey70 guifg=White
highlight NonText guibg=Grey80
highlight StatusLine gui=bold guibg=DarkGrey guifg=Orange
highlight StatusLineNC guibg=DarkGrey guifg=Orange
highlight Comment term=bold ctermfg=LightGrey guifg=#d1ddff
highlight Constant term=underline ctermfg=White guifg=#ffa0a0
"highlight Number term=underline ctermfg=Yellow guifg=Yellow
highlight Identifier term=underline ctermfg=Cyan guifg=#40ffff
highlight Statement term=bold ctermfg=Yellow gui=bold guifg=#ffff60
highlight PreProc term=underline ctermfg=Blue guifg=#ff4500
highlight Type term=underline ctermfg=DarkGrey gui=bold guifg=#7d96ff
highlight Special term=bold ctermfg=Magenta guifg=Orange
highlight Ignore ctermfg=black guifg=bg
highlight Error ctermfg=White ctermbg=Red guifg=White guibg=Red
highlight Todo ctermfg=Blue ctermbg=Yellow guifg=Blue guibg=Yellow
" Change the highlight of search matches (for use with :set hls).
highlight Search ctermfg=Black ctermbg=Yellow guifg=Black guibg=Yellow
" Change the highlight of visual highlight.
highlight Visual cterm=NONE ctermfg=Black ctermbg=LightGrey gui=NONE guifg=Black guibg=Grey70
highlight Float ctermfg=Blue guifg=#88AAEE
highlight Exception ctermfg=Red ctermbg=White guifg=Red guibg=White
highlight Typedef ctermfg=White ctermbg=Blue gui=bold guifg=White guibg=Blue
highlight SpecialChar ctermfg=Black ctermbg=White guifg=Black guibg=White
highlight Delimiter ctermfg=White ctermbg=Black guifg=White guibg=Black
highlight SpecialComment ctermfg=Black ctermbg=Green guifg=Black guibg=Green
" Common groups that link to default highlighting.
" You can specify other highlighting easily.
highlight link String Constant
highlight link Character Constant
highlight link Number Constant
highlight link Boolean Statement
"highlight link Float Number
highlight link Function Identifier
highlight link Conditional Type
highlight link Repeat Type
highlight link Label Type
highlight link Operator Type
highlight link Keyword Type
"highlight link Exception Type
highlight link Include PreProc
highlight link Define PreProc
highlight link Macro PreProc
highlight link PreCondit PreProc
highlight link StorageClass Type
highlight link Structure Type
"highlight link Typedef Type
"highlight link SpecialChar Special
highlight link Tag Special
"highlight link Delimiter Special
"highlight link SpecialComment Special
highlight link Debug Special

View File

@ -1,37 +0,0 @@
" gVim color file for working with files in GDL/VCG format.
" Works nice in conjunction with gdl.vim
" (see www.vim.org or www.aisee.com)
" Works fine for C/C++, too.
" Author : Alexander A. Evstyugov-Babaev <alex@absint.com>
" Version: 0.2 for gVim/Linux,
" tested with gVim 6.3.25 under Ubuntu Linux (Warty)
" by Jo Vermeulen <jo@lumumba.luc.ac.be>
" Date : January 25th 2005
set background=dark
hi clear
if exists("syntax_on")
syntax reset
endif
let g:colors_name="aiseered"
hi Normal guifg=lightred guibg=#600000
hi Cursor guifg=bg guibg=fg
hi ErrorMsg guibg=red ctermfg=1
hi Search term=reverse ctermfg=darkred ctermbg=lightred guibg=lightred guifg=#060000
hi Comment guifg=#ffffff
hi Constant guifg=#88ddee
hi String guifg=#ffcc88
hi Character guifg=#ffaa00
hi Number guifg=#88ddee
hi Identifier guifg=#cfcfcf
hi Statement guifg=#eeff99 gui=bold
hi PreProc guifg=firebrick1 gui=italic
hi Type guifg=#88ffaa gui=none
hi Special guifg=#ffaa00
hi SpecialChar guifg=#ffaa00
hi StorageClass guifg=#ddaacc
hi Error guifg=red guibg=white

View File

@ -1,44 +0,0 @@
" Vim color file
" Maintainer: tranquility@portugalmail.pt
" Last Change: 6 Apr 2002
" cool help screens
" :he group-name
" :he highlight-groups
" :he cterm-colors
set background=dark
hi clear
if exists("syntax_on")
syntax reset
endif
let g:colors_name="aqua"
hi Normal guibg=steelblue guifg=linen
hi Cursor guibg=lightblue3 guifg=black gui=bold
hi VertSplit guifg=white guibg=navyblue gui=none
hi Folded guibg=darkblue guifg=white
hi FoldColumn guibg=lightgray guifg=navyblue
hi ModeMsg guifg=black guibg=steelblue1
hi MoreMsg guifg=black guibg=steelblue1
hi NonText guifg=white guibg=steelblue4 gui=none
hi Question guifg=snow
hi Search guibg=#FFFFFF guifg=midnightblue gui=bold
hi SpecialKey guifg=navyblue
hi StatusLine guibg=skyblue3 guifg=black gui=none
hi StatusLineNC guibg=skyblue1 guifg=black gui=none
hi Title guifg=bisque3
hi Subtitle guifg=black
hi Visual guifg=white guibg=royalblue4 gui=none
hi WarningMsg guifg=salmon4 guibg=gray60 gui=bold
hi Comment guifg=lightskyblue
hi Constant guifg=turquoise gui=bold
hi Identifier guifg=lightcyan
hi Statement guifg=royalblue4
hi PreProc guifg=black gui=bold
hi Type guifg=lightgreen
hi Special guifg=navajowhite
hi Ignore guifg=grey29
hi Todo guibg=black guifg=white
hi WildMenu guibg=aquamarine

View File

@ -1,164 +0,0 @@
" astronaut.vim: a colorscheme
" Maintainer: Charles E. Campbell, Jr. <charles.e.campbell.1@gsfc.nasa.gov>
" Date: Feb 21, 2006
" Version: 7
"
" Usage:
" Put into your <.vimrc> file:
" color astronaut
"
" Optional Modifiers:
" let g:astronaut_bold=1 : term, cterm, and gui receive bold modifier
" let g:astronaut_dark=1 : dark colors used (otherwise some terminals
" make everything bold, which can be all one
" color)
" let g:astronaut_underline=1 : assume that underlining works on your terminal
" let g:astronaut_italic=1 : allows italic to be used in gui
" Examples:
" iris : let astronaut_dark=1
" Linux xterm: no modifiers needed
"
" GetLatestVimScripts: 122 1 :AutoInstall: astronaut.vim
set background=dark
hi clear
if exists( "syntax_on" )
syntax reset
endif
let g:colors_name = "astronaut"
let g:loaded_astronaut = "v7"
" ---------------------------------------------------------------------
" Default option values
if !exists("g:astronaut_bold")
" on some machines, notably SGIs, a bold qualifier means everything is
" one color (SGIs: yellow)
let g:astronaut_bold= 0
endif
if !exists("g:astronaut_dark")
" this option, if true, means darkcolor (ex. darkred, darkmagenta, etc)
" is understood and wanted
let g:astronaut_dark= 0
endif
if !exists("g:astronaut_underline")
let g:astronaut_underline= 1
endif
if !exists("g:astronaut_italic")
let g:astronaut_italic= 0
endif
" ---------------------------------------------------------------------
" Settings based on options
if g:astronaut_bold != 0
let s:bold=",bold"
else
let s:bold=""
endif
if g:astronaut_italic != 0
let s:italic= ",italic"
else
let s:italic= ""
endif
if g:astronaut_dark != 0
let s:black = "black"
let s:red = "darkred"
let s:green = "darkgreen"
let s:yellow = "darkyellow"
let s:blue = "darkblue"
let s:magenta = "darkmagenta"
let s:cyan = "darkcyan"
let s:white = "white"
else
let s:black = "black"
let s:red = "red"
let s:green = "green"
let s:yellow = "yellow"
let s:blue = "blue"
let s:magenta = "magenta"
let s:cyan = "cyan"
let s:white = "white"
endif
if g:astronaut_underline != 0
let s:underline= ",underline"
let s:ulbg = ""
else
let s:underline= "none"
if exists("g:astronaut_dark")
let s:ulbg = "ctermbg=darkmagenta guibg=magenta4"
else
let s:ulbg = "ctermbg=magenta guibg=magenta"
endif
endif
" ---------------------------------------------------------------------
exe "hi Blue start= stop= ctermfg=".s:blue." guifg=blue guibg=navyblue term=none".s:bold." cterm=none".s:bold." gui=none".s:bold
exe "hi Comment start= stop= ctermfg=".s:white." guifg=white term=none".s:bold." cterm=none".s:bold." gui=none".s:bold
exe "hi Conceal ctermfg=".s:blue." ctermbg=".s:black." guifg=Blue guibg=Black term=none".s:bold." cterm=none".s:bold." gui=none".s:bold
exe "hi Constant start= stop= ctermfg=".s:yellow." guifg=yellow guibg=navyblue term=none".s:bold." cterm=none".s:bold." gui=none".s:bold
exe "hi Cursor guifg=blue guibg=green term=none".s:bold." cterm=none".s:bold." gui=none".s:bold
exe "hi Cyan start= stop= ctermfg=".s:cyan." guifg=cyan guibg=navyblue term=none".s:bold." cterm=none".s:bold." gui=none".s:bold
exe "hi Debug start= stop= ctermfg=".s:magenta." ctermbg=".s:black." guifg=magenta guibg=black term=none".s:bold." cterm=none".s:bold." gui=none".s:bold
exe "hi Delimiter start= stop= ctermfg=".s:white." guifg=white guibg=navyblue term=none".s:bold." cterm=none".s:bold." gui=none".s:bold
exe "hi DiffAdd ctermfg=".s:white." ctermbg=".s:magenta." guifg=White guibg=Magenta term=none".s:bold." cterm=none".s:bold." gui=none".s:bold
exe "hi DiffChange ctermfg=".s:yellow." ctermbg=".s:blue." guifg=Yellow guibg=Blue term=none".s:bold." cterm=none".s:bold." gui=none".s:bold
exe "hi DiffDelete ctermfg=".s:white." ctermbg=".s:blue." guifg=White guibg=Blue term=none".s:bold." cterm=none".s:bold." gui=none".s:bold
exe "hi DiffText ctermfg=".s:white." ctermbg=".s:red." guifg=White guibg=Red term=none".s:bold." cterm=none".s:bold." gui=none".s:bold
exe "hi Directory start= stop= ctermfg=".s:white." guifg=white term=none".s:bold." cterm=none".s:bold." gui=none".s:bold
exe "hi Error start= stop= ctermfg=".s:white." ctermbg=".s:red." guifg=white guibg=red term=none".s:bold." cterm=none".s:bold." gui=none".s:bold
exe "hi ErrorMsg ctermfg=".s:white." ctermbg=".s:red." guifg=White guibg=Red term=standout".s:bold." cterm=none".s:bold." gui=none".s:bold
exe "hi FoldColumn start= stop= ctermfg=".s:cyan." ctermbg=".s:black." guifg=Cyan guibg=Brown term=standout".s:bold." cterm=none".s:bold." gui=none".s:bold
exe "hi Folded start= stop= ctermfg=".s:magenta." ctermbg=".s:black." guifg=magenta guibg=black term=none".s:bold." cterm=none".s:bold." gui=none".s:bold
exe "hi Function start= stop= ctermfg=".s:cyan." guifg=cyan guibg=navyblue term=none".s:bold." cterm=none".s:bold." gui=none".s:bold
exe "hi Green start= stop= ctermfg=".s:green." guifg=green guibg=navyblue term=none".s:bold." cterm=none".s:bold." gui=none".s:bold
exe "hi Identifier start= stop= ctermfg=".s:magenta." guifg=magenta guibg=navyblue term=none".s:bold." cterm=none".s:bold." gui=none".s:bold
exe "hi Ignore ctermfg=".s:black ." guifg=bg term=none".s:bold." cterm=none".s:bold." gui=none".s:bold
exe "hi IncSearch start= stop= ctermfg=".s:black ." ctermbg=".s:green." guifg=black guibg=green term=none".s:bold." cterm=none".s:bold." gui=none".s:bold
exe "hi LineNr ctermfg=".s:yellow." ".s:ulbg." guifg=Yellow term=none".s:underline.s:bold." cterm=none".s:bold." gui=none".s:bold
exe "hi Magenta start= stop= ctermfg=".s:magenta." guifg=magenta guibg=navyblue term=none".s:bold." cterm=none".s:bold." gui=none".s:bold
exe "hi Menu guifg=black guibg=gray75 term=none".s:bold." cterm=none".s:bold." gui=none".s:bold
exe "hi ModeMsg ctermfg=".s:green." guifg=SeaGreen term=none".s:bold." cterm=none".s:bold." gui=none".s:bold
exe "hi MoreMsg ctermfg=".s:green." guifg=SeaGreen term=none".s:bold." cterm=none".s:bold." gui=none".s:bold
exe "hi NonText ctermfg=".s:blue." guifg=Blue term=none".s:bold." cterm=none".s:bold." gui=none".s:bold
exe "hi Normal start= stop= ctermfg=".s:green." guifg=green guibg=navyblue term=none".s:bold." cterm=none".s:bold." gui=none".s:bold
exe "hi PreProc start= stop= ctermfg=".s:white." ctermbg=".s:blue." guifg=white guibg=blue3 term=none".s:bold." cterm=none".s:bold." gui=none".s:bold
exe "hi Question start= stop= ctermfg=".s:yellow." guifg=yellow term=none".s:bold." cterm=none".s:bold." gui=none".s:bold
exe "hi Red start= stop= ctermfg=".s:red." guifg=red guibg=navyblue term=none".s:bold." cterm=none".s:bold." gui=none".s:bold
exe "hi Scrollbar guifg=gray80 guibg=gray70 term=none".s:bold." cterm=none".s:bold." gui=none".s:bold
exe "hi Search start= stop= ctermfg=".s:yellow." ctermbg=".s:blue." guifg=yellow guibg=blue term=none".s:bold." cterm=none".s:bold." gui=none".s:bold
exe "hi Special start= stop= ctermfg=".s:green." ctermbg=".s:blue." guifg=green guibg=blue term=none".s:bold." cterm=none".s:bold." gui=none".s:bold
exe "hi SpecialKey start= stop= ctermfg=".s:black." ctermbg=".s:magenta." guifg=black guibg=magenta term=none".s:bold." cterm=none".s:bold." gui=none".s:bold
exe "hi Statement start= stop= ctermfg=".s:cyan." guifg=cyan guibg=navyblue term=none".s:bold." cterm=none".s:bold." gui=none".s:bold
exe "hi StatusLine start= stop= ctermfg=".s:black." ctermbg=".s:cyan." guifg=black guibg=cyan term=none".s:bold." cterm=none".s:bold." gui=none".s:bold
exe "hi StatusLineNC start= stop= ctermfg=".s:black." ctermbg=".s:green." guifg=black guibg=green term=none".s:bold." cterm=none".s:bold." gui=none".s:bold
exe "hi String start= stop= ctermfg=".s:yellow." guifg=yellow guibg=navyblue term=none".s:bold." cterm=none".s:bold." gui=none".s:bold
exe "hi Subtitle start= stop= ctermfg=".s:magenta." guifg=magenta guibg=navyblue term=none".s:bold." cterm=none".s:bold." gui=none".s:bold
if v:version >= 700
exe "hi TabLine start= stop= ctermfg=".s:black." ctermbg=".s:blue." guifg=black guibg=blue term=none".s:bold." cterm=none".s:bold." gui=none".s:bold.s:underline.s:italic
exe "hi TabLineSel start= stop= ctermfg=".s:green." ctermbg=".s:blue." guifg=green guibg=blue term=none".s:bold." cterm=none".s:bold." gui=none".s:bold.s:underline.s:italic
exe "hi TabLineFill start= stop= ctermfg=".s:blue." ctermbg=".s:blue." guifg=blue guibg=blue term=none".s:bold." cterm=none".s:bold." gui=none".s:bold
endif
exe "hi Tags start= stop= ctermfg=".s:yellow." ctermbg=".s:blue." guifg=yellow guibg=blue3 term=none".s:bold." cterm=none".s:bold." gui=none".s:bold
exe "hi Title start= stop= ctermfg=".s:white." guifg=white term=none".s:bold." cterm=none".s:bold." gui=none".s:bold
exe "hi Todo start= stop= ctermfg=".s:white." ctermbg=".s:magenta." guifg=white guibg=magenta term=none".s:bold." cterm=none".s:bold." gui=none".s:bold
exe "hi Type start= stop= ctermfg=".s:green." ".s:ulbg." guifg=seagreen1 term=none".s:underline.s:bold." cterm=none".s:bold.s:underline." gui=none".s:bold.s:underline
exe "hi Underlined ctermfg=".s:green." ".s:ulbg." guifg=green term=none".s:underline.s:bold." cterm=none".s:bold.s:underline." gui=none".s:bold.s:underline
exe "hi Unique start= stop= ctermfg=".s:blue." ctermbg=".s:white." guifg=blue3 guibg=white term=none".s:bold." cterm=none".s:bold." gui=none".s:bold
exe "hi AltUnique start= stop= ctermfg=".s:magenta." ctermbg=".s:white." guifg=magenta guibg=white term=none".s:bold." cterm=none".s:bold." gui=none".s:bold
exe "hi AltAltUnique start= stop= ctermfg=".s:black." ctermbg=".s:white." guifg=black guibg=white term=none".s:bold." cterm=none".s:bold." gui=none".s:bold
exe "hi VertSplit start= stop= ctermfg=".s:black." ctermbg=".s:green." guifg=black guibg=green term=none".s:bold." cterm=none".s:bold." gui=none".s:bold
exe "hi Visual start= stop= ctermfg=black ctermbg=green guifg=Grey guibg=fg term=none".s:bold." cterm=none".s:bold." gui=none".s:bold
exe "hi VisualNOS ".s:ulbg." term=none".s:underline.s:bold." cterm=none".s:bold.s:underline." gui=none".s:bold.s:underline
exe "hi WarningMsg start= stop= ctermfg=".s:black." ctermbg=".s:yellow." guifg=black guibg=yellow term=none".s:bold." cterm=none".s:bold." gui=none".s:bold
exe "hi White start= stop= ctermfg=".s:white." guifg=white guibg=navyblue term=none".s:bold." cterm=none".s:bold." gui=none".s:bold
exe "hi WildMenu ctermfg=".s:black." ctermbg=".s:yellow." guifg=Black guibg=Yellow term=standout".s:bold." cterm=none".s:bold." gui=none".s:bold
exe "hi Yellow start= stop= ctermfg=".s:yellow." guifg=yellow guibg=navyblue term=none".s:bold." cterm=none".s:bold." gui=none".s:bold
exe "hi lCursor guifg=bg guibg=fg term=none".s:bold." cterm=none".s:bold." gui=none".s:bold
exe "hi AltConstant start= stop= ctermfg=".s:yellow." ctermbg=".s:black." guifg=yellow guibg=black term=none".s:bold." cterm=none".s:bold." gui=none".s:bold.s:italic
exe "hi AltFunction start= stop= ctermfg=".s:green." ctermbg=".s:black." guifg=green guibg=black term=none".s:bold." cterm=none".s:bold." gui=none".s:bold.s:italic
exe "hi AltType start= stop= ctermfg=".s:green." ctermbg=".s:black." guifg=seagreen1 guibg=black term=none".s:underline.s:bold." cterm=none".s:bold.s:underline." gui=none".s:bold.s:underline.s:italic
exe "hi User1 ctermfg=".s:white." ctermbg=".s:blue." guifg=white guibg=blue"
exe "hi User2 ctermfg=".s:cyan." ctermbg=".s:blue." guifg=cyan guibg=blue"
" vim: nowrap

View File

@ -1,59 +0,0 @@
" Vim color file
" Maintainer: A. Sinan Unur
" Last Change: 2001/10/04
" Dark color scheme
set background=dark
hi clear
if exists("syntax_on")
syntax reset
endif
let g:colors_name="asu1dark"
" Console Color Scheme
hi Normal term=NONE cterm=NONE ctermfg=LightGray ctermbg=Black
hi NonText term=NONE cterm=NONE ctermfg=Brown ctermbg=Black
hi Function term=NONE cterm=NONE ctermfg=DarkCyan ctermbg=Black
hi Statement term=BOLD cterm=BOLD ctermfg=DarkBlue ctermbg=Black
hi Special term=NONE cterm=NONE ctermfg=DarkGreen ctermbg=Black
hi SpecialChar term=NONE cterm=NONE ctermfg=Cyan ctermbg=Black
hi Constant term=NONE cterm=NONE ctermfg=Blue ctermbg=Black
hi Comment term=NONE cterm=NONE ctermfg=DarkGray ctermbg=Black
hi Preproc term=NONE cterm=NONE ctermfg=DarkGreen ctermbg=Black
hi Type term=NONE cterm=NONE ctermfg=DarkMagenta ctermbg=Black
hi Identifier term=NONE cterm=NONE ctermfg=Cyan ctermbg=Black
hi StatusLine term=BOLD cterm=NONE ctermfg=Yellow ctermbg=DarkBlue
hi StatusLineNC term=NONE cterm=NONE ctermfg=Black ctermbg=Gray
hi Visual term=NONE cterm=NONE ctermfg=White ctermbg=DarkCyan
hi Search term=NONE cterm=NONE ctermbg=Yellow ctermfg=DarkBlue
hi VertSplit term=NONE cterm=NONE ctermfg=Black ctermbg=Gray
hi Directory term=NONE cterm=NONE ctermfg=Green ctermbg=Black
hi WarningMsg term=NONE cterm=NONE ctermfg=Blue ctermbg=Yellow
hi Error term=NONE cterm=NONE ctermfg=DarkRed ctermbg=Gray
hi Cursor ctermfg=Black ctermbg=Cyan
hi LineNr term=NONE cterm=NONE ctermfg=Red ctermbg=Black
" GUI Color Scheme
hi Normal gui=NONE guifg=White guibg=#110022
hi NonText gui=NONE guifg=#ff9999 guibg=#444444
hi Function gui=NONE guifg=#7788ff guibg=#110022
hi Statement gui=BOLD guifg=Yellow guibg=#110022
hi Special gui=NONE guifg=Cyan guibg=#110022
hi Constant gui=NONE guifg=#ff9900 guibg=#110022
hi Comment gui=NONE guifg=#99cc99 guibg=#110022
hi Preproc gui=NONE guifg=#33ff66 guibg=#110022
hi Type gui=NONE guifg=#ff5577 guibg=#110022
hi Identifier gui=NONE guifg=Cyan guibg=#110022
hi StatusLine gui=BOLD guifg=White guibg=#336600
hi StatusLineNC gui=NONE guifg=Black guibg=#cccccc
hi Visual gui=NONE guifg=White guibg=#00aa33
hi Search gui=BOLD guibg=Yellow guifg=DarkBlue
hi VertSplit gui=NONE guifg=White guibg=#666666
hi Directory gui=NONE guifg=Green guibg=#110022
hi WarningMsg gui=STANDOUT guifg=#0000cc guibg=Yellow
hi Error gui=NONE guifg=White guibg=Red
hi Cursor guifg=White guibg=#00ff33
hi LineNr gui=NONE guifg=#cccccc guibg=#334444
hi ModeMsg gui=NONE guifg=Blue guibg=White
hi Question gui=NONE guifg=#66ff99 guibg=#110022

View File

@ -1,59 +0,0 @@
" Vim color file (automation.vim)
" Maintainer: Ken McConnell <nacer@yahoo.com>
" Last Change: 2004 Jan 15
"
" This color scheme uses a light grey background. It was created to simulate
" the look of an IDE. It is named after the MFP Automation Team at HP Boise.
"
" First remove all existing highlighting.
set background=light
hi clear
if exists("syntax_on")
syntax reset
endif
let colors_name = "automation"
hi Normal ctermbg=Black ctermfg=LightGrey guifg=Black guibg=Grey96
" Groups used in the 'highlight' and 'guicursor' options default value.
hi ErrorMsg term=standout ctermbg=DarkRed ctermfg=White guibg=Red guifg=White
hi IncSearch term=reverse cterm=bold gui=bold
hi ModeMsg term=bold cterm=bold gui=bold
hi StatusLine term=bold cterm=bold gui=bold
hi StatusLineNC term=bold cterm=bold gui=bold
hi VertSplit term=bold cterm=bold gui=bold
hi Visual term=bold cterm=bold gui=bold guifg=Grey guibg=fg
hi VisualNOS term=underline,bold cterm=underline,bold gui=underline,bold
hi DiffText term=reverse cterm=bold ctermbg=Red gui=bold guibg=Red
hi Cursor guibg=Black guifg=Black
hi lCursor guibg=Cyan guifg=Black
hi Directory term=bold ctermfg=LightCyan guifg=DarkBlue
hi LineNr term=underline ctermfg=DarkGrey guifg=DarkGrey guibg=LightGrey
hi MoreMsg term=bold ctermfg=LightGreen gui=bold guifg=SeaGreen
hi NonText term=bold ctermfg=LightBlue gui=bold guifg=DarkGreen guibg=grey80
hi Question term=standout ctermfg=LightGreen gui=bold guifg=Green
hi Search term=reverse ctermbg=Yellow ctermfg=Black guibg=Yellow guifg=Black
hi SpecialKey term=bold ctermfg=DarkBlue guifg=DarkBlue
hi Title term=bold ctermfg=LightMagenta gui=bold guifg=DarkBlue
hi WarningMsg term=standout ctermfg=LightRed guifg=Red
hi WildMenu term=standout ctermbg=Yellow ctermfg=Black guibg=Yellow guifg=Black
hi Folded term=standout ctermbg=LightGrey ctermfg=DarkBlue guibg=LightGrey guifg=DarkBlue
hi FoldColumn term=standout ctermbg=LightGrey ctermfg=DarkBlue guibg=Grey guifg=DarkBlue
hi DiffAdd term=bold ctermbg=DarkBlue guibg=DarkBlue
hi DiffChange term=bold ctermbg=DarkMagenta guibg=DarkMagenta
hi DiffDelete term=bold ctermfg=Blue ctermbg=DarkCyan gui=bold guifg=Blue guibg=DarkCyan
hi Comment guifg=Blue guibg=Grey90 ctermfg=DarkGreen
hi String guifg=DarkGreen ctermfg=DarkGreen
hi Statement guifg=DarkBlue ctermfg=Blue
hi Label gui=bold guifg=DarkBlue
" Groups for syntax highlighting
hi Constant term=underline ctermfg=DarkBlue guifg=DarkBlue guibg=Grey96
hi Special term=bold ctermfg=LightRed guifg=DarkBlue guibg=Grey96
if &t_Co > 8
hi Statement term=bold cterm=bold ctermfg=DarkBlue guifg=DarkBlue
endif
hi Ignore ctermfg=LightGrey guifg=grey90
" vim: sw=2

View File

@ -1,88 +0,0 @@
" Vim colour file
" Maintainer: Antony Scriven <ad_scriven@postmaster.co.uk>
" Last Change: 2003-06-12
"
set background=light
hi clear
if exists("syntax_on")
syntax reset
endif
let colors_name = "autumn"
hi Normal term=none cterm=none ctermfg=black ctermbg=White gui=none guifg=Black guibg=#f0f2f0
hi Cursor term=none cterm=none ctermfg=white ctermbg=darkgrey gui=none guifg=black guibg=red
hi DiffAdd term=bold cterm=none ctermfg=white ctermbg=DarkBlue gui=none guifg=#aaeeaa guibg=#447744
hi DiffChange term=bold cterm=none ctermfg=white ctermbg=DarkMagenta gui=none guifg=lightyellow guibg=#ddbb55
hi DiffDelete term=bold cterm=none ctermfg=blue ctermbg=darkcyan gui=none guifg=#336633 guibg=#aaccaa
hi difftext term=reverse cterm=bold ctermfg=white ctermbg=red gui=none guifg=lightyellow guibg=#cc7733
hi Directory term=none cterm=none ctermfg=Red ctermbg=white gui=none guifg=Red guibg=bg
hi ErrorMsg term=standout cterm=none ctermfg=white ctermbg=DarkRed gui=none guifg=white guibg=DarkRed
hi Folded term=reverse cterm=none ctermfg=darkblue ctermbg=lightgrey gui=none guifg=darkblue guibg=lightgrey
"8 col term
hi FoldColumn term=reverse cterm=none ctermfg=darkblue ctermbg=grey gui=none guifg=darkblue guibg=grey
hi IncSearch term=reverse cterm=none ctermfg=yellow ctermbg=darkgreen gui=none guifg=yellow guibg=#449944
hi lCursor term=reverse cterm=none ctermfg=black ctermbg=cyan gui=none guifg=black guibg=Cyan
hi LineNr term=reverse cterm=none ctermfg=darkred ctermbg=grey gui=none guifg=brown guibg=lightgrey
hi ModeMsg term=bold cterm=none ctermfg=green ctermbg=darkgreen gui=none guifg=#007700 guibg=#aaccaa
hi MoreMsg term=bold cterm=none ctermfg=darkGreen ctermbg=white gui=none guifg=darkgreen guibg=bg
hi Question term=bold cterm=none ctermfg=darkGreen ctermbg=white gui=none guifg=darkgreen guibg=bg
hi Search term=reverse cterm=none ctermfg=black ctermbg=yellow gui=none guifg=black guibg=yellow
hi SpecialKey term=italic cterm=none ctermfg=lightgrey ctermbg=white gui=none guifg=lightblue guibg=bg
hi NonText term=bold cterm=none ctermfg=lightgrey ctermbg=white gui=none guifg=#c6c6c6 guibg=bg
hi StatusLine term=reverse cterm=none ctermfg=white ctermbg=black gui=none guifg=#80624d guibg=#ddd9b8
hi Title term=bold cterm=none ctermfg=DarkMagenta ctermbg=white gui=none guifg=DarkMagenta guibg=bg
if has("gui_running") || &t_Co > 8
hi Visual term=reverse cterm=none ctermfg=black ctermbg=lightgrey gui=none guifg=black guibg=lightgreen
hi VertSplit term=reverse cterm=none ctermfg=darkgrey ctermbg=darkgrey gui=none guifg=#c7c7c2 guibg=#d7d7d2
hi StatusLineNC term=reverse cterm=none ctermfg=white ctermbg=darkgrey gui=none guifg=darkgrey guibg=#d7d7d2
hi Comment term=italic cterm=none ctermfg=grey ctermbg=white gui=none guifg=#ccaaaa guibg=bg
else
hi Visual term=reverse cterm=none ctermfg=green ctermbg=darkgreen gui=none guifg=black guibg=lightgreen
hi VertSplit term=reverse cterm=none ctermfg=darkcyan ctermbg=darkblue gui=none guifg=darkgrey guibg=darkgrey
hi StatusLineNC term=reverse cterm=none ctermfg=white ctermbg=darkblue gui=none guifg=white guibg=darkgrey
hi Comment term=italic cterm=none ctermfg=darkcyan ctermbg=white gui=none guifg=#ccaaaa guibg=bg
endif
hi VisualNOS term=bold cterm=none ctermfg=grey ctermbg=black gui=none guifg=grey guibg=black
hi WarningMsg term=standout cterm=none ctermfg=Red ctermbg=white gui=none guifg=Red guibg=bg
hi WildMenu term=bold cterm=none ctermfg=darkblue ctermbg=yellow gui=none guifg=black guibg=lightyellow
hi Constant term=underline cterm=none ctermfg=darkred ctermbg=bg gui=none guifg=#bb6666 guibg=bg
hi Special term=bold cterm=none ctermfg=darkcyan ctermbg=white gui=none guifg=darkcyan guibg=bg
hi identifier term=underline cterm=none ctermfg=darkmagenta ctermbg=white gui=none guifg=darkcyan guibg=bg
hi statement term=bold cterm=none ctermfg=darkgreen ctermbg=white gui=none guifg=#44aa44 guibg=bg
hi preproc term=underline cterm=none ctermfg=darkgrey ctermbg=white gui=none guifg=darkgrey guibg=bg
hi type term=none cterm=none ctermfg=brown ctermbg=white gui=none guifg=#bb9900 guibg=bg
hi underlined term=underline cterm=underline ctermfg=darkmagenta ctermbg=white gui=underline guifg=darkmagenta guibg=bg
hi Ignore term=italic cterm=none ctermfg=lightgrey ctermbg=white gui=none guifg=grey guibg=bg
"hi todo term=underline cterm=bold ctermfg=yellow ctermbg=brown gui=none guifg=#333333 guibg=#ddee33
hi todo term=bold cterm=none ctermfg=yellow ctermbg=brown gui=bold guifg=#229900 guibg=#ddd9b8
hi function term=bold cterm=none ctermfg=blue ctermbg=white gui=none guifg=#0055cc guibg=bg
hi link String Constant
hi link Character Constant
hi link Number Constant
hi link Boolean Constant
hi link Float Number
hi link Conditional Statement
hi link Repeat Statement
hi link Label Statement
hi link Operator Statement
hi link Keyword Statement
hi link Exception Statement
hi link Include PreProc
hi link Define PreProc
hi link Macro PreProc
hi link PreCondit PreProc
hi link StorageClass Type
hi link Structure Type
hi link Typedef Type
hi link Tag Special
hi link SpecialChar Special
hi link Delimiter Special
hi link SpecialComment Special
hi link Debug Special
hi link vimfunction function
" vim: set ts=8 sw=8 et sts=8 tw=72 fo-=t ff=unix :

View File

@ -1,69 +0,0 @@
" Vim color file
" Maintainer: Tiza
" Last Change: 2002/10/14 Mon 16:41.
" version: 1.0
" This color scheme uses a light background.
set background=light
hi clear
if exists("syntax_on")
syntax reset
endif
let colors_name = "autumn"
hi Normal guifg=#404040 guibg=#fff4e8
" Search
hi IncSearch gui=UNDERLINE guifg=#404040 guibg=#e0e040
hi Search gui=NONE guifg=#544060 guibg=#f0c0ff
" Messages
hi ErrorMsg gui=BOLD guifg=#f8f8f8 guibg=#4040ff
hi WarningMsg gui=BOLD guifg=#f8f8f8 guibg=#4040ff
hi ModeMsg gui=NONE guifg=#d06000 guibg=NONE
hi MoreMsg gui=NONE guifg=#0090a0 guibg=NONE
hi Question gui=NONE guifg=#8000ff guibg=NONE
" Split area
hi StatusLine gui=BOLD guifg=#f8f8f8 guibg=#904838
hi StatusLineNC gui=BOLD guifg=#c0b0a0 guibg=#904838
hi VertSplit gui=NONE guifg=#f8f8f8 guibg=#904838
hi WildMenu gui=BOLD guifg=#f8f8f8 guibg=#ff3030
" Diff
hi DiffText gui=NONE guifg=#2850a0 guibg=#c0d0f0
hi DiffChange gui=NONE guifg=#208040 guibg=#c0f0d0
hi DiffDelete gui=NONE guifg=#ff2020 guibg=#eaf2b0
hi DiffAdd gui=NONE guifg=#ff2020 guibg=#eaf2b0
" Cursor
hi Cursor gui=NONE guifg=#ffffff guibg=#0080f0
hi lCursor gui=NONE guifg=#ffffff guibg=#8040ff
hi CursorIM gui=NONE guifg=#ffffff guibg=#8040ff
" Fold
hi Folded gui=NONE guifg=#804030 guibg=#ffc0a0
hi FoldColumn gui=NONE guifg=#a05040 guibg=#f8d8c4
" Other
hi Directory gui=NONE guifg=#7050ff guibg=NONE
hi LineNr gui=NONE guifg=#e0b090 guibg=NONE
hi NonText gui=BOLD guifg=#a05040 guibg=#ffe4d4
hi SpecialKey gui=NONE guifg=#0080ff guibg=NONE
hi Title gui=BOLD guifg=fg guibg=NONE
hi Visual gui=NONE guifg=#804020 guibg=#ffc0a0
" hi VisualNOS gui=NONE guifg=#604040 guibg=#e8dddd
" Syntax group
hi Comment gui=NONE guifg=#ff5050 guibg=NONE
hi Constant gui=NONE guifg=#00884c guibg=NONE
hi Error gui=BOLD guifg=#f8f8f8 guibg=#4040ff
hi Identifier gui=NONE guifg=#b07800 guibg=NONE
hi Ignore gui=NONE guifg=bg guibg=NONE
hi PreProc gui=NONE guifg=#0090a0 guibg=NONE
hi Special gui=NONE guifg=#8040f0 guibg=NONE
hi Statement gui=BOLD guifg=#80a030 guibg=NONE
hi Todo gui=BOLD,UNDERLINE guifg=#0080f0 guibg=NONE
hi Type gui=BOLD guifg=#b06c58 guibg=NONE
hi Underlined gui=UNDERLINE guifg=blue guibg=NONE

View File

@ -1,154 +0,0 @@
" Vim color file
" Maintainer: Anders Korte
" Last Change: 17 Oct 2004
" AutumnLeaf color scheme 1.0
set background=light
hi clear
if exists("syntax_on")
syntax reset
endif
let colors_name="AutumnLeaf"
" Colors for the User Interface.
hi Cursor guibg=#aa7733 guifg=#ffeebb gui=bold
hi Normal guibg=#fffdfa guifg=black gui=none
hi NonText guibg=#eafaea guifg=#000099 gui=bold
hi Visual guibg=#fff8cc guifg=black gui=none
" hi VisualNOS
hi Linenr guibg=bg guifg=#999999 gui=none
" Uncomment these if you use Diff...??
" hi DiffText guibg=#cc0000 guifg=white gui=none
" hi DiffAdd guibg=#0000cc guifg=white gui=none
" hi DiffChange guibg=#990099 guifg=white gui=none
" hi DiffDelete guibg=#888888 guifg=#333333 gui=none
hi Directory guibg=bg guifg=#337700 gui=none
hi IncSearch guibg=#c8e8ff guifg=black gui=none
hi Search guibg=#c8e8ff guifg=black gui=none
hi SpecialKey guibg=bg guifg=fg gui=none
hi Titled guibg=bg guifg=fg gui=none
hi ErrorMsg guibg=bg guifg=#cc0000 gui=bold
hi ModeMsg guibg=bg guifg=#003399 gui=none
hi link MoreMsg ModeMsg
hi link Question ModeMsg
hi WarningMsg guibg=bg guifg=#cc0000 gui=bold
hi StatusLine guibg=#ffeebb guifg=black gui=bold
hi StatusLineNC guibg=#aa8866 guifg=#f8e8cc gui=none
hi VertSplit guibg=#aa8866 guifg=#ffe0bb gui=none
" hi Folded
" hi FoldColumn
" hi SignColumn
" Colors for Syntax Highlighting.
hi Comment guibg=#ddeedd guifg=#002200 gui=none
hi Constant guibg=bg guifg=#003399 gui=bold
hi String guibg=bg guifg=#003399 gui=italic
hi Character guibg=bg guifg=#003399 gui=italic
hi Number guibg=bg guifg=#003399 gui=bold
hi Boolean guibg=bg guifg=#003399 gui=bold
hi Float guibg=bg guifg=#003399 gui=bold
hi Identifier guibg=bg guifg=#003399 gui=none
hi Function guibg=bg guifg=#0055aa gui=bold
hi Statement guibg=bg guifg=#003399 gui=none
hi Conditional guibg=bg guifg=#aa7733 gui=bold
hi Repeat guibg=bg guifg=#aa5544 gui=bold
hi link Label Conditional
hi Operator guibg=bg guifg=#aa7733 gui=bold
hi link Keyword Statement
hi Exception guibg=bg guifg=#228877 gui=bold
hi PreProc guibg=bg guifg=#aa7733 gui=bold
hi Include guibg=bg guifg=#558811 gui=bold
hi link Define Include
hi link Macro Include
hi link PreCondit Include
hi Type guibg=bg guifg=#007700 gui=bold
hi link StorageClass Type
hi link Structure Type
hi Typedef guibg=bg guifg=#009900 gui=italic
hi Special guibg=bg guifg=fg gui=none
hi SpecialChar guibg=bg guifg=fg gui=bold
hi Tag guibg=bg guifg=#003399 gui=bold
hi link Delimiter Special
hi SpecialComment guibg=#dddddd guifg=#aa0000 gui=none
hi link Debug Special
hi Underlined guibg=bg guifg=blue gui=underline
hi Title guibg=bg guifg=fg gui=bold
hi Ignore guibg=bg guifg=#999999 gui=none
hi Error guibg=red guifg=white gui=none
hi Todo guibg=bg guifg=#aa0000 gui=none
" The same in cterm colors.
hi Cursor ctermbg=6 ctermfg=14
hi Normal ctermbg=15 ctermfg=0
hi NonText ctermbg=10 ctermfg=1
hi Visual ctermbg=14 ctermfg=0
" hi VisualNOS
hi Linenr ctermbg=bg ctermfg=7
" hi DiffText ctermbg=4 ctermfg=15
" hi DiffAdd ctermbg=1 ctermfg=15
" hi DiffChange ctermbg=5 ctermfg=15
" hi DiffDelete ctermbg=7 ctermfg=8
hi Directory ctermbg=bg ctermfg=2
hi IncSearch ctermbg=9 ctermfg=0
hi Search ctermbg=9 ctermfg=0
hi SpecialKey ctermbg=bg ctermfg=fg
hi Titled ctermbg=bg ctermfg=fg
hi ErrorMsg ctermbg=bg ctermfg=12
hi ModeMsg ctermbg=bg ctermfg=9
hi WarningMsg ctermbg=bg ctermfg=12
hi StatusLine ctermbg=14 ctermfg=0
hi StatusLineNC ctermbg=6 ctermfg=14
hi VertSplit ctermbg=6 ctermfg=14
" hi Folded
" hi FoldColumn
" hi SignColumn
hi Comment ctermbg=10 ctermfg=2
hi Constant ctermbg=bg ctermfg=9
hi String ctermbg=bg ctermfg=9 cterm=italic
hi Character ctermbg=bg ctermfg=9 cterm=italic
hi Number ctermbg=bg ctermfg=9 cterm=bold
hi Boolean ctermbg=bg ctermfg=9 cterm=bold
hi Float ctermbg=bg ctermfg=9 cterm=bold
hi Function ctermbg=bg ctermfg=9 cterm=bold
hi Statement ctermbg=bg ctermfg=9 cterm=bold
hi Conditional ctermbg=bg ctermfg=6 cterm=bold
hi Repeat ctermbg=bg ctermfg=6 cterm=bold
hi Operator ctermbg=bg ctermfg=6 cterm=bold
hi Exception ctermbg=bg ctermfg=2 cterm=bold
hi PreProc ctermbg=bg ctermfg=6
hi Include ctermbg=bg ctermfg=2 cterm=bold
hi Type ctermbg=bg ctermfg=2 cterm=bold
hi Typedef ctermbg=bg ctermfg=2 cterm=italic
hi Special ctermbg=bg ctermfg=fg cterm=bold
hi Tag ctermbg=bg ctermfg=9 cterm=bold
hi SpecialComment ctermbg=7 ctermfg=4
hi Underlined ctermbg=bg ctermfg=9 cterm=underline
hi Title ctermbg=bg ctermfg=fg cterm=bold
hi Ignore ctermbg=bg ctermfg=7
hi Error ctermbg=12 ctermfg=15
hi Todo ctermbg=bg ctermfg=15

View File

@ -1,319 +0,0 @@
" Vim color file
" baycomb v2.4
" http://www.vim.org/scripts/script.php?script_id=1454
"
" Maintainer: Shawn Axsom <axs221@gmail.com>
"
" * Place :colo baycomb in your VimRC/GVimRC file
" * Also add :set background=dark or :setbackground=light
" depending on your preference.
"
" - Thanks to Desert and OceanDeep for their color scheme
" file layouts
" - Thanks to Raimon Grau and Bob Lied for their feedback
if version > 580
" no guarantees for version 5.8 and below, but this makes it stop
" complaining
hi clear
if exists("syntax_on")
syntax reset
endif
endif
let g:colors_name="baycomb"
if &background == "dark"
hi Normal guifg=#a0b4e0 guibg=#11121a "1a1823
hi NonText guifg=#382920 guibg=bg
hi Folded guibg=#232235 guifg=grey
hi FoldColumn guibg=#0a0a18 guifg=#dbcaa5
hi LineNr guibg=#101124 guifg=#206aa9
hi StatusLine guibg=#354070 guifg=#6880ea gui=none
hi StatusLineNC guibg=#2c3054 guifg=#5c6dbe gui=none
hi VertSplit guibg=#22253c guifg=#223355 gui=none
hi tablinesel guibg=#515a71 guifg=#50aae5 gui=none
hi tabline guibg=#4d4d5f guifg=#5b7098 gui=none
hi tablinefill guibg=#2d2d3f guifg=#aaaaaa gui=none
"hi SpellBad
"hi SpellCap
"hi SpellLocal
"hi SpellRare
hi MatchParen guibg=#7b5a55 guifg=#001122
" syntax highlighting """"""""""""""""""""""""""""""""""""""""
hi Comment guifg=#349d58 guibg=bg
hi Title guifg=#e5e5ca gui=none
hi Underlined guifg=#bac5ba gui=none
hi Statement guifg=#fca8ad gui=none "a080aa
hi Type guifg=#0490e8 gui=bold
hi Constant guifg=#5c78f0 "guibg=#111a2a
hi Number guifg=#4580b4 "guibg=#111a2a
hi PreProc guifg=#ba75cf
hi Special guifg=#aaaaca
hi Ignore guifg=grey40
hi Todo guifg=orangered guibg=yellow2
hi Error guibg=#b03452
hi Function guifg=#bab588 guibg=bg gui=bold
hi Identifier guifg=#5094c4
"""""this section borrowed from OceanDeep/Midnight"""""
highlight Conditional gui=None guifg=#d0688d guibg=bg
highlight Repeat gui=None guifg=#e06070 guibg=bg
"hi Label gui=None guifg=LightGreen guibg=bg
highlight Operator gui=None guifg=#e8cdc0 guibg=bg
highlight Keyword gui=bold guifg=grey guibg=bg
highlight Exception gui=bold guifg=#d0a8ad guibg=bg
"""""""""""""""""""""""""""""""""""""""""""""""""""""""
"end syntax highlighting """""""""""""""""""""""""""""""""""""
" highlight groups
"hi CursorIM
hi Directory guifg=#bbd0df
hi DiffText guibg=#004335
hi DiffChange guibg=#685b5c
hi DiffAdd guibg=#0a4b8c
hi DiffDelete guifg=#300845 guibg=#200845
hi ErrorMsg guibg=#ff4545
hi Cursor guibg=#cad5c0 guifg=#0000aa
hi Search guibg=darkyellow guifg=black
hi IncSearch guifg=#babeaa guibg=#3a4520
hi ModeMsg guifg=#00AACC
hi MoreMsg guifg=SeaGreen
hi Question guifg=#AABBCC
hi SpecialKey guifg=#90dcb0
hi Visual guifg=#102030 guibg=#80a0f0
hi VisualNOS guifg=#201a30 guibg=#a3a5FF
hi WarningMsg guifg=salmon
"hi WildMenu
"hi Menu
"hi Scrollbar guibg=grey30 guifg=tan
"hi Tooltip
" new Vim 7.0 items
hi Pmenu guibg=#3a6595 guifg=#9aadd5
hi PmenuSel guibg=#4a85ba guifg=#b0d0f0
" color terminal definitions
hi Cursor ctermfg=black ctermbg=white
hi Normal ctermfg=grey ctermbg=black
hi Number ctermfg=darkgreen
highlight Operator ctermfg=yellow
highlight Conditional ctermfg=darkred
highlight Repeat ctermfg=darkred
hi Exception ctermfg=darkred
hi SpecialKey ctermfg=darkgreen
hi NonText cterm=bold ctermfg=darkgrey
hi Directory ctermfg=darkcyan
hi ErrorMsg cterm=bold ctermfg=7 ctermbg=1
hi IncSearch ctermfg=yellow ctermbg=darkyellow cterm=NONE
hi Search ctermfg=black ctermbg=darkyellow cterm=NONE
hi MoreMsg ctermfg=darkgreen
hi ModeMsg cterm=NONE ctermfg=brown
hi LineNr ctermfg=darkcyan ctermbg=black
hi Question ctermfg=green
hi StatusLine ctermfg=yellow ctermbg=darkblue cterm=NONE
hi StatusLineNC ctermfg=grey ctermbg=darkblue cterm=NONE
hi VertSplit ctermfg=black ctermbg=darkgrey cterm=NONE
hi Title ctermfg=yellow cterm=NONE
hi Visual ctermbg=grey ctermfg=blue cterm=NONE
hi VisualNOS ctermbg=grey ctermfg=blue cterm=NONE
hi WarningMsg ctermfg=1
hi WildMenu ctermfg=0 ctermbg=3
hi Folded ctermfg=darkgreen ctermbg=darkblue cterm=NONE
hi FoldColumn ctermfg=yellow ctermbg=black
hi DiffAdd ctermbg=4
hi DiffChange ctermbg=5
hi DiffDelete cterm=bold ctermfg=4 ctermbg=6
hi DiffText cterm=bold ctermbg=1
hi Comment ctermfg=darkgreen ctermbg=black
hi Identifier ctermfg=cyan
"set comments to grey on non-Windows OS's to make sure
"it is readable
if &term == "builtin_gui" || &term == "win32"
hi function ctermfg=grey
hi Type ctermfg=darkyellow ctermbg=darkblue
hi IncSearch ctermfg=black ctermbg=grey cterm=NONE
hi Search ctermfg=black ctermbg=darkgrey cterm=NONE
else
hi function ctermfg=white
hi Type ctermfg=grey
hi IncSearch ctermfg=yellow ctermbg=darkyellow cterm=NONE
hi Search ctermfg=black ctermbg=darkyellow cterm=NONE
endif
""""""""""""""""""""""""""""""""""""""""""""""""""""""
hi Constant ctermfg=darkcyan
hi Special ctermfg=white
hi Statement ctermfg=yellow
hi PreProc ctermfg=darkred
hi Underlined ctermfg=cyan cterm=NONE
hi Ignore cterm=bold ctermfg=7
hi Ignore ctermfg=darkgrey
hi Error cterm=bold ctermfg=7 ctermbg=1
" new Vim 7.0 items
hi Pmenu ctermbg=darkblue ctermfg=lightgrey
hi PmenuSel ctermbg=lightblue ctermfg=white
hi tablinesel ctermfg=cyan ctermbg=blue
hi tabline ctermfg=black ctermbg=blue
hi tablinefill ctermfg=green ctermbg=darkblue
"vim: sw=4
"
hi MatchParen ctermfg=black ctermbg=green
elseif &background == "light"
hi Normal guifg=#003255 guibg=#e8ebf0 "greyish blue2
hi NonText guifg=#382920 guibg=#152555
" syntax highlighting """"""""""""""""""""""""""""""""""""""""
"set comments to grey on non-Windows OS's to make sure
"it is readable
if &term == "builtin_gui" || &term == "win32"
hi Comment guifg=#daddb8 guibg=#308ae5
else
hi Comment guifg=darkyellow guibg=#207ada
endif
""""""""""""""""""""""""""""""""""""""""""""""""""""""
hi Title guifg=#857540 gui=none
hi Underlined guifg=#8a758a
hi Statement guifg=#da302a gui=none
hi Type guifg=#307aca gui=none
hi Constant guifg=#3a40aa gui=none
hi PreProc guifg=#9570b5
hi Identifier guifg=#856075 "gui=bold
hi Special guifg=#652a7a
hi Ignore guifg=grey40
hi Todo guifg=orangered guibg=yellow2
hi Error guibg=#b03452
"""""this section borrowed from OceanDeep/Midnight"""""
hi Number guifg=#006bcd
hi Function gui=None guifg=#d06d50 "or green 50b3b0
highlight Conditional gui=None guifg=#a50a4a
highlight Repeat gui=None guifg=#700d8a
"hi Label gui=None guifg=LightGreen guibg=bg
highlight Operator gui=None guifg=#e0b045
highlight Keyword gui=bold guifg=grey guibg=bg
highlight Exception gui=none guifg=#ea5460
"""""""""""""""""""""""""""""""""""""""""""""""""""""""
"end syntax highlighting """""""""""""""""""""""""""""""""""""
" highlight groups
"hi CursorIM
hi Directory guifg=#bbd0df
"hi DiffAdd
"hi DiffChange
"hi DiffDelete
"hi DiffText
hi ErrorMsg guibg=#ff4545
hi Cursor guibg=#cadaca guifg=#05293d
hi FoldColumn guibg=#409ae0 guifg=darkgrey
"hi FoldColumn guibg=#83a5cd guifg=#70459F
hi LineNr guibg=#409ae0 guifg=darkblue gui=bold
"hi LineNr guibg=#081c30 guifg=#80a0dA
hi StatusLine guibg=#20b5fd guifg=#0a150d gui=none
hi StatusLineNC guibg=#0580da guifg=#302d34 gui=none
hi Search guibg=#babdad guifg=#3a4520
hi IncSearch guifg=#dadeca guibg=#3a4520
hi VertSplit guibg=#525f95 guifg=grey50 gui=none
hi Folded guibg=#252f5d guifg=#BBDDCC
hi ModeMsg guifg=#00AACC
hi MoreMsg guifg=SeaGreen
hi Question guifg=#AABBCC
hi SpecialKey guifg=#308c70
hi Visual guifg=#008FBF guibg=#33DFEF
"hi VisualNOS
hi WarningMsg guifg=salmon
"hi WildMenu
"hi Menu
"hi Scrollbar guibg=grey30 guifg=tan
"hi Tooltip
" new Vim 7.0 items
hi Pmenu guibg=#3a6595 guifg=#9aadd5
hi PmenuSel guibg=#4a85ba guifg=#b0d0f0
" color terminal definitions
hi Normal ctermfg=black ctermbg=white
hi Number ctermfg=blue
highlight Operator ctermfg=yellow
highlight Conditional ctermfg=magenta
highlight Repeat ctermfg=magenta
hi Exception ctermfg=red
hi function ctermfg=darkyellow
hi SpecialKey ctermfg=darkgreen
hi NonText cterm=bold ctermfg=darkgrey ctermbg=grey
hi Directory ctermfg=darkcyan
hi ErrorMsg cterm=bold ctermfg=7 ctermbg=1
hi IncSearch ctermfg=yellow ctermbg=darkyellow cterm=NONE
hi Search ctermfg=white ctermbg=darkyellow cterm=NONE
hi MoreMsg ctermfg=darkgreen
hi ModeMsg cterm=NONE ctermfg=brown
hi LineNr ctermfg=black ctermbg=blue
hi Question ctermfg=green
hi StatusLine ctermfg=cyan ctermbg=blue cterm=NONE
hi StatusLineNC ctermfg=grey ctermbg=darkblue cterm=NONE
hi VertSplit ctermfg=black ctermbg=black cterm=NONE
hi Title ctermfg=darkyellow ctermbg=white
hi Visual ctermbg=darkcyan ctermfg=cyan cterm=NONE
hi VisualNOS ctermbg=darkcyan ctermfg=white cterm=NONE
hi WarningMsg ctermfg=1
hi WildMenu ctermfg=0 ctermbg=3
hi Folded ctermfg=black ctermbg=white cterm=NONE
hi FoldColumn ctermfg=green ctermbg=blue
hi DiffAdd ctermbg=4
hi DiffChange ctermbg=5
hi DiffDelete cterm=bold ctermfg=4 ctermbg=6
hi DiffText cterm=bold ctermbg=1
hi Comment ctermfg=grey ctermbg=blue
hi Constant ctermfg=darkblue
hi Special ctermfg=darkmagenta
hi Identifier ctermfg=darkyellow cterm=NONE
hi Statement ctermfg=red
hi PreProc ctermfg=magenta
hi Type ctermfg=darkcyan "or darkcyan
hi Underlined ctermfg=black ctermbg=white
hi Ignore cterm=bold ctermfg=7
hi Ignore ctermfg=darkgrey
hi Error cterm=bold ctermfg=7 ctermbg=1
" new Vim 7.0 items
hi Pmenu ctermbg=darkblue ctermfg=lightgrey
hi PmenuSel ctermbg=lightblue ctermfg=white
"vim: sw=4
endif

View File

@ -1,99 +0,0 @@
" vim: set tw=0 sw=4 sts=4 et:
" 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
" _Billw_ created by Bill White.
set background=dark
hi clear
if exists("syntax_on")
syntax reset
endif
let g:colors_name = "billw"
""" Colors
" GUI colors
hi Cursor guifg=fg guibg=cornsilk
hi CursorIM guifg=NONE guibg=cornsilk
"hi Directory
"hi DiffAdd
"hi DiffChange
"hi DiffDelete
"hi DiffText
hi ErrorMsg gui=bold guifg=White guibg=Red
"hi VertSplit
"hi Folded
"hi FoldColumn
"hi IncSearch
"hi LineNr
hi ModeMsg gui=bold
"hi MoreMsg
"hi NonText
hi Normal guibg=black guifg=cornsilk
"hi Question
hi Search gui=bold guifg=Black guibg=cornsilk
"hi SpecialKey
hi StatusLine guifg=orange1
hi StatusLineNC guifg=yellow4
"hi Title
hi Visual guifg=gray35 guibg=fg
hi VisualNOS gui=bold guifg=black guibg=fg
hi WarningMsg guifg=White guibg=Tomato
"hi WildMenu
" Colors for syntax highlighting
hi Comment guifg=gold
hi Constant guifg=mediumspringgreen
hi String guifg=orange
hi Character guifg=orange
hi Number guifg=mediumspringgreen
hi Boolean guifg=mediumspringgreen
hi Float guifg=mediumspringgreen
hi Identifier guifg=yellow
hi Function guifg=mediumspringgreen
hi Statement gui=bold guifg=cyan1
hi Conditional gui=bold guifg=cyan1
hi Repeat gui=bold guifg=cyan1
hi Label guifg=cyan1
hi Operator guifg=cyan1
"hi Keyword
"hi Exception
hi PreProc guifg=LightSteelBlue
hi Include guifg=LightSteelBlue
hi Define guifg=LightSteelBlue
hi Macro guifg=LightSteelBlue
hi PreCondit guifg=LightSteelBlue
hi Type guifg=yellow
hi StorageClass guifg=cyan1
hi Structure gui=bold guifg=cyan1
hi Typedef guifg=cyan1
"hi Special
""Underline Character
"hi SpecialChar gui=underline
"hi Tag gui=bold,underline
""Statement
"hi Delimiter gui=bold
""Bold comment (in Java at least)
"hi SpecialComment gui=bold
"hi Debug gui=bold
hi Underlined gui=underline
hi Ignore guifg=bg
hi Error gui=bold guifg=White guibg=Red
"hi Todo

View File

@ -1,115 +0,0 @@
" Vim color File
" Name: biogoo
" Maintainer: Benjamin Esham <bdesham@gmail.com>
" Last Change: 2006-11-20
" Version: 1.5
"
" Colorful text on a light gray background. It's pretty easy on the eyes in
" my opinion. Any feedback is greatly appreciated!
"
" Installation:
" Copy to ~/.vim/colors; do :color biogoo
"
" Customization Options:
" Use a 'normal' cursor color:
" let g:biogoo_normal_cursor = 1
"
" Props:
" Jani Nurminen's zenburn.vim as an example file.
" Scott F. and Matt F. for feature suggestions.
" Bill McCarthy for his Vim mailing list post about Vim 7 support.
"
" Version History:
" 1.5: should fully support Vim 7 now
" 1.4: more support for Vim 7: added the `MatchParen' group for ()[]{} matching
" 1.3: added support for Vim 7: added groups for the new spellchecking, and
" added a conditional to display Visual mode correctly in any version.
" 1.2: added `SpellErrors' group for use with vimspell.
" 1.1: added `IncSearch' group for improved visibility in incremental searches.
" 1.0: minor tweaks
" 0.95: initial release
"
" TODO: Add new groups as needed. E-mail me with any suggestions!
set background=light
hi clear
if exists("syntax_on")
syntax reset
endif
let g:colors_name = "biogoo"
hi Comment guifg=#0000c3
hi Constant guifg=#0000ff
hi CursorColumn guibg=#ffffff
hi CursorLine guibg=#ffffff
hi Delimiter guifg=#00007f
hi DiffAdd guifg=#007f00 guibg=#e5e5e5
hi DiffChange guifg=#00007f guibg=#e5e5e5
hi DiffDelete guifg=#7f0000 guibg=#e5e5e5
hi DiffText guifg=#ee0000 guibg=#e5e5e5
hi Directory guifg=#b85d00
hi Error guifg=#d6d6d6 guibg=#7f0000
hi ErrorMsg guifg=#ffffff guibg=#ff0000 gui=bold
hi Float guifg=#b85d00
hi FoldColumn guifg=#00007f guibg=#e5e5e5
hi Folded guifg=#00007f guibg=#e5e5e5
hi Function guifg=#7f0000
hi Identifier guifg=#004000
hi Include guifg=#295498 gui=bold
hi IncSearch guifg=#ffffff guibg=#0000ff gui=bold
hi LineNr guifg=#303030 guibg=#e5e5e5 gui=underline
hi Keyword guifg=#00007f
hi Macro guifg=#295498
hi MatchParen guifg=#ffffff guibg=#00a000
hi ModeMsg guifg=#00007f
hi MoreMsg guifg=#00007f
hi NonText guifg=#007f00
hi Normal guifg=#000000 guibg=#d6d6d6
hi Number guifg=#b85d00
hi Operator guifg=#00007f
hi Pmenu guifg=#000000 guibg=#cc9999
hi PmenuSel guifg=#ffffff guibg=#993333
hi PmenuSbar guibg=#99cc99
hi PmenuThumb guifg=#339933
hi PreCondit guifg=#295498 gui=bold
hi PreProc guifg=#0c3b6b gui=bold
hi Question guifg=#00007f
hi Search guibg=#ffff00
hi Special guifg=#007f00
hi SpecialKey guifg=#00007f
hi SpellBad guifg=#ffffff guibg=#7f0000 gui=undercurl guisp=#d6d6d6
hi SpellCap guifg=#ffffff guibg=#7f007f gui=undercurl guisp=#d6d6d6
hi SpellLocal guifg=#ffffff guibg=#007f7f gui=undercurl guisp=#d6d6d6
hi SpellRare guifg=#ffffff guibg=#b85d00 gui=undercurl guisp=#d6d6d6
hi Statement guifg=#00007f gui=none
hi StatusLine guifg=#00007f guibg=#ffffff
hi StatusLineNC guifg=#676767 guibg=#ffffff
hi String guifg=#d10000
hi TabLine guifg=#222222 guibg=#d6d6d6
hi TabLineFill guifg=#d6d6d6
hi TabLineSel guifg=#00007f guibg=#eeeeee gui=bold
hi Title guifg=#404040 gui=bold
hi Todo guifg=#00007f guibg=#e5e5e5 gui=underline
hi Type guifg=#540054 gui=bold
hi Underlined guifg=#b85d00
hi VertSplit guifg=#676767 guibg=#ffffff
if version < 700
hi Visual guifg=#7f7f7f guibg=#ffffff
else
hi Visual guifg=#ffffff guibg=#7f7f7f
endif
hi VisualNOS guifg=#007f00 guibg=#e5e5e5
hi WarningMsg guifg=#500000
hi WildMenu guifg=#540054
" Non-standard highlighting (e.g. for plugins)
" vimspell
hi SpellErrors guifg=#ffffff guibg=#7f0000 gui=undercurl guisp=#d6d6d6
if !exists("g:biogoo_normal_cursor")
" use a gray-on-blue cursor
hi Cursor guifg=#ffffff guibg=#00007f
endif
" vim:noet:ts=4 sw=4

View File

@ -1,115 +0,0 @@
" Vim color file
" Maintainer: Angus Salkeld
" Last Change: 14 September 2004
" Version: 1.0
" mainly green on black
set background=dark
highlight clear
if exists("syntax_on")
syntax reset
endif
let g:colors_name = "black_angus"
" GUI
" -----------------------------------------------------------------------
highlight Normal guifg=Grey80 guibg=Black
highlight Search guifg=brown gui=reverse
highlight Visual guifg=Grey25 gui=bold
highlight Cursor guifg=Yellow guibg=DarkGreen gui=bold
highlight DiffAdd guibg=#000080 gui=NONE
highlight DiffChange guibg=#800080 gui=NONE
highlight DiffDelete guifg=#80c0e0 guibg=#404040 gui=NONE
highlight DiffText guifg=Black guibg=#c0e080 gui=NONE
" Console
" -----------------------------------------------------------------------
highlight Normal ctermfg=LightGrey ctermbg=Black
highlight Search ctermfg=Brown cterm=reverse
highlight Visual cterm=reverse
highlight Cursor ctermfg=Yellow ctermbg=Green cterm=bold
" both
" -----------------------------------------------------------------------
highlight StatusLine guifg=LightGreen guibg=#003300 gui=none ctermfg=LightGreen ctermbg=DarkGreen term=none
highlight VertSplit guifg=LightGreen guibg=#003300 gui=none ctermfg=LightGreen ctermbg=DarkGreen term=none
highlight Folded guifg=#aaDDaa guibg=#333333 gui=none ctermfg=LightGray ctermbg=DarkGray term=none
highlight FoldColumn guifg=LightGreen guibg=#003300 gui=none ctermfg=LightGreen ctermbg=DarkGreen term=none
highlight SignColumn guifg=LightGreen guibg=#003300 gui=none ctermfg=LightGreen ctermbg=DarkGreen term=none
highlight WildMenu guifg=LightGreen guibg=#003300 gui=none ctermfg=LightGreen ctermbg=DarkGreen term=none
highlight LineNr guifg=DarkGreen guibg=Black gui=none ctermfg=DarkGreen ctermbg=Black term=none
highlight Directory guifg=LightGreen ctermfg=LightGreen
highlight Comment guifg=DarkGrey ctermfg=DarkGray
highlight Special guifg=Orange ctermfg=Brown
highlight Title guifg=Orange ctermfg=Brown
highlight Tag guifg=DarkRed ctermfg=DarkRed
highlight link Delimiter Special
highlight link SpecialChar Special
highlight link SpecialComment Special
highlight link SpecialKey Special
highlight link NonText Special
highlight Error guifg=White guibg=DarkRed gui=none ctermfg=White ctermbg=DarkRed cterm=none
highlight Debug guifg=White guibg=DarkGreen gui=none ctermfg=White ctermbg=DarkRed cterm=none
highlight ErrorMsg guifg=White guibg=DarkBlue gui=none ctermfg=White ctermbg=DarkRed cterm=none
highlight WarningMsg guifg=White guibg=DarkBlue gui=none ctermfg=White ctermbg=DarkBlue cterm=none
highlight Todo guifg=White guibg=DarkYellow gui=none ctermfg=White ctermbg=DarkBlue cterm=none
highlight link cCommentStartError WarningMsg
highlight link cCommentError Debug
" Preprocesor
highlight PreCondit guifg=Cyan3 ctermfg=Cyan
highlight PreProc guifg=Magenta ctermfg=Magenta
highlight Include guifg=DarkCyan ctermfg=DarkCyan
highlight ifdefIfOut guifg=DarkGray ctermfg=DarkGray
highlight link Macro Include
highlight link Define Include
" lang
highlight Function guifg=#AAEEAA gui=none ctermfg=LightGreen
highlight Identifier guifg=#bbccbb gui=none ctermfg=Grey
highlight Statement guifg=LightGreen gui=underline ctermfg=LightGreen
highlight Operator guifg=Yellow gui=none ctermfg=Yellow
highlight Conditional guifg=lightslateblue gui=none ctermfg=LightBlue
highlight link Exception Statement
highlight link Label Statement
highlight link Repeat Conditional
highlight link Keyword Label
highlight Constant guifg=LightGreen ctermfg=LightGreen gui=none
highlight link Character Constant
highlight link Number Constant
highlight link Boolean Constant
highlight link String Constant
highlight link Float Constant
highlight Type guifg=DarkGreen ctermfg=DarkGreen gui=none
highlight link StorageClass Type
highlight link Structure Type
highlight link Typedef Type
" ------------------------------------------------------------------------------
" Common groups that link to other highlighting definitions.
highlight link Search IncSearch
highlight link Question Statement
highlight link VisualNOS Visual
" ------------------------------------------------------------------------------
" only for vim 5
if has("unix")
if v:version<600
highlight Normal ctermfg=Grey ctermbg=Black cterm=NONE guifg=Grey80 guibg=Black gui=NONE
highlight Search ctermfg=Black ctermbg=Red cterm=bold guifg=Black guibg=Red gui=bold
highlight Visual ctermfg=Black ctermbg=yellow cterm=bold guifg=Grey25 gui=bold
highlight Special ctermfg=LightBlue cterm=NONE guifg=LightBlue
highlight Comment ctermfg=Cyan cterm=NONE guifg=LightBlue
endif
endif

View File

@ -1,66 +0,0 @@
" Vim color file
" Maintainer: Surya
" Last Change: 12/23/2003 10:32:41 .
" version: 1.0
" This color scheme uses a dark background.
set background=dark
hi clear
if exists("syntax_on")
syntax reset
endif
let g:colors_name = "koehler"
hi Normal guifg=white guibg=black
hi Scrollbar guibg=darkgray guifg=darkgray
hi Menu guifg=black guibg=gray
hi SpecialKey term=bold cterm=bold ctermfg=darkred guifg=Blue
hi NonText term=bold cterm=bold ctermfg=darkred gui=bold guifg=Blue
hi Directory term=bold cterm=bold ctermfg=brown guifg=Blue
hi ErrorMsg term=standout cterm=bold ctermfg=grey ctermbg=blue gui=bold guifg=White guibg=brown
hi Search term=reverse ctermfg=white ctermbg=red gui=bold guifg=#000000 guibg=Magenta
hi MoreMsg term=bold cterm=bold ctermfg=darkgreen gui=bold guifg=SeaGreen
hi ModeMsg term=bold cterm=bold gui=bold guifg=White guibg=Blue
hi LineNr term=underline cterm=bold ctermfg=darkcyan guibg=brown guifg=white
hi Question term=standout cterm=bold ctermfg=darkgreen gui=bold guifg=Green
hi StatusLine term=bold,reverse cterm=bold ctermfg=lightblue ctermbg=white gui=bold guibg=white guifg=brown
hi StatusLineNC term=reverse ctermfg=white ctermbg=lightblue guifg=white guibg=blue
hi Title term=bold cterm=bold ctermfg=darkmagenta gui=bold guifg=Magenta
hi Visual term=reverse cterm=reverse gui=reverse
hi WarningMsg term=standout cterm=bold ctermfg=darkblue gui=bold guifg=cyan guibg=Black
hi Cursor guifg=bg guibg=cyan
hi Comment term=bold cterm=bold ctermfg=cyan guifg=#80a0ff
hi Constant term=underline cterm=bold ctermfg=magenta guifg=#ffa0a0
hi String term=underline cterm=bold ctermfg=magenta gui=bold guifg=brown guibg=darkgray
hi Number term=underline cterm=bold ctermfg=magenta guifg=#00ffff
hi Special term=bold gui=bold cterm=bold ctermfg=red guifg=Orange
hi Identifier term=underline ctermfg=brown guifg=#40ffff
hi Statement term=bold cterm=bold ctermfg=yellow gui=bold guifg=#ffff60
hi PreProc term=underline ctermfg=darkblue guifg=#ff80ff
hi Type term=underline cterm=bold ctermfg=lightgreen gui=bold guifg=#60ff60
hi Error gui=bold guifg=Yellow guibg=Black
hi Todo term=standout ctermfg=black ctermbg=darkcyan guifg=Blue guibg=Yellow
"hi VertSplit guifg=#00FFFF guibg=#000000 gui=bold
hi link IncSearch Visual
hi link Character Constant
hi link Boolean Constant
hi link Float Number
hi link Function Identifier
hi link Conditional Statement
hi link Repeat Statement
hi link Label Statement
hi link Operator Statement
hi link Keyword Statement
hi link Exception Statement
hi link Include PreProc
hi link Define PreProc
hi link Macro PreProc
hi link PreCondit PreProc
hi link StorageClass Type
hi link Structure Type
hi link Typedef Type
hi link Tag Special
hi link SpecialChar Special
hi link Delimiter Special
hi link SpecialComment Special
hi link Debug Special

View File

@ -1,62 +0,0 @@
set background=dark
hi clear
hi Boolean guifg=#dca3a3 gui=bold
hi Character guifg=#dca3a3 gui=bold
hi Comment guifg=#7f7f7f
hi Condtional guifg=#8fffff
hi Constant guifg=#dca3a3 gui=bold
hi Cursor guifg=#000000 guibg=#aeaeae
hi Debug guifg=#dca3a3 gui=bold
hi Define guifg=#ffcfaf gui=bold
hi Delimiter guifg=#8f8f8f
hi DiffAdd guibg=#613c46
hi DiffChange guibg=#333333
hi DiffDelete guifg=#333333 guibg=#464646 gui=none
hi DiffText guifg=#ffffff guibg=#1f1f1f gui=bold
hi Directory guifg=#ffffff gui=bold
hi Error guifg=#000000 guibg=#00ffff
hi ErrorMsg guifg=#000000 guibg=#00c0cf
hi Exception guifg=#8fffff gui=underline
hi Float guifg=#9c93b3
hi FoldColumn guifg=#dca3a3 guibg=#464646
hi Folded guifg=#dca3a3 guibg=#333333
hi Function guifg=#ffff8f
hi Identifier guifg=#ffffff
hi Include guifg=#ffcfaf gui=bold
hi IncSearch guifg=#000000 guibg=#c15c66
hi Keyword guifg=#ffffff gui=bold
hi Label guifg=#8fffff gui=underline
hi LineNr guifg=#7f7f7f guibg=#464646
hi Macro guifg=#ffcfaf gui=bold
hi ModeMsg guifg=#dca3a3 gui=bold
hi MoreMsg guifg=#ffffff gui=bold
hi NonText guifg=#1f1f1f
hi Normal guifg=#cccccc guibg=#3f3f3f
hi Number guifg=#aca0a3
hi Operator guifg=#ffffff
hi PreCondit guifg=#dfaf8f gui=bold
hi PreProc guifg=#ffcfaf gui=bold
hi Question guifg=#ffffff gui=bold
hi Repeat guifg=#8fffff gui=underline
hi Search guifg=#000000 guibg=#c15c66
hi SpecialChar guifg=#dca3a3 gui=bold
hi SpecialComment guifg=#dca3a3 gui=bold
hi Special guifg=#7f7f7f
hi SpecialKey guifg=#7e7e7e
hi Statement guifg=#8fffff
hi StatusLine guifg=#333333 guibg=#f18c96
hi StatusLineNC guifg=#333333 guibg=#cccccc
hi StorageClass guifg=#ffffff gui=bold
hi String guifg=#cc9393
hi Structure guifg=#ffffff gui=bold,underline
hi Tag guifg=#dca3a3 gui=bold
hi Title guifg=#ffffff guibg=#333333 gui=bold
hi Todo guifg=#ffffff guibg=#000000 gui=bold
hi Typedef guifg=#ffffff gui=bold,underline
hi Type guifg=#ffffff gui=bold
hi VertSplit guifg=#333333 guibg=#cccccc
hi Visual guifg=#333333 guibg=#f18c96 gui=reverse
hi VisualNOS guifg=#333333 guibg=#f18c96 gui=bold,underline
hi WarningMsg guifg=#ffffff guibg=#333333 gui=bold
hi WildMenu guifg=#000000 guibg=#dca3a3

View File

@ -1,32 +0,0 @@
" Vim color file
" Maintainer: Gerald S. Williams
" Last Change: 2003 Mar 20
" This is a dark version/opposite of "seashell". The cterm version of this is
" very similar to "evening".
"
" Only values that differ from defaults are specified.
set background=dark
hi clear
if exists("syntax_on")
syntax reset
endif
let g:colors_name = "BlackSea"
hi Normal guibg=Black guifg=seashell ctermfg=White
hi NonText guifg=LavenderBlush ctermfg=LightMagenta
hi DiffDelete guibg=DarkRed guifg=Black ctermbg=DarkRed ctermfg=White
hi DiffAdd guibg=DarkGreen ctermbg=DarkGreen ctermfg=White
hi DiffChange guibg=Gray30 ctermbg=DarkCyan ctermfg=White
hi DiffText gui=NONE guibg=DarkCyan ctermbg=DarkCyan ctermfg=Yellow
hi Comment guifg=LightBlue
hi Constant guifg=DeepPink
hi PreProc guifg=Magenta ctermfg=Magenta
hi StatusLine guibg=#1f001f guifg=DarkSeaGreen cterm=NONE ctermfg=White ctermbg=DarkGreen
hi StatusLineNC guifg=Gray
hi VertSplit guifg=Gray
hi Type gui=NONE
hi Identifier guifg=Cyan
hi Statement guifg=brown3 ctermfg=DarkRed
hi Search guibg=Gold3 ctermfg=White

View File

@ -1,41 +0,0 @@
" Vim color file
" Maintainer: TaQ <taq@taq.cjb.net>
" Last Change: 10 October 2001 - 0.2
" URL: http://taq.cjb.net
" cool help screens
" :he group-name
" :he highlight-groups
" :he cterm-colors
set background=dark " or light
hi clear
if exists("syntax_on")
syntax reset
endif
let g:colors_name="blue"
hi Normal ctermfg=Gray ctermbg=Black guifg=#CCCCCC guibg=#000040
hi NonText ctermfg=Gray ctermbg=Black guifg=#0050EE guibg=#000040
hi Statement ctermfg=White ctermbg=Black guifg=#007FFF guibg=#000040 gui=BOLD
hi Comment ctermfg=Blue ctermbg=Black guifg=#00A0FF guibg=#000090 gui=NONE
hi Constant ctermfg=White ctermbg=Black guifg=#0050EE guibg=#000040 gui=NONE
hi Identifier ctermfg=Cyan ctermbg=Black guifg=#FFFFFF guibg=#000040 gui=NONE
hi Type ctermfg=Cyan ctermbg=Black guifg=#5050FF guibg=#000040 gui=NONE
hi Folded ctermfg=White ctermbg=Blue guifg=#00A0FF guibg=#000050 gui=BOLD
hi Special ctermfg=Blue ctermbg=Black guifg=#00A0FF guibg=#000090 gui=NONE
hi PreProc ctermfg=Blue ctermbg=Black guifg=#00FF00 guibg=#000040 gui=BOLD
hi Scrollbar ctermfg=Blue ctermbg=Black guifg=#00C0FF guibg=#000040
hi Cursor ctermfg=white ctermbg=Black guifg=#FFFFFF guibg=#5050FF
hi ErrorMsg ctermfg=white ctermbg=Red guifg=#FFFFFF guibg=#FF0000
hi WarningMsg ctermfg=Black ctermbg=Yellow guifg=#000000 guibg=#FFFF00
hi VertSplit ctermfg=White ctermbg=Blue guifg=#000090 guibg=#000090
hi Directory ctermfg=Cyan ctermbg=DarkBlue guifg=#00A0F0 guibg=#000040
hi Visual ctermfg=Black ctermbg=Cyan guifg=#5050FF guibg=#FFFFFF
hi Title ctermfg=White ctermbg=Blue guifg=#FFFFFF guibg=#0050EE gui=NONE
hi StatusLine term=bold cterm=bold ctermfg=White ctermbg=Blue gui=bold guifg=#FFFFFF guibg=#0050EE
hi StatusLineNC term=bold cterm=bold ctermfg=Gray ctermbg=Blue gui=bold guifg=#AAAAAA guibg=#000090
hi LineNr term=bold cterm=bold ctermfg=White ctermbg=DarkBlue gui=bold guifg=#00A0FF guibg=#000050

View File

@ -1,52 +0,0 @@
" Vim color file
" Maintainer:
" Last Change:
" URL:
" cool help screens
" :he group-name
" :he highlight-groups
" :he cterm-colors
set background=dark
hi clear
if exists("syntax_on")
syntax reset
endif
let g:colors_name="mine"
hi Normal guifg=White guibg=#061A3E
" highlight groups
hi Cursor guibg=#D74141 guifg=#e3e3e3
hi VertSplit guibg=#C0FFFF guifg=#075554 gui=none
hi Folded guibg=#FFC0C0 guifg=black
hi FoldColumn guibg=#800080 guifg=tan
"hi IncSearch cterm=none ctermbg=blue ctermfg=grey guifg=slategrey guibg=khaki
hi ModeMsg guifg=#404040 guibg=#C0C0C0
hi MoreMsg guifg=darkturquoise guibg=#188F90
hi NonText guibg=#334C75 guifg=#9FADC5
hi Question guifg=#F4BB7E
hi Search guibg=fg guifg=bg
hi SpecialKey guifg=#BF9261
hi StatusLine guibg=#004443 guifg=#c0ffff gui=none
hi StatusLineNC guibg=#067C7B guifg=#004443 gui=bold
hi Title guifg=#8DB8C3
hi Visual gui=bold guifg=black guibg=#C0FFC0
hi WarningMsg guifg=#F60000 gui=underline
" syntax highlighting groups
hi Comment guifg=#DABEA2
hi Constant guifg=#72A5E4 gui=bold
hi Identifier guifg=#ADCBF1
hi Statement guifg=#7E75B5
hi PreProc guifg=#14F07C
hi Type guifg=#A9EE8A
hi Special guifg=#EEBABA
hi Ignore guifg=grey60
hi Todo guibg=#9C8C84 guifg=#244C0A
"vim: ts=4

View File

@ -1,42 +0,0 @@
" author Helder Correia < helder (dot) correia (at) netcabo (dot) pt>
" version 2004.0
" based on bluegreen colorscheme by Joao Estevao
" feel free to modify / redistribute this file
set background=dark
hi clear
if exists("syntax_on")
syntax reset
endif
let g:colors_name="blugrine"
hi Normal guifg=White guibg=#000000
" highlight groups
hi Cursor guibg=#D74141 guifg=#e3e3e3
hi VertSplit guibg=#C0FFFF guifg=#075554 gui=none
hi Folded guibg=#FFC0C0 guifg=black
hi FoldColumn guibg=#800080 guifg=tan
hi ModeMsg guifg=#404040 guibg=#C0C0C0
hi MoreMsg guifg=darkturquoise guibg=#188F90
hi NonText guibg=#334C75 guifg=#9FADC5
hi Question guifg=#F4BB7E
hi Search guibg=fg guifg=bg
hi SpecialKey guifg=#BF9261
hi StatusLine guibg=#004443 guifg=#c0ffff gui=none
hi StatusLineNC guibg=#067C7B guifg=#004443 gui=bold
hi Title guifg=#8DB8C3
hi Visual gui=bold guifg=black guibg=#C0FFC0
hi WarningMsg guifg=#F60000 gui=underline
" syntax highlighting groups
hi Comment guifg=#DABEA2
hi Constant guifg=#72A5E4 gui=bold
hi Identifier guifg=#ADCBF1
hi Statement guifg=#7E75B5
hi PreProc guifg=#14F07C
hi Type guifg=#A9EE8A
hi Special guifg=#EEBABA
hi Ignore guifg=grey60
hi Todo guibg=#9C8C84 guifg=#244C0A

View File

@ -1,55 +0,0 @@
" local syntax file - set colors on a per-machine basis:
" vim: tw=0 ts=4 sw=4
" Vim color file
" Maintainer: Björn Michaelsen <bmichaelsen@gmx.de>
" based on: Zellner maintained by Ron Aaron <ronaharon@yahoo.com>
" Last Change: 2003 Sep 09
set background=light
hi clear
if exists("syntax_on")
syntax reset
endif
let g:colors_name = "bmichaelsen"
hi Comment term=bold ctermfg=Red guifg=Red
hi Normal guifg=black guibg=#dee2ee
hi Constant term=underline ctermfg=Magenta guifg=Magenta
hi Special term=bold ctermfg=Magenta guifg=Magenta
hi Identifier term=underline ctermfg=Blue guifg=Blue
hi Statement term=bold ctermfg=DarkRed gui=NONE guifg=Brown
hi PreProc term=underline ctermfg=Magenta guifg=Purple
hi Type term=underline ctermfg=Blue gui=NONE guifg=Blue
hi Visual term=reverse ctermfg=Yellow ctermbg=Red gui=NONE guifg=Black guibg=#5a5d6a
hi Search term=reverse ctermfg=Black ctermbg=Cyan gui=NONE guifg=Black guibg=Cyan
hi Tag term=bold ctermfg=DarkGreen guifg=DarkGreen
hi Error term=reverse ctermfg=15 ctermbg=9 guibg=Red guifg=White
hi Todo term=standout ctermbg=Yellow ctermfg=Black guifg=Blue guibg=#5a5d6a
hi StatusLine term=bold,reverse cterm=NONE ctermfg=Yellow ctermbg=DarkGray gui=NONE guifg=Black guibg=#a4b2c5
hi! link MoreMsg Comment
hi! link ErrorMsg Visual
hi! link WarningMsg ErrorMsg
hi! link Question Comment
hi link String Constant
hi link Character Constant
hi link Number Constant
hi link Boolean Constant
hi link Float Number
hi link Function Identifier
hi link Conditional Statement
hi link Repeat Statement
hi link Label Statement
hi link Operator Statement
hi link Keyword Statement
hi link Exception Statement
hi link Include PreProc
hi link Define PreProc
hi link Macro PreProc
hi link PreCondit PreProc
hi link StorageClass Type
hi link Structure Type
hi link Typedef Type
hi link SpecialChar Special
hi link Delimiter Special
hi link SpecialComment Special
hi link Debug Special

View File

@ -1,87 +0,0 @@
" Vim color file
" Maintainer: [smeagol] <webmaster@quantumz.net>
" Last Change:
" URL:
" cool help screens
" :he group-name
" :he highlight-groups
" :he cterm-colors
" your pick:
set background=light " or light
hi clear
if exists("syntax_on")
syntax reset
endif
let g:colors_name="bog"
hi Normal guifg=#3a3a3d guibg=white ctermfg=darkgrey ctermbg=white
" OR
" highlight clear Normal
" set background&
" highlight clear
" if &background == "light"
" highlight Error ...
" ...
" else
" highlight Error ...
" ...
" endif
" A good way to see what your colorscheme does is to follow this procedure:
" :w
" :so %
"
" Then to see what the current setting is use the highlight command.
" For example,
" :hi Cursor
" gives
" Cursor xxx guifg=bg guibg=fg
" Uncomment and complete the commands you want to change from the default.
hi Cursor guifg=#04ae6c guibg=#0056a0 ctermfg=darkgreen ctermbg=darkblue
"hi CursorIM
hi Directory guifg=green ctermfg=green
"hi DiffAdd
"hi DiffChange
"hi DiffDelete
"hi DiffText
hi ErrorMsg guibg=#004a8a guifg=white ctermfg=white ctermbg=darkblue
hi VertSplit guibg=#04ae6c guifg=#0056a0
hi Folded guibg=#0a62c4 guifg=#60abff ctermfg=lightgrey ctermbg=blue
hi FoldColumn guibg=#0a62c4 guifg=#60abff ctermfg=lightgrey ctermbg=blue
hi IncSearch guifg=white guibg=#ffdc34 ctermfg=white ctermbg=lightred gui=underline
hi LineNr guifg=#3669e8 guibg=white ctermfg=lightblue ctermbg=white
hi ModeMsg guifg=orange guibg=white ctermfg=lightred ctermbg=white
hi MoreMsg guifg=orange guibg=white ctermfg=lightred ctermbg=white
hi NonText gui=bold
hi Question guifg=white guibg=orange ctermfg=white ctermbg=lightred
hi Search guifg=white guibg=#ffdc34 ctermfg=white ctermbg=lightred gui=underline
"hi SpecialKey
hi StatusLine guifg=#04ae6c guibg=white ctermfg=darkgreen ctermbg=white
hi StatusLineNC guifg=#04ae6c guibg=white ctermfg=darkgreen ctermbg=white
hi Title guifg=#02233f gui=bold
hi Visual guifg=darkblue guibg=white ctermfg=darkblue ctermbg=white
"hi VisualNOS
hi WarningMsg guifg=white guibg=orange ctermfg=white ctermbg=lightblue
hi WildMenu guifg=#75dc34 guibg=white ctermfg=lightgreen ctermbg=white
"hi Menu
"hi Scrollbar
"hi Tooltip
" syntax highlighting groups
hi Comment guifg=orange guibg=white ctermbg=white ctermfg=blue
hi Constant guifg=#5b8f8d guibg=white ctermfg=grey ctermbg=white
hi Identifier guifg=#aad2ff guibg=white ctermfg=grey ctermbg=white
hi Statement guifg=#808283 guibg=white ctermfg=lightgrey ctermbg=white
hi PreProc guifg=#023a6a gui=bold guibg=white ctermfg=darkblue ctermbg=white
hi Type guifg=#0e9152 guibg=white ctermfg=darkgreen ctermbg=white
hi Special guifg=white guibg=skyblue ctermfg=white ctermbg=blue
hi Underlined guifg=#00d0e8 ctermbg=blue
hi Ignore guifg=black guibg=white ctermfg=black ctermbg=white
"hi Error
hi Todo guibg=lightblue guifg=white ctermbg=lightblue ctermfg=white

View File

@ -1,60 +0,0 @@
" Vim color file
" Maintainer: Yegappan Lakshmanan
" Last Change: 2001 Sep 9
" Color settings similar to that used in Borland IDE's.
set background=dark
hi clear
if exists("syntax_on")
syntax reset
endif
let g:colors_name="borland"
hi Normal term=NONE cterm=NONE ctermfg=Yellow ctermbg=DarkBlue
hi Normal gui=NONE guifg=Yellow guibg=DarkBlue
hi NonText term=NONE cterm=NONE ctermfg=White ctermbg=DarkBlue
hi NonText gui=NONE guifg=White guibg=DarkBlue
hi Statement term=NONE cterm=NONE ctermfg=White ctermbg=DarkBlue
hi Statement gui=NONE guifg=White guibg=DarkBlue
hi Special term=NONE cterm=NONE ctermfg=Cyan ctermbg=DarkBlue
hi Special gui=NONE guifg=Cyan guibg=DarkBlue
hi Constant term=NONE cterm=NONE ctermfg=Magenta ctermbg=DarkBlue
hi Constant gui=NONE guifg=Magenta guibg=DarkBlue
hi Comment term=NONE cterm=NONE ctermfg=Gray ctermbg=DarkBlue
hi Comment gui=NONE guifg=Gray guibg=DarkBlue
hi Preproc term=NONE cterm=NONE ctermfg=Green ctermbg=DarkBlue
hi Preproc gui=NONE guifg=Green guibg=DarkBlue
hi Type term=NONE cterm=NONE ctermfg=White ctermbg=DarkBlue
hi Type gui=NONE guifg=White guibg=DarkBlue
hi Identifier term=NONE cterm=NONE ctermfg=White ctermbg=DarkBlue
hi Identifier gui=NONE guifg=White guibg=DarkBlue
hi StatusLine term=bold cterm=bold ctermfg=Black ctermbg=White
hi StatusLine gui=bold guifg=Black guibg=White
hi StatusLineNC term=NONE cterm=NONE ctermfg=Black ctermbg=White
hi StatusLineNC gui=NONE guifg=Black guibg=White
hi Visual term=NONE cterm=NONE ctermfg=Black ctermbg=DarkCyan
hi Visual gui=NONE guifg=Black guibg=DarkCyan
hi Search term=NONE cterm=NONE ctermbg=Gray
hi Search gui=NONE guibg=Gray
hi VertSplit term=NONE cterm=NONE ctermfg=Black ctermbg=White
hi VertSplit gui=NONE guifg=Black guibg=White
hi Directory term=NONE cterm=NONE ctermfg=Green ctermbg=DarkBlue
hi Directory gui=NONE guifg=Green guibg=DarkBlue
hi WarningMsg term=standout cterm=NONE ctermfg=Red ctermbg=DarkBlue
hi WarningMsg gui=standout guifg=Red guibg=DarkBlue
hi Error term=NONE cterm=NONE ctermfg=White ctermbg=Red
hi Error gui=NONE guifg=White guibg=Red
hi Cursor ctermfg=Black ctermbg=Yellow
hi Cursor guifg=Black guibg=Yellow

View File

@ -1,70 +0,0 @@
" Vim color file
" Maintainer: Tiza
" Last Change: 2002/10/30 Wed 00:08.
" version: 1.0
" This color scheme uses a dark background.
set background=dark
hi clear
if exists("syntax_on")
syntax reset
endif
let colors_name = "breeze"
hi Normal guifg=#ffffff guibg=#005c70
" Search
hi IncSearch gui=UNDERLINE guifg=#60ffff guibg=#6060ff
hi Search gui=NONE guifg=#ffffff guibg=#6060ff
" Messages
hi ErrorMsg gui=BOLD guifg=#ffffff guibg=#ff40a0
hi WarningMsg gui=BOLD guifg=#ffffff guibg=#ff40a0
hi ModeMsg gui=NONE guifg=#60ffff guibg=NONE
hi MoreMsg gui=NONE guifg=#ffc0ff guibg=NONE
hi Question gui=NONE guifg=#ffff60 guibg=NONE
" Split area
hi StatusLine gui=NONE guifg=#000000 guibg=#d0d0e0
hi StatusLineNC gui=NONE guifg=#606080 guibg=#d0d0e0
hi VertSplit gui=NONE guifg=#606080 guibg=#d0d0e0
hi WildMenu gui=NONE guifg=#000000 guibg=#00c8f0
" Diff
hi DiffText gui=UNDERLINE guifg=#ffff00 guibg=#000000
hi DiffChange gui=NONE guifg=#ffffff guibg=#000000
hi DiffDelete gui=NONE guifg=#60ff60 guibg=#000000
hi DiffAdd gui=NONE guifg=#60ff60 guibg=#000000
" Cursor
hi Cursor gui=NONE guifg=#ffffff guibg=#d86020
hi lCursor gui=NONE guifg=#ffffff guibg=#e000b0
hi CursorIM gui=NONE guifg=#ffffff guibg=#e000b0
" Fold
hi Folded gui=NONE guifg=#ffffff guibg=#0088c0
" hi Folded gui=NONE guifg=#ffffff guibg=#2080d0
hi FoldColumn gui=NONE guifg=#60e0e0 guibg=#006c7f
" Other
hi Directory gui=NONE guifg=#00e0ff guibg=NONE
hi LineNr gui=NONE guifg=#60a8bc guibg=NONE
hi NonText gui=BOLD guifg=#00c0c0 guibg=#006276
hi SpecialKey gui=NONE guifg=#e0a0ff guibg=NONE
hi Title gui=BOLD guifg=#ffffff guibg=NONE
hi Visual gui=NONE guifg=#ffffff guibg=#6060d0
" hi VisualNOS gui=NONE guifg=#ffffff guibg=#6060d0
" Syntax group
hi Comment gui=NONE guifg=#c8d0d0 guibg=NONE
hi Constant gui=NONE guifg=#60ffff guibg=NONE
hi Error gui=BOLD guifg=#ffffff guibg=#ff40a0
hi Identifier gui=NONE guifg=#cacaff guibg=NONE
hi Ignore gui=NONE guifg=#006074 guibg=NONE
hi PreProc gui=NONE guifg=#ffc0ff guibg=NONE
hi Special gui=NONE guifg=#ffd074 guibg=NONE
hi Statement gui=NONE guifg=#ffff80 guibg=NONE
hi Todo gui=BOLD,UNDERLINE guifg=#ffb0b0 guibg=NONE
hi Type gui=NONE guifg=#80ffa0 guibg=NONE
hi Underlined gui=UNDERLINE guifg=#ffffff guibg=NONE

View File

@ -1,83 +0,0 @@
"--------------------------------------------------------------------
" Name Of File: brookstream.vim.
" Description: Gvim colorscheme, works best with version 6.1 GUI .
" Maintainer: Peter Bäckström.
" Creator: Peter Bäckström.
" URL: http://www.brookstream.org (Swedish).
" Credits: Inspiration from the darkdot scheme.
" Last Change: Friday, April 13, 2003.
" Installation: Drop this file in your $VIMRUNTIME/colors/ directory.
"--------------------------------------------------------------------
set background=dark
hi clear
if exists("syntax_on")
syntax reset
endif
let g:colors_name="brookstream"
"--------------------------------------------------------------------
hi Normal gui=none guibg=#000000 guifg=#bbbbbb
hi Cursor guibg=#44ff44 guifg=#000000
hi Directory guifg=#44ffff
hi DiffAdd guibg=#080808 guifg=#ffff00
hi DiffDelete guibg=#080808 guifg=#444444
hi DiffChange guibg=#080808 guifg=#ffffff
hi DiffText guibg=#080808 guifg=#bb0000
hi ErrorMsg guibg=#880000 guifg=#ffffff
hi Folded guifg=#000088
hi IncSearch guibg=#000000 guifg=#bbcccc
hi LineNr guibg=#050505 guifg=#4682b4
hi ModeMsg guifg=#ffffff
hi MoreMsg guifg=#44ff44
hi NonText guifg=#4444ff
hi Question guifg=#ffff00
hi SpecialKey guifg=#4444ff
hi StatusLine gui=none guibg=#2f4f4f guifg=#ffffff
hi StatusLineNC gui=none guibg=#bbbbbb guifg=#000000
hi Title guifg=#ffffff
hi Visual gui=none guibg=#bbbbbb guifg=#000000
hi WarningMsg guifg=#ffff00
" syntax highlighting groups ----------------------------------------
hi Comment guifg=#696969
hi Constant guifg=#00aaaa
hi Identifier guifg=#00e5ee
hi Statement guifg=#00ffff
hi PreProc guifg=#8470ff
hi Type guifg=#ffffff
hi Special gui=none guifg=#87cefa
hi Underlined gui=bold guifg=#4444ff
hi Ignore guifg=#444444
hi Error guibg=#000000 guifg=#bb0000
hi Todo guibg=#aa0006 guifg=#fff300
hi Operator gui=none guifg=#00bfff
hi Function guifg=#1e90ff
hi String gui=None guifg=#4682b4
hi Boolean guifg=#9bcd9b
"hi link Character Constant
"hi link Number Constant
"hi link Boolean Constant
"hi link Float Number
"hi link Conditional Statement
"hi link Label Statement
"hi link Keyword Statement
"hi link Exception Statement
"hi link Repeat Statement
"hi link Include PreProc
"hi link Define PreProc
"hi link Macro PreProc
"hi link PreCondit PreProc
"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 link FoldColumn Folded
"- end of colorscheme -----------------------------------------------

View File

@ -1,32 +0,0 @@
hi comment guifg=#fef8ff ctermfg=red
hi constant guifg=#aa712f ctermfg=white
hi cursor guibg=#5e3807 guifg=#deb887
hi diffadd ctermbg=green ctermfg=black
hi diffchange ctermbg=green ctermfg=white
hi diffdelete ctermbg=none ctermfg=darkyellow
hi difftext ctermbg=black ctermfg=green
hi directory guifg=#3e1807 ctermfg=green
hi error guibg=#cc3807 guifg=#deb887
hi errormsg guifg=#cc3807 guibg=#f9d7a6
hi identifier guifg=#5e3807 ctermfg=green
hi incsearch guifg=#f9d7a6 guibg=#8e6837
hi modemsg guifg=#793807 ctermbg=none ctermfg=cyan gui=none
hi moremsg guifg=#793807 gui=none
hi nontext guifg=#ffffff ctermfg=darkgrey
hi normal guibg=#deb887 guifg=#846037
hi preproc guifg=#7e6f27 ctermfg=white
hi question guifg=#793807 gui=none
hi scrollbar guibg=#deb887 guifg=#ae8857
hi search guifg=#f9d7a6 ctermbg=cyan ctermfg=yellow guibg=#8e6837
hi special guifg=#000000 ctermfg=yellow
hi specialkey guifg=#ffffff ctermfg=white
hi statement guifg=#7e5827 ctermfg=cyan
hi statusline guibg=#fee8b7 ctermbg=black ctermfg=darkgreen guifg=#793807 gui=none
hi statuslinenc guibg=#ae8857 ctermbg=black ctermfg=darkcyan guifg=#deb887 gui=none
hi title guifg=#793807 ctermfg=darkgreen gui=none
hi todo guibg=#995827 guifg=#fed8a7
hi type guifg=#7e5827 ctermfg=yellow gui=none
hi vertsplit guibg=#ae8857 ctermbg=green ctermfg=black guifg=#ae8857 gui=none
hi visual guifg=#f9d7a6 guibg=#8e6837 ctermbg=black ctermfg=darkcyan
hi warningmsg guifg=#cc3807
hi wildmenu guifg=#f9d7a6 guibg=#8e6837

View File

@ -1,59 +0,0 @@
" Vim color file
" vim: tw=0 ts=8 sw=4
" Scriptname: buttercream
" Maintainer: Håkan Wikström <hakan@prinsig.se>
" Version: 1.1
" Last Change: 20060413
" As of now only gui is supported
" Based on the theme fog theme by Thomas R. Kimpton <tomk@emcity.net>
set background=light
hi clear
if exists("syntax_on")
syntax reset
endif
let colors_name = "buttercream"
" Highlight Foreground Background Extras
hi Normal guifg=#213a58 guibg=#ffffde
hi NonText guifg=LightBlue guibg=#eee9bf gui=bold
hi Comment guifg=#2f8e99
hi Constant guifg=#7070a0
hi Statement guifg=DarkGreen gui=bold
hi identifier guifg=DarkGreen
hi preproc guifg=#408040
hi type guifg=DarkBlue
hi label guifg=#c06000
hi operator guifg=DarkGreen gui=bold
hi StorageClass guifg=#a02060 gui=bold
hi Number guifg=Blue
hi Special guifg=#aa8822
hi Cursor guifg=LightGrey guibg=#880088
hi lCursor guifg=Black guibg=Cyan
hi ErrorMsg guifg=White guibg=DarkRed
hi DiffText guibg=DarkRed gui=bold
hi Directory guifg=DarkGrey gui=underline
hi LineNr guifg=#ccaa22
hi MoreMsg guifg=SeaGreen gui=bold
hi Question guifg=DarkGreen gui=bold
hi Search guifg=Black guibg=#887722
hi SpecialKey guifg=Blue
hi SpecialChar guifg=DarkGrey gui=bold
hi Title guifg=DarkMagenta gui=underline
hi WarningMsg guifg=DarkBlue guibg=#9999cc
hi WildMenu guifg=Black guibg=Yellow gui=underline
hi Folded guifg=DarkBlue guibg=LightGrey
hi FoldColumn guifg=DarkBLue guibg=Grey
hi DiffAdd guibg=DarkBlue
hi DiffChange guibg=DarkMagenta
hi DiffDelete guifg=Blue guibg=DarkCyan gui=bold
hi Ignore guifg=grey90
hi IncSearch gui=reverse
hi ModeMsg gui=bold
hi StatusLine gui=reverse,bold
hi StatusLineNC gui=reverse
hi VertSplit gui=reverse
hi Visual guifg=LightGrey gui=reverse
hi VisualNOS gui=underline,bold
hi Todo guibg=#ccaa22 gui=bold,underline

View File

@ -1,55 +0,0 @@
" Vim color file
" Maintainer: Hans Fugal <hans@fugal.net>
" Last Change: 5 Oct 2001
" URL: http://fugal.net/vim/colors/bw.vim
" cool help screens
" :he group-name
" :he highlight-groups
" :he cterm-colors
"
if version > 580
" no guarantees for version 5.8 and below, but this makes it stop
" complaining
hi clear
if exists("syntax_on")
syntax reset
endif
endif
let g:colors_name="bw"
hi SpecialKey cterm=bold ctermfg=NONE
hi NonText cterm=bold ctermfg=NONE
hi Directory cterm=bold ctermfg=NONE
hi ErrorMsg cterm=standout ctermfg=NONE
hi IncSearch cterm=reverse ctermfg=NONE
hi Search cterm=reverse ctermfg=NONE
hi MoreMsg cterm=bold ctermfg=NONE
hi ModeMsg cterm=bold ctermfg=NONE
hi LineNr cterm=underline ctermfg=NONE
hi Question cterm=standout ctermfg=NONE
hi StatusLine cterm=bold,reverse ctermfg=NONE
hi StatusLineNC cterm=reverse ctermfg=NONE
hi VertSplit cterm=reverse ctermfg=NONE
hi Title cterm=bold ctermfg=NONE
hi Visual cterm=reverse ctermfg=NONE
hi VisualNOS cterm=bold,underline ctermfg=NONE
hi WarningMsg cterm=standout ctermfg=NONE
hi WildMenu cterm=standout ctermfg=NONE
hi Folded cterm=standout ctermfg=NONE
hi FoldColumn cterm=standout ctermfg=NONE
hi DiffAdd cterm=bold ctermfg=NONE
hi DiffChange cterm=bold ctermfg=NONE
hi DiffDelete cterm=bold ctermfg=NONE
hi DiffText cterm=reverse ctermfg=NONE
hi Comment cterm=bold ctermfg=NONE
hi Constant cterm=underline ctermfg=NONE
hi Special cterm=bold ctermfg=NONE
hi Identifier cterm=underline ctermfg=NONE
hi Statement cterm=bold ctermfg=NONE
hi PreProc cterm=underline ctermfg=NONE
hi Type cterm=underline ctermfg=NONE
hi Underlined cterm=underline ctermfg=NONE
hi Ignore cterm=bold ctermfg=NONE
hi Error cterm=reverse ctermfg=NONE
hi Todo cterm=standout ctermfg=NONE

View File

@ -1,32 +0,0 @@
" Vim Syntax Highlighting File
"
" Language: C
"
" Extra: This is to copy the vi clone elvis on its
" syntax highlighting.
"
" Maintainer: Dean Jones<dean@cleancode.org>
"
" Comment: This works well with the default c.vim
" that comes with vim6.x. It basically
" overrides the very bright colors it uses
" and uses simple white for highlighting
" key words and types in the C language.
" If you're using Eterm, uncomment the
" Normal line specified below.
hi clear
" Eterm users, uncomment the line below
" hi Normal ctermfg=grey
hi PreProc ctermfg=white
hi Type ctermfg=white
hi Statement ctermfg=white
hi Comment ctermfg=grey
hi Constant cterm=NONE ctermfg=NONE
hi Number cterm=NONE ctermfg=NONE
hi String cterm=NONE ctermfg=NONE
hi Special cterm=NONE ctermfg=NONE
" EOF for Dean's Elvis like highlighting

View File

@ -1,247 +0,0 @@
" Vim color file: calmar256-dark.vim
" Last Change: 21. Aug 2007
" License: public domain
" Maintainer:: calmar <mac@calmar.ws>
"
" for a 256 color capable terminal like xterm-256color, ... or gvim as well
" "{{{
" it only works in such a terminal and when you have:
" set t_Co=256
" in your vimrc"}}}
" {{{ t_Co=256 is set - check
if &t_Co != 256 && ! has("gui_running")
echomsg ""
echomsg "write 'set t_Co=256' in your .vimrc or this file won't load"
echomsg ""
finish
endif
" }}}
" {{{ reset colors and set colors_name and store cpo setting
set background=dark
hi clear
if exists("syntax_on")
syntax reset
endif
let g:colors_name = "calmar256-light"
let s:save_cpo = &cpo
set cpo&vim
" }}}
" FORMAT:"{{{
"
" \ ["color-group", "term-style", "foreground-color", "background-color", "gui-style", "under-curl-color" ],
"
" 'term-style'/'gui-style' can be:
" bold, underline, undercurl, reverse, inverse, italic, standout, NONE
"
" if gui-style is empty, the term-style value is used for the gui
"
" (Note: not everything is supported by a terminal nor the gui)
"
" besides empty values defaults to 'NONE"
"
" may also check: :help highlight-groups
" :help hl-<highlight-group> "
"
" for the Color numbers (0-255) for the foreground/background and under-curl-colors:
" http://www.calmar.ws/vim/256-xterm-24bit-rgb-color-chart.html
"}}}
"============================================================
" EDIT/ADD your style/colors below
"------------------------------------------------------------
" Format: \ ["color-group",
" "term-style",
" "foreground-color",
" "background-color",
" "gui-style",
" "under-curl-color" ],
let s:colors256 = [
\ ["Normal", "", "17", "230", "", "" ],
\ ["Cursor", "", "", "226", "", "" ],
\ ["CursorLine", "", "", "222", "", "" ],
\ ["CursorColumn", "", "", "223", "", "" ],
\ ["Incsearch", "bold", "195", "28", "", "" ],
\ ["Search", "", "", "119", "", "" ],
\ ["ErrorMsg", "bold", "16", "202", "", "" ],
\ ["WarningMsg", "bold", "16", "190", "", "" ],
\ ["ModeMsg", "bold", "16", "51", "", "" ],
\ ["MoreMsg", "bold", "16", "154", "", "" ],
\ ["Question", "bold", "27", "", "", "" ],
\ ["StatusLine", "", "231", "30", "", "" ],
\ ["StatusLineNC", "", "20", "250", "", "" ],
\ ["User1", "bold", "28", "", "", "" ],
\ ["User2", "bold", "39", "", "", "" ],
\ ["VertSplit", "", "84", "22", "", "" ],
\ ["WildMenu", "bold", "87", "35", "", "" ],
\ ["DiffText", "", "16", "190", "", "" ],
\ ["DiffChange", "", "16", "83", "", "" ],
\ ["DiffDelete", "", "79", "124", "", "" ],
\ ["DiffAdd", "", "79", "21", "", "" ],
\ ["Folded", "bold", "19", "115", "", "" ],
\ ["FoldedColumn", "", "39", "190", "", "" ],
\ ["FoldColumn", "", "19", "115", "", "" ],
\ ["Directory", "", "28", "", "", "" ],
\ ["LineNr", "", "63", "228", "", "" ],
\ ["NonText", "", "243", "229", "", "" ],
\ ["SpecialKey", "", "190", "", "", "" ],
\ ["Title", "bold", "18", "", "", "" ],
\ ["Visual", "", "", "220", "", "" ],
\ ["Comment", "", "21", "255", "", "" ],
\ ["Costant", "", "58", "", "", "" ],
\ ["String", "", "160", "", "", "" ],
\ ["Error", "", "130", "", "", "" ],
\ ["Identifier", "", "31", "", "", "" ],
\ ["Ignore", "", "", "", "", "" ],
\ ["Number", "bold", "23", "", "", "" ],
\ ["PreProc", "", "26", "255", "", "" ],
\ ["Special", "", "", "229", "", "" ],
\ ["SpecialChar", "", "22", "", "", "" ],
\ ["Statement", "", "36", "", "", "" ],
\ ["Todo", "", "", "229", "", "" ],
\ ["Type", "", "20", "", "", "" ],
\ ["Underlined", "bold", "25", "", "", "" ],
\ ["TaglistTagName","bold", "29", "118", "", "" ]]
let s:colorvim7 = [
\ ["Pmenu", "", "229", "29", "", "" ],
\ ["PmenuSel", "bold", "232", "226", "", "" ],
\ ["PmenuSbar", "", "16", "119", "", "" ],
\ ["PmenuThumb", "", "16", "11", "", "" ],
\ ["SpellBad", "undercurl", "","", "undercurl","160" ],
\ ["SpellRare", "", "", "228", "", "" ],
\ ["SpellLocal", "", "", "224", "", "" ],
\ ["SpellCap", "", "", "247", "", "" ],
\ ["MatchParen", "bold", "15", "22", "", "" ],
\ ["TabLine", "", "252", "22", "", "" ],
\ ["TabLineSel", "bold", "253", "30", "", "" ],
\ ["TabLineFill", "", "247", "16", "", "" ]]
"============================================================
" * NO NEED * to edit below (unless bugfixing)
"============================================================
"
" {{{ change empty fields to "NONE"
for s:col in s:colors256
for i in [1, 2, 3, 4, 5]
if s:col[i] == ""
let s:col[i] = "NONE"
endif
endfor
endfor
for s:col in s:colorvim7
for i in [1, 2, 3, 4, 5]
if s:col[i] == ""
let s:col[i] = "NONE"
endif
endfor
endfor
" }}}
" {{{ check args helper function
function! s:checkargs(arg)
if a:arg+0 == 0 && a:arg != "0" "its a string
return a:arg
else
return s:cmap[a:arg+0] "get rgb color based on the number
endif
endfunction
" }}}
" {{{ guisetcolor helper function
"
function! s:guisetcolor(colarg)
" if gui-style is empty use (c)term-style also for gui
if a:colarg[4] == ""
let guival = a:colarg[1]
else
let guival = a:colarg[4]
endif
let fg = s:checkargs(a:colarg[2])
let bg = s:checkargs(a:colarg[3])
let sp = s:checkargs(a:colarg[5])
exec "hi ".a:colarg[0]." gui=".guival." guifg=".fg." guibg=".bg." guisp=".sp
endfunction
" }}}
" {{{ color setup for terminal
if ! has("gui_running")
for s:col in s:colors256
exec "hi ".s:col[0]." cterm=".s:col[1]." ctermfg=".s:col[2]." ctermbg=".s:col[3]
endfor
if v:version >= 700
for s:col in s:colorvim7
exec "hi ".s:col[0]." cterm=".s:col[1]." ctermfg=".s:col[2]." ctermbg=".s:col[3]
endfor
endif
else
" }}}
" color-mapping array {{{
" number of vim colors and #html colors equivalent for gui
let s:cmap = [
\ "#000000", "#800000", "#008000", "#808000",
\ "#000080", "#800080", "#008080", "#c0c0c0",
\ "#808080", "#ff0000", "#00ff00", "#ffff00",
\ "#0000ff", "#ff00ff", "#00ffff", "#ffffff",
\
\ "#000000", "#00005f", "#000087", "#0000af", "#0000d7", "#0000ff",
\ "#005f00", "#005f5f", "#005f87", "#005faf", "#005fd7", "#005fff",
\ "#008700", "#00875f", "#008787", "#0087af", "#0087d7", "#0087ff",
\ "#00af00", "#00af5f", "#00af87", "#00afaf", "#00afd7", "#00afff",
\ "#00d700", "#00d75f", "#00d787", "#00d7af", "#00d7d7", "#00d7ff",
\ "#00ff00", "#00ff5f", "#00ff87", "#00ffaf", "#00ffd7", "#00ffff",
\ "#5f0000", "#5f005f", "#5f0087", "#5f00af", "#5f00d7", "#5f00ff",
\ "#5f5f00", "#5f5f5f", "#5f5f87", "#5f5faf", "#5f5fd7", "#5f5fff",
\ "#5f8700", "#5f875f", "#5f8787", "#5f87af", "#5f87d7", "#5f87ff",
\ "#5faf00", "#5faf5f", "#5faf87", "#5fafaf", "#5fafd7", "#5fafff",
\ "#5fd700", "#5fd75f", "#5fd787", "#5fd7af", "#5fd7d7", "#5fd7ff",
\ "#5fff00", "#5fff5f", "#5fff87", "#5fffaf", "#5fffd7", "#5fffff",
\ "#870000", "#87005f", "#870087", "#8700af", "#8700d7", "#8700ff",
\ "#875f00", "#875f5f", "#875f87", "#875faf", "#875fd7", "#875fff",
\ "#878700", "#87875f", "#878787", "#8787af", "#8787d7", "#8787ff",
\ "#87af00", "#87af5f", "#87af87", "#87afaf", "#87afd7", "#87afff",
\ "#87d700", "#87d75f", "#87d787", "#87d7af", "#87d7d7", "#87d7ff",
\ "#87ff00", "#87ff5f", "#87ff87", "#87ffaf", "#87ffd7", "#87ffff",
\ "#af0000", "#af005f", "#af0087", "#af00af", "#af00d7", "#af00ff",
\ "#af5f00", "#af5f5f", "#af5f87", "#af5faf", "#af5fd7", "#af5fff",
\ "#af8700", "#af875f", "#af8787", "#af87af", "#af87d7", "#af87ff",
\ "#afaf00", "#afaf5f", "#afaf87", "#afafaf", "#afafd7", "#afafff",
\ "#afd700", "#afd75f", "#afd787", "#afd7af", "#afd7d7", "#afd7ff",
\ "#afff00", "#afff5f", "#afff87", "#afffaf", "#afffd7", "#afffff",
\ "#d70000", "#d7005f", "#d70087", "#d700af", "#d700d7", "#d700ff",
\ "#d75f00", "#d75f5f", "#d75f87", "#d75faf", "#d75fd7", "#d75fff",
\ "#d78700", "#d7875f", "#d78787", "#d787af", "#d787d7", "#d787ff",
\ "#d7af00", "#d7af5f", "#d7af87", "#d7afaf", "#d7afd7", "#d7afff",
\ "#d7d700", "#d7d75f", "#d7d787", "#d7d7af", "#d7d7d7", "#d7d7ff",
\ "#d7ff00", "#d7ff5f", "#d7ff87", "#d7ffaf", "#d7ffd7", "#d7ffff",
\ "#ff0000", "#ff005f", "#ff0087", "#ff00af", "#ff00d7", "#ff00ff",
\ "#ff5f00", "#ff5f5f", "#ff5f87", "#ff5faf", "#ff5fd7", "#ff5fff",
\ "#ff8700", "#ff875f", "#ff8787", "#ff87af", "#ff87d7", "#ff87ff",
\ "#ffaf00", "#ffaf5f", "#ffaf87", "#ffafaf", "#ffafd7", "#ffafff",
\ "#ffd700", "#ffd75f", "#ffd787", "#ffd7af", "#ffd7d7", "#ffd7ff",
\ "#ffff00", "#ffff5f", "#ffff87", "#ffffaf", "#ffffd7", "#ffffff",
\
\ "#080808", "#121212", "#1c1c1c", "#262626", "#303030", "#3a3a3a",
\ "#444444", "#4e4e4e", "#585858", "#606060", "#666666", "#767676",
\ "#808080", "#8a8a8a", "#949494", "#9e9e9e", "#a8a8a8", "#b2b2b2",
\ "#bcbcbc", "#c6c6c6", "#d0d0d0", "#dadada", "#e4e4e4", "#eeeeee" ]
" }}}
" {{{ color setup for gvim
for s:col in s:colors256
call s:guisetcolor(s:col)
endfor
if v:version >= 700
for s:col in s:colorvim7
call s:guisetcolor(s:col)
endfor
endif
endif
" }}}
let &cpo = s:save_cpo " restoring &cpo value
" vim: set fdm=marker fileformat=unix:

View File

@ -1,76 +0,0 @@
" Vim color file
" Maintainer: Tim Aldrich <aldy0169@yahoo.com>
" Last Change: 19 January 2002
set background=dark
hi clear
if exists("syntax_on")
syntax reset
endif
let g:colors_name="camo"
hi Normal guifg=bisque guibg=grey15
hi Cursor guifg=snow guibg=bisque3
hi CursorIM guifg=OliveDrab4 guibg=bisque
hi Directory guifg=OliveDrab4 guibg=grey15
hi DiffAdd guifg=DarkOliveGreen1 guibg=grey15
hi DiffChange guifg=PaleGreen guibg=grey15
hi DiffDelete guifg=red guibg=grey15
hi DiffText guifg=grey15 guibg=red
hi ErrorMsg guifg=snow guibg=red
hi VertSplit guifg=bisque4 guibg=DarkOliveGreen1
hi Folded guifg=DarkOliveGreen2 guibg=grey30
hi FoldColumn guifg=DarkOliveGreen2 guibg=grey30
hi IncSearch guifg=bisque guibg=red
hi LineNr guifg=OliveDrab4 guibg=grey15
hi ModeMsg guifg=khaki3 guibg=grey15
hi MoreMsg guifg=khaki3 guibg=grey15
hi NonText guifg=DarkSalmon guibg=grey10
hi Question guifg=IndianRed guibg=grey10
hi Search guifg=DarkSalmon guibg=grey15
hi SpecialKey guifg=yellow guibg=grey15
hi StatusLine guifg=bisque4 guibg=DarkOliveGreen1
hi StatusLineNC guifg=bisque4 guibg=DarkOliveGreen3
hi Title guifg=IndianRed guibg=grey15
hi Visual guifg=OliveDrab4 guibg=bisque1
hi WarningMsg guifg=bisque guibg=red
hi WildMenu guifg=LightBlue guibg=DarkViolet
"Syntax hilight groups
hi Comment guifg=tan
hi Constant guifg=khaki
hi String guifg=moccasin
hi Character guifg=chocolate
hi Number guifg=chocolate
hi Boolean guifg=OliveDrab3
hi Float guifg=chocolate
hi Identifier guifg=khaki4
hi Function guifg=OliveDrab4
hi Statement guifg=khaki
hi Conditional guifg=khaki
hi Repeat guifg=khaki
hi Label guifg=khaki
hi Operator guifg=DarkKhaki
hi Keyword guifg=DarkKhaki
hi Exception guifg=khaki
hi PreProc guifg=khaki4
hi Include guifg=khaki4
hi Define guifg=khaki1
hi Macro guifg=khaki2
hi PreCondit guifg=khaki3
hi Type guifg=khaki3
hi StorageClass guifg=tan
hi Structure guifg=DarkGoldenrod
hi Typedef guifg=khaki3
hi Special guifg=IndianRed
hi SpecialChar guifg=DarkGoldenrod
hi Tag guifg=DarkKhaki
hi Delimiter guifg=DarkGoldenrod
hi SpecialComment guifg=cornsilk
hi Debug guifg=brown
hi Underlined guifg=IndianRed
hi Ignore guifg=grey30
hi Error guifg=bisque guibg=red
hi Todo guifg=red guibg=bisque

View File

@ -1,78 +0,0 @@
" Vim color file
" Maintainer: Tiza
" Last Change: 2002/04/28 Sun 19:35.
" version: 1.0
" This color scheme uses a dark background.
set background=dark
hi clear
if exists("syntax_on")
syntax reset
endif
let colors_name = "candy"
hi Normal guifg=#f0f0f8 guibg=#000000
" Search
hi IncSearch gui=UNDERLINE guifg=#80ffff guibg=#0060c0
hi Search gui=NONE guifg=#f0f0f8 guibg=#0060c0
" Messages
hi ErrorMsg gui=BOLD guifg=#ffa0ff guibg=NONE
hi WarningMsg gui=BOLD guifg=#ffa0ff guibg=NONE
hi ModeMsg gui=BOLD guifg=#40f0d0 guibg=NONE
hi MoreMsg gui=BOLD guifg=#00ffff guibg=#008070
hi Question gui=BOLD guifg=#e8e800 guibg=NONE
" Split area
hi StatusLine gui=NONE guifg=#000000 guibg=#c8c8d8
hi StatusLineNC gui=NONE guifg=#707080 guibg=#c8c8d8
hi VertSplit gui=NONE guifg=#606080 guibg=#c8c8d8
hi WildMenu gui=NONE guifg=#000000 guibg=#a0a0ff
" Diff
hi DiffText gui=NONE guifg=#ff78f0 guibg=#a02860
hi DiffChange gui=NONE guifg=#e03870 guibg=#601830
hi DiffDelete gui=NONE guifg=#a0d0ff guibg=#0020a0
hi DiffAdd gui=NONE guifg=#a0d0ff guibg=#0020a0
" Cursor
hi Cursor gui=NONE guifg=#00ffff guibg=#008070
hi lCursor gui=NONE guifg=#ffffff guibg=#8800ff
hi CursorIM gui=NONE guifg=#ffffff guibg=#8800ff
" Fold
hi Folded gui=NONE guifg=#40f0f0 guibg=#005080
hi FoldColumn gui=NONE guifg=#40c0ff guibg=#00305c
" Other
hi Directory gui=NONE guifg=#40f0d0 guibg=NONE
hi LineNr gui=NONE guifg=#9090a0 guibg=NONE
hi NonText gui=BOLD guifg=#4080ff guibg=NONE
hi SpecialKey gui=BOLD guifg=#8080ff guibg=NONE
hi Title gui=BOLD guifg=#f0f0f8 guibg=NONE
hi Visual gui=NONE guifg=#e0e0f0 guibg=#707080
" Syntax group
hi Comment gui=NONE guifg=#c0c0d0 guibg=NONE
hi Constant gui=NONE guifg=#90d0ff guibg=NONE
hi Error gui=BOLD guifg=#ffffff guibg=#ff0088
hi Identifier gui=NONE guifg=#40f0f0 guibg=NONE
hi Ignore gui=NONE guifg=#000000 guibg=NONE
hi PreProc gui=NONE guifg=#40f0a0 guibg=NONE
hi Special gui=NONE guifg=#e0e080 guibg=NONE
hi Statement gui=NONE guifg=#ffa0ff guibg=NONE
hi Todo gui=BOLD,UNDERLINE guifg=#ffa0a0 guibg=NONE
hi Type gui=NONE guifg=#ffc864 guibg=NONE
hi Underlined gui=UNDERLINE guifg=#f0f0f8 guibg=NONE
" HTML
hi htmlLink gui=UNDERLINE
hi htmlBold gui=BOLD
hi htmlBoldItalic gui=BOLD,ITALIC
hi htmlBoldUnderline gui=BOLD,UNDERLINE
hi htmlBoldUnderlineItalic gui=BOLD,UNDERLINE,ITALIC
hi htmlItalic gui=ITALIC
hi htmlUnderline gui=UNDERLINE
hi htmlUnderlineItalic gui=UNDERLINE,ITALIC

View File

@ -1,174 +0,0 @@
" Vim color file -- candycode
" Maintainer: Justin Constantino <goflyapig-at-gmail-com>
" Last Change: 2006 Aug 12
set background=dark
highlight clear
let g:colors_name="candycode"
let save_cpo = &cpo
set cpo&vim
" basic highlight groups (:help highlight-groups) {{{
" text {{{
hi Normal guifg=#ffffff guibg=#050505 gui=NONE
\ ctermfg=white ctermbg=black cterm=NONE
hi Folded guifg=#c2bfa5 guibg=#050505 gui=underline
\ ctermfg=lightgray ctermbg=black cterm=underline
hi LineNr guifg=#928c75 guibg=NONE gui=NONE
\ ctermfg=darkgray ctermbg=NONE cterm=NONE
hi Directory guifg=#00bbdd guibg=NONE gui=NONE
\ ctermfg=cyan ctermbg=NONE cterm=NONE
hi NonText guifg=#77ff22 guibg=NONE gui=bold
\ ctermfg=yellow ctermbg=NONE cterm=NONE
hi SpecialKey guifg=#559933 guibg=NONE gui=NONE
\ ctermfg=green ctermbg=NONE cterm=NONE
hi SpellBad guifg=NONE guibg=NONE gui=undercurl
\ ctermfg=white ctermbg=darkred guisp=#ff0011
hi SpellCap guifg=NONE guibg=NONE gui=undercurl
\ ctermfg=white ctermbg=darkblue guisp=#0044ff
hi SpellLocal guifg=NONE guibg=NONE gui=undercurl
\ ctermfg=black ctermbg=cyan guisp=#00dd99
hi SpellRare guifg=NONE guibg=NONE gui=undercurl
\ ctermfg=white ctermbg=darkmagenta guisp=#ff22ee
hi DiffAdd guifg=#ffffff guibg=#126493 gui=NONE
\ ctermfg=white ctermbg=darkblue cterm=NONE
hi DiffChange guifg=#000000 guibg=#976398 gui=NONE
\ ctermfg=black ctermbg=darkmagenta cterm=NONE
hi DiffDelete guifg=#000000 guibg=#be1923 gui=bold
\ ctermfg=black ctermbg=red cterm=bold
hi DiffText guifg=#ffffff guibg=#976398 gui=bold
\ ctermfg=white ctermbg=green cterm=bold
" }}}
" borders / separators / menus {{{
hi FoldColumn guifg=#c8bcb9 guibg=#786d65 gui=bold
\ ctermfg=lightgray ctermbg=darkgray cterm=NONE
hi SignColumn guifg=#c8bcb9 guibg=#786d65 gui=bold
\ ctermfg=lightgray ctermbg=darkgray cterm=NONE
hi Pmenu guifg=#000000 guibg=#a6a190 gui=NONE
\ ctermfg=white ctermbg=darkgray cterm=NONE
hi PmenuSel guifg=#ffffff guibg=#133293 gui=NONE
\ ctermfg=white ctermbg=lightblue cterm=NONE
hi PmenuSbar guifg=NONE guibg=#555555 gui=NONE
\ ctermfg=black ctermbg=black cterm=NONE
hi PmenuThumb guifg=NONE guibg=#cccccc gui=NONE
\ ctermfg=gray ctermbg=gray cterm=NONE
hi StatusLine guifg=#000000 guibg=#c2bfa5 gui=bold
\ ctermfg=black ctermbg=white cterm=bold
hi StatusLineNC guifg=#444444 guibg=#c2bfa5 gui=NONE
\ ctermfg=darkgray ctermbg=white cterm=NONE
hi WildMenu guifg=#ffffff guibg=#133293 gui=bold
\ ctermfg=white ctermbg=darkblue cterm=bold
hi VertSplit guifg=#c2bfa5 guibg=#c2bfa5 gui=NONE
\ ctermfg=white ctermbg=white cterm=NONE
hi TabLine guifg=#000000 guibg=#c2bfa5 gui=NONE
\ ctermfg=black ctermbg=white cterm=NONE
hi TabLineFill guifg=#000000 guibg=#c2bfa5 gui=NONE
\ ctermfg=black ctermbg=white cterm=NONE
hi TabLineSel guifg=#ffffff guibg=#133293 gui=NONE
\ ctermfg=white ctermbg=black cterm=NONE
"hi Menu
"hi Scrollbar
"hi Tooltip
" }}}
" cursor / dynamic / other {{{
hi Cursor guifg=#000000 guibg=#ffff99 gui=NONE
\ ctermfg=black ctermbg=white cterm=NONE
hi CursorIM guifg=#000000 guibg=#aaccff gui=NONE
\ ctermfg=black ctermbg=white cterm=reverse
hi CursorLine guifg=NONE guibg=#1b1b1b gui=NONE
\ ctermfg=NONE ctermbg=NONE cterm=NONE
hi CursorColumn guifg=NONE guibg=#1b1b1b gui=NONE
\ ctermfg=NONE ctermbg=NONE cterm=NONE
hi Visual guifg=#ffffff guibg=#606070 gui=NONE
\ ctermfg=white ctermbg=lightblue cterm=NONE
hi IncSearch guifg=#000000 guibg=#eedd33 gui=bold
\ ctermfg=white ctermbg=yellow cterm=NONE
hi Search guifg=#efefd0 guibg=#937340 gui=NONE
\ ctermfg=white ctermbg=darkgreen cterm=NONE
hi MatchParen guifg=NONE guibg=#3377aa gui=NONE
\ ctermfg=white ctermbg=blue cterm=NONE
"hi VisualNOS
" }}}
" listings / messages {{{
hi ModeMsg guifg=#eecc18 guibg=NONE gui=NONE
\ ctermfg=yellow ctermbg=NONE cterm=NONE
hi Title guifg=#dd4452 guibg=NONE gui=bold
\ ctermfg=red ctermbg=NONE cterm=bold
hi Question guifg=#66d077 guibg=NONE gui=NONE
\ ctermfg=green ctermbg=NONE cterm=NONE
hi MoreMsg guifg=#39d049 guibg=NONE gui=NONE
\ ctermfg=green ctermbg=NONE cterm=NONE
hi ErrorMsg guifg=#ffffff guibg=#ff0000 gui=bold
\ ctermfg=white ctermbg=red cterm=bold
hi WarningMsg guifg=#ccae22 guibg=NONE gui=bold
\ ctermfg=yellow ctermbg=NONE cterm=bold
" }}}
" }}}
" syntax highlighting groups (:help group-name) {{{
hi Comment guifg=#ff9922 guibg=NONE gui=NONE
\ ctermfg=brown ctermbg=NONE cterm=NONE
hi Constant guifg=#ff6050 guibg=NONE gui=NONE
\ ctermfg=red ctermbg=NONE cterm=NONE
hi Boolean guifg=#ff6050 guibg=NONE gui=bold
\ ctermfg=red ctermbg=NONE cterm=bold
hi Identifier guifg=#eecc44 guibg=NONE gui=NONE
\ ctermfg=yellow ctermbg=NONE cterm=NONE
hi Statement guifg=#66d077 guibg=NONE gui=bold
\ ctermfg=green ctermbg=NONE cterm=bold
hi PreProc guifg=#bb88dd guibg=NONE gui=NONE
\ ctermfg=darkmagenta ctermbg=NONE cterm=NONE
hi Type guifg=#4093cc guibg=NONE gui=bold
\ ctermfg=lightblue ctermbg=NONE cterm=bold
hi Special guifg=#9999aa guibg=NONE gui=bold
\ ctermfg=lightgray ctermbg=NONE cterm=bold
hi Underlined guifg=#80a0ff guibg=NONE gui=underline
\ ctermfg=NONE ctermbg=NONE cterm=underline
\ term=underline
hi Ignore guifg=#888888 guibg=NONE gui=NONE
\ ctermfg=darkgray ctermbg=NONE cterm=NONE
hi Error guifg=#ffffff guibg=#ff0000 gui=NONE
\ ctermfg=white ctermbg=red cterm=NONE
hi Todo guifg=#ffffff guibg=#ee7700 gui=bold
\ ctermfg=black ctermbg=yellow cterm=bold
" }}}
let &cpo = save_cpo
" vim: fdm=marker fdl=0

View File

@ -1,67 +0,0 @@
" Vim color file
" Maintainer : Brian Gant
" Email : gantbd@muohio.edu
" Last Change : 2/15/03
" Version : 0.1
"
" TODO : add colors for diff and other non-implemented
" stuff
"
" LICENCE (heh) : Emailware. Basically it means use it,
" abuse it, change it, love it, leave it, whatever! I
" do however make the simple request that if you use the
" scheme, drop me an email and let me know what you think
" about it, especially if you modify it! I don't use
" the non-implemented features on a regular enough basis
" to get a feel for how they flesh out.
"
" Designed for use with COBOL, but looks pretty good with
" Perl, PHP, and C/C++ too (at least I think so).
"
" Brian
"
" ---------------------------------------------------------
set background=dark
hi clear
if exists("syntax_on")
syntax reset
endif
let g:colors_name="caramel"
" ---------------------------------------------------------
hi Normal guifg=#dca454 guibg=#5c5094
" ---------------------------------------------------------
hi Cursor guifg=#303030 guibg=#dca454
hi CursorIM guifg=#303030 guibg=#dca454
hi ErrorMsg guifg=#b4a8a8 guibg=bg
hi IncSearch guifg=#e0d070 guibg=#303030
hi LineNr guifg=#b4a8a8 guibg=#39325d
hi ModeMsg guifg=#b4a8a8 guibg=bg
hi MoreMsg guifg=#b4a8a8 guibg=bg
hi NonText guifg=#b4a8a8 guibg=#39325d
hi Question guifg=#b4a8a8 guibg=bg
hi Search guifg=#303030 guibg=#e0d070
hi StatusLine guifg=#e0d070 guibg=#303030
hi StatusLineNC guifg=#dca454 guibg=#303030
hi Title guifg=#b4a8a8 guibg=#39325d
hi Visual guifg=#b4a8a8 guibg=#303030
hi VisualNOS guifg=#b4a8a8 guibg=#303030
hi WarningMsg guifg=#b4a8a8 guibg=#39325d
" ---------------------------------------------------------
hi Comment guifg=#b4a8a8 guibg=bg
hi Constant guifg=#9cd464 guibg=bg
hi Identifier guifg=#e8c47c guibg=bg
hi Statement guifg=#8088bc guibg=bg
hi PreProc guifg=#e0d070 guibg=bg
hi Type guifg=#e0d070 guibg=bg
hi Special guifg=#e0d070 guibg=bg
hi Underlined guifg=#9cd464 guibg=bg
hi Ignore guifg=fg guibg=bg
hi Error guifg=#cc74a8 guibg=#9cd464
hi Todo guifg=bg guibg=#e0d070

View File

@ -1,110 +0,0 @@
" Vim color file
"
" Maintainer: Stefan Karlsson <stefan.74@comhem.se>
" Last Change: 8 August 2006
set background=light
hi clear
if exists("syntax_on")
syntax reset
endif
let g:colors_name="chela_light"
"Syntax Groups =============================================
hi comment guibg=#fafafa guifg=#339900 gui=none
hi constant guibg=#fafafa guifg=#cc2222 gui=none
hi identifier guibg=#fafafa guifg=#2222ff gui=none
hi statement guibg=#fafafa guifg=#2222ff gui=none
hi preproc guibg=#fafafa guifg=#2222ff gui=none
hi precondit guibg=#fafafa guifg=#cc00cc gui=none
hi type guibg=#fafafa guifg=#2222ff gui=none
hi special guibg=#fafafa guifg=#cc00cc gui=none
hi specialchar guibg=#fafafa guifg=#cc2222 gui=underline
hi underlined guibg=#fafafa guifg=#2222ff gui=underline
hi error guibg=#ff2222 guifg=#ffffff gui=none
hi todo guibg=#339933 guifg=#ffffff gui=none
"General Groups ============================================
hi cursor guibg=#000000 guifg=#ffffff gui=none
" cursorim?
hi cursorcolumn guibg=#eeeeee gui=none
hi cursorline guibg=#eeeeee gui=none
hi directory guibg=#fafafa guifg=#2222ff gui=none
hi diffadd guibg=#66ff66 guifg=#000000 gui=none
hi diffchange guibg=#ffff00 guifg=#cccc99 gui=none
hi diffdelete guibg=#ff6666 guifg=#ff6666 gui=none
hi difftext guibg=#ffff00 guifg=#000000 gui=none
hi errormsg guibg=#ff2222 guifg=#ffffff gui=none
hi vertsplit guibg=#2222ff guifg=#2222ff gui=none
hi folded guibg=#eeeeee guifg=#2222ff gui=none
hi foldcolumn guibg=#eeeeee guifg=#999999 gui=none
" signcolumn?
hi incsearch guibg=#ffbb00 guifg=#000000 gui=none
hi linenr guibg=#fafafa guifg=#cccccc gui=none
hi matchparen guibg=#cccccc gui=none
hi modemsg guibg=#fafafa guifg=#999999 gui=none
hi moremsg guibg=#339900 guifg=#ffffff gui=none
hi nontext guibg=#fafafa guifg=#999999 gui=none
hi normal guibg=#fafafa guifg=#222222 gui=none
hi pmenu guibg=#cccccc guifg=#222222 gui=none
hi pmenusel guibg=#2222ff guifg=#ffffff gui=none
" pmenusbar?
" pmenuthumb?
hi question guibg=#339900 guifg=#ffffff gui=none
hi search guibg=#ffff00 guifg=#000000 gui=none
hi specialkey guibg=#fafafa guifg=#cc00cc gui=none
hi spellbad gui=undercurl guisp=#ff2222
hi spellcap gui=undercurl guisp=#ff2222
hi spelllocal gui=undercurl guisp=#cc2222
hi spellrare gui=undercurl guisp=#22cc22
hi statusline guibg=#2222ff guifg=#ffffff gui=none
hi statuslinenc guibg=#2222ff guifg=#999999 gui=none
hi tabline guibg=#cccccc guifg=#222222 gui=none
hi tablinesel guibg=#2222ff guifg=#ffffff gui=none
hi tablinefill guibg=#aaaaaa guifg=#aaaaaa gui=none
hi title guibg=#fafafa guifg=#6666ff gui=none
hi visual guibg=#cccccc guifg=#333333 gui=none
" visualnos?
hi warningmsg guibg=#fafafa guifg=#ff0000 gui=none
hi wildmenu guibg=#339900 guifg=#ffffff gui=none

View File

@ -1,78 +0,0 @@
" vim:set ts=8 sts=2 sw=2 tw=0:
" Name: chlordane.vim
" Maintainer: Kojo Sugita
" Last Change: 2008-08-18
" Revision: 1.1
set background=dark
hi clear
if exists("syntax_on")
syntax reset
endif
let g:colors_name = 'chlordane'
hi Cursor guifg=#3a553a guibg=#77dd88
hi lCursor guifg=#3a553a guibg=#77dd88
hi CursorIM guifg=#3a553a guibg=#77dd88
hi Directory guifg=#77dd88 guibg=#000000 gui=bold
hi DiffAdd guifg=#77dd88 guibg=#3a553a gui=none
hi DiffChange guifg=#77dd88 guibg=#3a553a gui=none
hi DiffDelete guifg=#223322 guibg=#223322 gui=none
hi DiffText guifg=#77dd88 guibg=#448844 gui=bold
hi ErrorMsg guifg=#ee1111 guibg=#000000
hi VertSplit guifg=#223322 guibg=#223322
hi Folded guifg=#55af66 guibg=#000000
hi FoldColumn guifg=#557755 guibg=#102010
hi IncSearch guifg=#3a553a guibg=#77dd88 gui=none
hi LineNr guifg=#446644 guibg=#000000 gui=none
hi ModeMsg guifg=#55af66 guibg=#000000
hi MoreMsg guifg=#55af66 guibg=#000000
hi Normal guifg=#55af66 guibg=#000000
hi Question guifg=#55af66 guibg=#000000
hi Search guifg=#223322 guibg=#55af66 gui=none
hi NonText guifg=#606060 gui=none
hi SpecialKey guifg=#707070
"\n, \0, %d, %s, etc...
hi Special guifg=#55af66 guibg=#223333 gui=bold
" status line
hi StatusLine guifg=#88ee99 guibg=#447f55 gui=bold
hi StatusLineNC term=bold cterm=bold,underline ctermfg=green ctermbg=Black
hi StatusLineNC term=bold gui=bold,underline guifg=#3a553a guibg=Black
hi Title guifg=#77dd88 guibg=#223322 gui=bold
hi Visual guifg=#77dd88 guibg=#448844 gui=none
hi VisualNOS guifg=#55af66 guibg=#000000
hi WarningMsg guifg=#77dd88 guibg=#000000
hi WildMenu guifg=#3a553a guibg=#77dd88
hi Number guifg=#77dd88 guibg=#354535
hi Char guifg=#77dd88 guibg=#354535
hi String guifg=#77dd88 guibg=#354535
hi Boolean guifg=#77dd88 guibg=#354535
hi Comment guifg=#446644
hi Constant guifg=#88ee99 gui=none
hi Identifier guifg=#77dd88
hi Statement guifg=#88ee99 gui=none
"Procedure name
hi Function guifg=#77dd88
"Define, def
hi PreProc guifg=#77dd88 gui=bold
hi Type guifg=#77dd88 gui=bold
hi Underlined guifg=#77dd88 gui=underline
hi Error guifg=#ee1111 guibg=#000000
hi Todo guifg=#223322 guibg=#55af66 gui=none
hi SignColumn guibg=#000000
if version >= 700
" Pmenu
hi Pmenu guibg=#222222
hi PmenuSel guibg=#3a553a guifg=#77dd88
hi PmenuSbar guibg=#222222
" Tab
hi TabLine guifg=#3a553a guibg=black gui=bold
hi TabLineFill guifg=black guibg=black gui=bold
hi TabLineSel guifg=#88ee99 guibg=#447f55 gui=bold
endif

View File

@ -1,36 +0,0 @@
" Vim color file
" Maintainer: Gerald S. Williams
" Last Change: 2007 Jun 13
" This started as a dark version (perhaps opposite is a better term) of
" PapayaWhip, but took on a life of its own. Easy on the eyes, but still has
" good contrast. Not bad on a color terminal, either (especially if yours
" default to PapayaWhip text on a ChocolateLiquor/#3f1f1f background).
"
" Only values that differ from defaults are specified.
set background=dark
hi clear
if exists("syntax_on")
syntax reset
endif
let g:colors_name = "ChocolateLiquor"
hi Normal guibg=#3f1f1f guifg=PapayaWhip ctermfg=White
hi NonText guibg=#1f0f0f guifg=Brown2 ctermfg=Brown ctermbg=Black
hi LineNr guibg=#1f0f0f guifg=Brown2
hi DiffDelete guibg=DarkRed guifg=White ctermbg=DarkRed ctermfg=White
hi DiffAdd guibg=DarkGreen guifg=White ctermbg=DarkGreen ctermfg=White
hi DiffText gui=NONE guibg=DarkCyan guifg=Yellow ctermbg=DarkCyan ctermfg=Yellow
hi DiffChange guibg=DarkCyan guifg=White ctermbg=DarkCyan ctermfg=White
hi Constant ctermfg=Red
hi Comment guifg=LightBlue3
hi PreProc guifg=Plum ctermfg=Magenta
hi StatusLine guibg=White guifg=Sienna4 cterm=NONE ctermfg=Black ctermbg=Brown
hi StatusLineNC gui=NONE guifg=Black guibg=Gray ctermbg=Black ctermfg=Gray
hi VertSplit guifg=Gray
hi Search guibg=Gold3 ctermfg=Blue
hi Type gui=NONE guifg=DarkSeaGreen2
hi Statement gui=NONE guifg=Gold3
hi FoldColumn guibg=#1f0f0f ctermfg=Cyan ctermbg=Black
hi Folded guibg=grey20 ctermfg=Cyan ctermbg=Black

View File

@ -1,52 +0,0 @@
" Vim color - Clarity
"
set background=dark
hi clear
if exists("syntax_on")
syntax reset
endif
let g:colors_name="clarity"
highlight Normal gui=NONE guifg=LightBlue2 guibg=#1F3055
highlight Comment gui=NONE guifg=Grey62 guibg=bg
highlight PreProc gui=NONE guifg=Salmon guibg=bg
highlight Precondit gui=NONE guifg=Khaki3 guibg=bg
highlight Identifier gui=NONE guifg=Khaki3 guibg=bg
highlight Type gui=BOLD guifg=Orange guibg=bg
highlight StorageClass gui=BOLD guifg=Cornsilk2 guibg=bg
highlight Todo gui=BOLD guifg=#1F3055 guibg=White
highlight NonText gui=NONE guifg=#334C51 guibg=SteelBlue4
highlight LineNr gui=NONE guifg=HoneyDew2 guibg=Grey25
highlight StatusLineNC gui=NONE guifg=Grey80 guibg=LightBlue4
highlight StatusLine gui=NONE guifg=DarkBlue guibg=#FFFFCA
highlight IncSearch gui=NONE guifg=Black guibg=#FFE568
highlight Search gui=UNDERLINE,BOLD guifg=#FFE568 guibg=bg
highlight Cursor gui=NONE guifg=Grey50 guibg=#FFE568
highlight CursorIM gui=NONE guifg=Grey50 guibg=#FFE568
highlight Title gui=BOLD guifg=OliveDrab3 guibg=bg
highlight WarningMsg gui=BOLD guifg=White guibg=Red4
highlight String gui=NONE guifg=Grey80 guibg=bg
highlight Number gui=NONE guifg=OliveDrab2 guibg=bg
highlight Constant gui=NONE guifg=#ACEDAB guibg=bg
highlight Visual gui=BOLD guifg=White guibg=bg
highlight Directory gui=NONE guifg=PeachPuff guibg=bg
highlight DiffAdd gui=NONE guifg=white guibg=SeaGreen
highlight DiffChange gui=BOLD guifg=white guibg=Blue
highlight DiffDelete gui=NONE guifg=Grey40 guibg=Grey20
highlight DiffText gui=BOLD guifg=HoneyDew1 guibg=FireBrick
highlight Typedef gui=NONE guifg=Cornsilk guibg=bg
highlight Define gui=NONE guifg=White guibg=bg
highlight Tag gui=NONE guifg=LightBlue2 guibg=bg
highlight Debug gui=BOLD guifg=Green guibg=bg
highlight Special gui=NONE guifg=NavajoWhite guibg=bg
highlight SpecialChar gui=NONE guifg=NavajoWhite guibg=bg
highlight Delimiter gui=NONE guifg=NavajoWhite guibg=bg
highlight SpecialComment gui=NONE guifg=NavajoWhite3 guibg=bg
highlight Conditional gui=BOLD guifg=Wheat2 guibg=bg
highlight Statement gui=BOLD guifg=Pink3 guibg=bg
highlight WildMenu gui=NONE guifg=White guibg=FireBrick
highlight browseSuffixes gui=NONE guifg=Cornsilk3 guibg=bg

View File

@ -1,81 +0,0 @@
" Vim color file
" Maintainer: Billy McIntosh <billymcintosh@ntlworld.com>
" Last Change: June 24, 2003
" Licence: Public Domain
" This package offers a eye-catching color scheme for PHP syntax
" First remove all existing highlighting.
set background=dark
hi clear
if exists("syntax_on")
syntax reset
endif
let colors_name = "cleanphp"
hi Normal guifg=#008000 guibg=#d3e4f8
hi ErrorMsg guibg=#d3e4f8 guifg=Red
hi IncSearch gui=reverse
hi ModeMsg gui=bold
hi StatusLine gui=reverse,bold
hi StatusLineNC gui=reverse
hi VertSplit gui=reverse
hi Visual gui=reverse guifg=#c0c0c0 guibg=fg
hi VisualNOS gui=underline,bold
hi DiffText gui=bold guibg=Red
hi Cursor guibg=Black guifg=NONE
hi lCursor guibg=Black guifg=NONE
hi Directory guifg=#ff8040
hi LineNr guifg=#008000
hi MoreMsg gui=bold guifg=SeaGreen
hi NonText gui=bold guifg=#ff8040 guibg=#d3e4f8
hi Question gui=bold guifg=Black
hi Search guibg=#008000 guifg=NONE
hi SpecialKey guifg=#ff8040
hi Title gui=bold guifg=Magenta
hi WarningMsg guifg=Red
hi WildMenu guibg=Cyan guifg=#d3e4f8
hi Folded guibg=White guifg=Darkblue
hi FoldColumn guibg=#c0c0c0 guifg=Darkblue
hi DiffAdd guibg=Lightblue
hi DiffChange guibg=LightMagenta
hi DiffDelete gui=bold guifg=#ff8040 guibg=LightCyan
hi Comment guifg=#ff8040 guibg=#d3e4f8
hi Constant guifg=#BB0000 guibg=#d3e4f8
hi PreProc guifg=#008080 guibg=#d3e4f8
hi Statement gui=NONE guifg=#008000 guibg=#d3e4f8
hi Special guifg=#008080 guibg=#d3e4f8
hi Ignore guifg=#c0c0c0
hi Identifier guifg=#000080 guibg=#d3e4f8
hi Type guifg=#00BB00 guibg=#d3e4f8
hi link IncSearch Visual
hi link String Constant
hi link Character Constant
hi link Number Constant
hi link Boolean Constant
hi link Float Number
hi link Function Identifier
hi link Conditional Statement
hi link Repeat Statement
hi link Label Statement
hi link Operator Statement
hi link Keyword Statement
hi link Exception Statement
hi link Include PreProc
hi link Define PreProc
hi link Macro PreProc
hi link PreCondit PreProc
hi link StorageClass Type
hi link Structure Type
hi link Typedef Type
hi link Tag Special
hi link SpecialChar Special
hi link Delimiter Special
hi link SpecialComment Special
hi link Debug Special
" vim: sw=2

View File

@ -1,60 +0,0 @@
" Vim color file
" Maintainer: David Lazar <david#c7.campus.utcluj.ro>
" Last Change: Fri Jan 31 01:08:13 UTC 2003
" Version: 1.0
" URL: http://c7.campus.utcluj.ro/~david/coffee.vim
"
" This colorscheme script was created using Hans Fugal's colorscheme template
set background=dark
hi clear
if exists("syntax_on")
syntax reset
endif
let g:colors_name="coffee"
hi Normal gui=none guibg= #514c44 guifg=#b0a594
hi Cursor gui=none guibg=#ffffff guifg=bg
hi link CursorIM Cursor
hi Directory guifg=#ffffff
hi DiffAdd guibg=#9e9485 guifg=bg
hi DiffDelete guibg=#2e2b26 guifg=fg
hi DiffChange guibg=#70695e guifg=fg
hi DiffText guibg=#70695e guifg=#880000
hi ErrorMsg guibg=#880000 guifg=#ffffff
hi Folded guifg=#88c0c7
hi FoldColumn guifg=#88c0c7
hi IncSearch guifg=#fff0d6 guibg=#000000
hi LineNr guibg=#000000 guifg=#ffff21
hi ModeMsg guifg=#ffffff
hi MoreMsg guifg=#00ff00
hi NonText guifg=#61616d
hi Question guifg=#ffff00
hi link Search IncSearch
hi SpecialKey guifg=#ffffff
hi StatusLine guibg=#000000 guifg=#deefff
hi StatusLineNC guibg=#395956 guifg=#a4b1bd
hi VertSplit guibg=#395956 guifg=#a4b1bd
hi Title guifg=#ffffff
hi Visual guifg=#fff0d6 guibg=#000000
hi VisualNOS guifg=#dddddd guibg=bg
hi WarningMsg guifg=#ffff00
"hi WildMenu
"hi Menu
"hi Scrollbar
"hi Tooltip
" syntax highlighting groups
hi Comment guifg=#1a1813
hi Constant guifg=#cefece
hi Identifier guifg=#cc7c3d
hi Statement guifg=#effec5
hi PreProc guifg=#85ff85
hi Type guifg=#c6feeb
hi Special guifg=#eeffee
hi Underlined gui=underline guifg=#ffffff
hi Ignore guifg=fg
hi Error guibg=bg guifg=#ff4c4a
hi Todo guibg=#aa0006 guifg=#fff300

View File

@ -1,79 +0,0 @@
" local syntax file - set colors on a per-machine basis:
" vim: tw=0 ts=4 sw=4
" Vim color file
" Maintainer: Sergey V. Beduev <shaman@interdon.net>
" Last Change: Sun Mar 28 11:19:38 EEST 2004
set background=dark
hi clear
if exists("syntax_on")
syntax reset
endif
let g:colors_name = "colorer"
hi Normal ctermfg=Gray guifg=DarkGray guibg=black
hi Visual ctermfg=DarkCyan guibg=black guifg=DarkCyan
hi Comment ctermfg=Brown guifg=#B46918 gui=NONE
hi PerlPOD ctermfg=Brown guifg=#B86A18 gui=NONE
hi Constant ctermfg=White guifg=White gui=NONE
hi Charachter ctermfg=Yellow guifg=Yellow gui=NONE
hi String ctermfg=Yellow guifg=Yellow gui=NONE
hi Number ctermfg=White guifg=White gui=NONE
hi Boolean ctermfg=Cyan guifg=DarkGray gui=NONE
hi Special ctermfg=DarkMagenta guifg=Red gui=NONE
hi Define ctermfg=LightMagenta guifg=Magenta gui=NONE
hi Identifier ctermfg=Green guifg=Green gui=NONE
hi Exception ctermfg=White guifg=White gui=NONE
hi Statement ctermfg=White guifg=White gui=NONE
hi Label ctermfg=White guifg=White gui=NONE
hi Keyword ctermfg=White guifg=White gui=NONE
hi PreProc ctermfg=Green guifg=Green gui=NONE
hi Type ctermfg=LightGreen guifg=Green gui=NONE
hi Function ctermfg=White guifg=White gui=NONE
hi Repeat ctermfg=White guifg=White gui=NONE
hi Operator ctermfg=White guifg=White gui=NONE
hi Ignore ctermfg=black guifg=bg
hi Folded ctermbg=LightBlue ctermfg=Gray guibg=DarkBlue guifg=DarkGray gui=NONE
hi Error term=reverse ctermbg=Red ctermfg=White guibg=darkRed guifg=White gui=NONE
hi Todo term=standout ctermbg=Yellow ctermfg=Black guifg=Black guibg=#AD5500 gui=NONE
hi Done term=standout ctermbg=Gray ctermfg=White guifg=White guibg=Gray gui=NONE
hi SpellErrors ctermfg=DarkRed guifg=Black gui=NONE
hi MailQ ctermfg=darkcyan guibg=black gui=NONE
hi MailQu ctermfg=darkgreen guibg=black gui=NONE
hi MyDiffNew ctermfg=magenta guifg=red gui=NONE
hi MyDiffCommLine ctermfg=white ctermbg=red guifg=white guibg=darkred gui=NONE
hi MyDiffRemoved ctermfg=LightRed guifg=red gui=NONE
hi MyDiffSubName ctermfg=DarkCyan guifg=Cyan gui=NONE
hi MyDiffNormal ctermbg=White ctermfg=black guibg=White guifg=black gui=NONE
hi MoreMsg gui=NONE
hi ModeMsg gui=NONE
hi Title gui=NONE
hi NonText gui=NONE
hi DiffDelete gui=NONE
hi DiffText gui=NONE
hi StatusLine guifg=black guibg=gray gui=NONE
hi Question gui=NONE
" Common groups that link to default highlighting.
" You can specify other highlighting easily.
"hi link String Constant
"hi link Character Constant
"hi link Number Constant
"hi link Boolean Constant
hi link Float Number
hi link Conditional Repeat
hi link Include PreProc
hi link Structure Define
hi link Macro PreProc
hi link PreCondit PreProc
hi link StorageClass Type
hi link Structure Type
hi link Typedef Type
hi link Tag Special
hi link SpecialChar Special
hi link Delimiter Normal
hi link SpecialComment Special
hi link Debug Special

View File

@ -1,88 +0,0 @@
" Vim color file
" Maintainer: Your name <youremail@something.com>
" Last Change:
" URL:
" cool help screens
" :he group-name
" :he highlight-groups
" :he cterm-colors
" your pick:
set background=dark " or light
hi clear
if exists("syntax_on")
syntax reset
endif
let g:colors_name="mycolorscheme"
"hi Normal
" OR
" highlight clear Normal
" set background&
" highlight clear
" if &background == "light"
" highlight Error ...
" ...
" else
" highlight Error ...
" ...
" endif
" A good way to see what your colorscheme does is to follow this procedure:
" :w
" :so %
"
" Then to see what the current setting is use the highlight command.
" For example,
" :hi Cursor
" gives
" Cursor xxx guifg=bg guibg=fg
" Uncomment and complete the commands you want to change from the default.
"hi Cursor
"hi CursorIM
"hi Directory
"hi DiffAdd
"hi DiffChange
"hi DiffDelete
"hi DiffText
"hi ErrorMsg
"hi VertSplit
"hi Folded
"hi FoldColumn
"hi IncSearch
"hi LineNr
"hi ModeMsg
"hi MoreMsg
"hi NonText
"hi Question
"hi Search
"hi SpecialKey
"hi StatusLine
"hi StatusLineNC
"hi Title
"hi Visual
"hi VisualNOS
"hi WarningMsg
"hi WildMenu
"hi Menu
"hi Scrollbar
"hi Tooltip
" syntax highlighting groups
"hi Comment
"hi Constant
"hi Identifier
"hi Statement
"hi PreProc
"hi Type
"hi Special
"hi Underlined
"hi Ignore
"hi Error
"hi Todo

View File

@ -1,82 +0,0 @@
" Vim color file
" Maintainer: Gergely Kontra <kgergely@mcl.hu>
" Last Change: 2002. 07. 03.
" Based on scite colors.
" I've changed my mind, and inverted the colors.
" After an hour, this is the result.
" Not resembles to scite's colors :-]
" I'm a bit red-blind, so if you have suggestions, don't hesitate :)
" ^^^^^^^^^ Sorry, I cannot speak English well, just want to say,
" that in some rare cases I cannot distinguish between some colors
" (I've just realized it, when I see some special tests)
set background=dark
hi clear
if exists("syntax_on")
syntax reset
endif
"colorscheme default
let g:colors_name = "cool"
" GUI
"highlight Normal guifg=#77BBFF guibg=#304060
highlight Normal guifg=#77BBFF guibg=#102040
highlight Normal ctermfg=LightBlue ctermbg=Black
highlight Comment guifg=#EEEEEE guibg=#393939
highlight Comment ctermfg=white ctermbg=DarkGrey
highlight Constant gui=underline
highlight Constant ctermfg=LightBlue cterm=bold,underline
highlight Cursor guifg=#999999 guibg=#FFFFFF
highlight Define guifg=#FFFF80 guibg=#000099 gui=bold
highlight Define ctermfg=Yellow ctermbg=DarkBlue cterm=bold
highlight Delimiter guifg=#FFFFFF guibg=#221F22 gui=bold
highlight FoldColumn guifg=#FFFFFF guibg=#222222
highlight FoldColumn ctermfg=White ctermbg=DarkGrey cterm=reverse
highlight Folded guifg=#000000 guibg=#999999
highlight Folded ctermfg=DarkGrey ctermbg=Black cterm=reverse
highlight Function guifg=#dddddd guibg=#000099 gui=bold
highlight Function ctermfg=White ctermbg=DarkBlue cterm=bold
highlight IncSearch guifg=#000000 guibg=#ffffff gui=bold,underline
highlight LineNr guifg=#FFFFFF guibg=#444444
highlight Number guifg=#dddddd gui=bold
highlight Number ctermfg=LightCyan
highlight PreProc guibg=#000000 guifg=#77bbff gui=bold
highlight Search guifg=#ffffff guibg=#335577
highlight Search ctermfg=White ctermbg=Cyan cterm=reverse
highlight Special guifg=#ccaa55 guibg=#102040 gui=none
highlight Special ctermfg=Brown ctermbg=Black cterm=bold
highlight Statement guifg=#FF8080 gui=bold
highlight Statement ctermfg=Magenta cterm=bold
highlight StatusLine guifg=#FFFFFF guibg=#553333
highlight StatusLine ctermfg=white ctermbg=DarkRed
highlight StatusLineNC guifg=#AA8888 guibg=#000000
highlight StatusLineNC ctermfg=red ctermbg=black
highlight String guifg=#99ffaa guibg=#000000
highlight String ctermfg=White
highlight Subtitle guifg=#FFFFFF guibg=#994444 gui=bold,underline
highlight Type guifg=#FFFFFF gui=NONE
highlight Type guifg=white gui=NONE
highlight Visual guibg=#112233 guifg=#6688AA
highlight Visual ctermbg=DarkBlue ctermfg=LightBlue

View File

@ -1,83 +0,0 @@
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" File: "/home/caciano/.vim/dante.vim"
" Created: "Thu, 23 May 2002 00:12:20 -0300 (caciano)"
" Updated: "Sat, 24 Aug 2002 14:04:21 -0300 (caciano)"
" Copyright (C) 2002, Caciano Machado <caciano@inf.ufrgs.br>
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" Colorscheme Option:
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
hi clear
if exists("syntax on")
syntax reset
endif
let g:colors_name = "dante"
" General colors
hi Normal ctermfg=gray guifg=peachpuff3 guibg=black
hi Directory term=bold ctermfg=blue guifg=royalblue
hi ErrorMsg term=standout ctermfg=white ctermbg=red guifg=white guibg=red3
hi NonText term=bold ctermfg=darkgray guibg=gray3 guifg=gray20
hi SpecialKey term=bold ctermfg=darkgray guifg=gray30
hi LineNr term=underline ctermfg=darkgray guifg=ivory4 guibg=gray4
hi IncSearch term=reverse cterm=reverse gui=reverse,bold guifg=darkgoldenrod2
hi Search term=reverse ctermfg=black ctermbg=yellow guifg=gray10 guibg=gold2
hi Visual term=bold,reverse cterm=bold,reverse ctermfg=gray ctermbg=black gui=bold,reverse guifg=gray40 guibg=black
hi VisualNOS term=bold,underline cterm=bold,underline gui=bold,underline
hi MoreMsg term=bold ctermfg=green gui=bold guifg=olivedrab1
hi ModeMsg term=bold cterm=bold gui=bold
hi Question term=standout ctermfg=green gui=bold guifg=olivedrab1
hi WarningMsg term=standout ctermfg=red gui=bold guifg=red3
hi WildMenu term=standout ctermfg=black ctermbg=yellow guifg=black guibg=gold2
hi Folded term=standout ctermfg=blue ctermbg=white guifg=royalblue1 guibg=white
hi FoldColumn term=standout ctermfg=blue ctermbg=white guifg=royalblue3 guibg=white
hi DiffAdd term=bold ctermbg=blue guibg=royalblue2
hi DiffChange term=bold ctermbg=darkmagenta guibg=maroon
hi DiffDelete term=bold cterm=bold ctermfg=lightblue ctermbg=cyan gui=bold guifg=lightblue guibg=cyan4
hi DiffText term=reverse cterm=bold ctermbg=red gui=bold guibg=red3
hi Cursor guifg=bg guibg=fg
hi lCursor guifg=bg guibg=fg
hi StatusLine term=reverse cterm=reverse gui=reverse guifg=gray60
hi StatusLineNC term=reverse cterm=reverse gui=reverse guifg=gray40
hi VertSplit term=reverse cterm=reverse gui=bold,reverse guifg=gray40
hi Title term=bold ctermfg=magenta gui=bold guifg=aquamarine
" syntax hi colors
hi Comment term=bold ctermfg=darkcyan guifg=cyan4
hi PreProc term=underline ctermfg=darkblue guifg=dodgerblue4
hi Constant term=underline ctermfg=darkred guifg=firebrick3
hi Type term=underline ctermfg=darkgreen gui=none guifg=chartreuse3
hi Statement term=bold ctermfg=darkyellow gui=none guifg=gold3
hi Identifier term=underline ctermfg=darkgreen guifg=darkolivegreen4
hi Ignore term=bold ctermfg=darkgray guifg=gray45
hi Special term=underline ctermfg=brown guifg=sienna
hi Error term=reverse ctermfg=gray ctermbg=red guifg=gray guibg=red3
hi Todo term=standout ctermfg=black ctermbg=yellow gui=bold guifg=gray10 guibg=yellow4
hi Underlined term=underline cterm=underline ctermfg=darkblue gui=underline guifg=slateblue
hi Number term=underline ctermfg=darkred guifg=red2
" syntax hi links
hi link String Constant
hi link Character Constant
hi link Number Constant
hi link Boolean Constant
hi link Float Number
hi link Function Identifier
hi link Number Constant
hi link Conditional Statement
hi link Repeat Statement
hi link Label Statement
hi link Keyword Statement
hi link Exception Statement
hi link Operator Statement
hi link Include PreProc
hi link Define PreProc
hi link Macro PreProc
hi link PreCondit PreProc
hi link StorageClass Type
hi link Structure Type
hi link Typedef Type
hi link Tag Special
hi link SpecialChar Special
hi link Delimiter Special
hi link SpecialComment Special
hi link Debug Special
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""

View File

@ -1,291 +0,0 @@
" Vim color file
" Maintainer: Priit Tamboom <priit ät mx.ee>
" Last Change: Alfa version
" URL: http://priit.mx.ee/dark-ruby
" your pick:
set background=dark
hi clear
if exists("syntax_on")
syntax reset
endif
let g:colors_name="dark-ruby"
" A good way to see what your colorscheme does is to follow this procedure:
" :w
" :so %
"
" Then to see what the current setting is use the highlight command.
" For example,
" :hi Cursor
" gives
" Cursor xxx guifg=bg guibg=fg
" Uncomment and complete the commands you want to change from the default.
" highlight Normal guibg=#EDE9E3
" hi Cursor ctermfg=000 guifg=lightgray
" hi CursorIM ctermfg=000 guifg=lightgray
" hi Directory ctermfg=000 guifg=lightgray
" hi DiffAdd ctermfg=000 guifg=lightgray
" hi DiffChange ctermfg=000 guifg=lightgray
" hi DiffDelete ctermfg=000 guifg=lightgray
" hi DiffText ctermfg=000 guifg=lightgray
" hi ErrorMsg ctermfg=000 guifg=lightgray
" hi VertSplit ctermfg=000 guifg=lightgray
" hi Folded ctermfg=000 guifg=lightgray
" hi FoldColumn ctermfg=000 guifg=lightgray
" hi IncSearch ctermfg=000 guifg=lightgray
" hi ModeMsg ctermfg=000 guifg=lightgray
" hi MoreMsg ctermfg=000 guifg=lightgray
" hi NonText ctermfg=000 guifg=lightgray
" hi Question ctermfg=000 guifg=lightgray
" hi Search ctermfg=000 guifg=lightgray
" hi SpecialKey ctermfg=000 guifg=lightgray
" hi StatusLine ctermfg=000 guifg=lightgray
" hi StatusLineNC ctermfg=000 guifg=lightgray
" hi Title ctermfg=000 guifg=lightgray
" hi Visual ctermfg=000 guifg=lightgray
" hi VisualNOS ctermfg=000 guifg=lightgray
" hi WarningMsg ctermfg=000 guifg=lightgray
" hi WildMenu ctermfg=000 guifg=lightgray
" hi Menu ctermfg=000 guifg=lightgray
" hi Scrollbar ctermfg=000 guifg=lightgray
" hi Tooltip ctermfg=000 guifg=lightgray
" syntax highlighting groups
hi LineNr ctermfg=252 guifg=252
hi Comment ctermfg=28 guifg=28
hi Constant ctermfg=185 guifg=185
hi Identifier ctermfg=252 guifg=252
hi Statement ctermfg=32 guifg=32
hi PreProc ctermfg=252 guifg=252
hi Type ctermfg=167 guifg=167
hi Special ctermfg=252 guifg=252
hi Underlined ctermfg=000 guifg=red
hi Ignore ctermfg=000 guifg=red
hi Error ctermfg=000 guifg=red
hi Todo ctermfg=000 guifg=red
" Alfa version notes: color '000' means I haven't set color yet
hi rubyEscape ctermfg=252 guifg=252
hi rubyInterpolationDelimiter ctermfg=252 guifg=252
hi rubyInterpolation ctermfg=252 guifg=252
hi rubyP000efinedVariable ctermfg=red guifg=red
hi rubyInstanceVariable ctermfg=66 guifg=66
hi rubyClassVariable ctermfg=000 guifg=red
hi rubyGlobalVariable ctermfg=000 guifg=red
hi rubyP000efinedVariable ctermfg=red guifg=red
hi rubyNoInterpolation ctermfg=000 guifg=red
hi rubyDelimEscape ctermfg=000 guifg=red
hi rubyNestedParentheses ctermfg=000 guifg=red
hi rubyNestedCurlyBraces ctermfg=000 guifg=red
hi rubyNestedAngleBrackets ctermfg=000 guifg=red
hi rubyNestedSquareBrackets ctermfg=000 guifg=red
hi rubyASCIICode ctermfg=000 guifg=red
hi rubyInteger ctermfg=185 guifg=185
hi rubyFloat ctermfg=185 guifg=185
hi rubyLocalVariableOrMethod ctermfg=000 guifg=red
hi rubyBlockArgument ctermfg=000 guifg=red
hi rubyConstant ctermfg=252 guifg=252
hi rubySymbol ctermfg=167 guifg=167
hi rubyStringSpecial ctermfg=000 guifg=red
hi rubyBlockParameter ctermfg=252 guifg=252
hi rubyP000efinedConstant ctermfg=red guifg=red
hi rubyRegexp ctermfg=167 guifg=167
hi rubyString ctermfg=185 guifg=185
hi rubyBoolean ctermfg=252 guifg=252
hi rubyPseudoVariable ctermfg=252 guifg=252
hi rubyMethodDeclaration ctermfg=000 guifg=red
hi rubyClassDeclaration ctermfg=000 guifg=red
hi rubyModuleDeclaration ctermfg=000 guifg=red
hi rubyFunction ctermfg=252 guifg=252
hi rubyDefine ctermfg=32 guifg=32
hi rubyClass ctermfg=25 guifg=25
hi rubyModule ctermfg=25 guifg=25
hi rubyBlock ctermfg=252 guifg=252
hi rubyConditional ctermfg=81 guifg=81
hi rubyRepeat ctermfg=81 guifg=81
hi rubyControl ctermfg=81 guifg=81
hi rubyKeyword ctermfg=000 guifg=red
hi rubyOperator ctermfg=000 guifg=red
hi rubyBeginEnd ctermfg=000 guifg=red
hi rubyAccess ctermfg=32 guifg=32
hi rubyAttribute ctermfg=252 guifg=252
hi rubyEval ctermfg=000 guifg=red
hi rubyException ctermfg=000 guifg=red
hi rubyInclude ctermfg=252 guifg=252
hi rubySharpBang ctermfg=000 guifg=red
hi rubyTodo ctermfg=34 guifg=34
hi rubyComment ctermfg=28 guifg=28
hi rubyDocumentation ctermfg=000 guifg=red
hi rubyData ctermfg=000 guifg=red
hi railsMethod ctermfg=107 guifg=107
hi railsUserClass ctermfg=107 guifg=107
hi railsUserMethod ctermfg=107 guifg=107
" hi rubyRailsError ctermfg=lightgray guifg=lightgray
" hi rubyRailsDeprecatedMethod ctermfg=lightgray guifg=lightgray
" hi erubyRailsMethod ctermfg=lightgray guifg=lightgray
" hi erubyRailsRenderMethod ctermfg=lightgray guifg=lightgray
" hi erubyRailsHelperMethod ctermfg=lightgray guifg=lightgray
"hi javascriptRailsClass ctermfg=lightgray guifg=lightgray
"hi javascriptRailsFunction ctermfg=lightgray guifg=lightgray
"hi htmlError ctermfg=lightgray guifg=lightgray
"hi htmlSpecialChar ctermfg=lightgray guifg=lightgray
"hi javaScriptExpression ctermfg=lightgray guifg=lightgray
"hi htmlString ctermfg=lightgray guifg=lightgray
"hi htmlValue ctermfg=lightgray guifg=lightgray
"hi htmlTagN ctermfg=lightgray guifg=lightgray
"hi htmlTagError ctermfg=lightgray guifg=lightgray
hi htmlEndTag ctermfg=25 guifg=25
"hi htmlArg ctermfg=lightgray guifg=lightgray
"hi htmlEvent ctermfg=lightgray guifg=lightgray
"hi htmlCssDefinition ctermfg=lightgray guifg=lightgray
hi htmlTag ctermfg=25 guifg=25
hi htmlTagName ctermfg=25 guifg=25
"hi htmlSpecialTagName ctermfg=lightgray guifg=lightgray
"hi htmlCommentPart ctermfg=lightgray guifg=lightgray
"hi htmlCommentError ctermfg=lightgray guifg=lightgray
"hi htmlComment ctermfg=lightgray guifg=lightgray
"hi htmlPreStmt ctermfg=lightgray guifg=lightgray
"hi htmlPreError ctermfg=lightgray guifg=lightgray
"hi htmlPreAttr ctermfg=lightgray guifg=lightgray
"hi htmlPreProc ctermfg=lightgray guifg=lightgray
"hi htmlPreProcAttrError ctermfg=lightgray guifg=lightgray
"hi htmlPreProcAttrName ctermfg=lightgray guifg=lightgray
"hi htmlLink ctermfg=lightgray guifg=lightgray
"hi javaScript ctermfg=lightgray guifg=lightgray
"hi htmlBoldUnderline ctermfg=lightgray guifg=lightgray
"hi htmlBoldItalic ctermfg=lightgray guifg=lightgray
"hi htmlBold ctermfg=lightgray guifg=lightgray
"hi htmlBoldUnderlineItalic ctermfg=lightgray guifg=lightgray
"hi htmlBoldItalicUnderline ctermfg=lightgray guifg=lightgray
"hi htmlUnderlineBold ctermfg=lightgray guifg=lightgray
"hi htmlUnderlineItalic ctermfg=lightgray guifg=lightgray
"hi htmlUnderline ctermfg=lightgray guifg=lightgray
"hi htmlUnderlineBoldItalic ctermfg=lightgray guifg=lightgray
"hi htmlUnderlineItalicBold ctermfg=lightgray guifg=lightgray
"hi htmlItalicBold ctermfg=lightgray guifg=lightgray
"hi htmlItalicUnderline ctermfg=lightgray guifg=lightgray
"hi htmlItalic ctermfg=lightgray guifg=lightgray
"hi htmlItalicBoldUnderline ctermfg=lightgray guifg=lightgray
"hi htmlItalicUnderlineBold ctermfg=lightgray guifg=lightgray
hi htmlH1 ctermfg=25 guifg=25
"hi htmlH2 ctermfg=lightgray guifg=lightgray
"hi htmlH3 ctermfg=lightgray guifg=lightgray
"hi htmlH4 ctermfg=lightgray guifg=lightgray
"hi htmlH5 ctermfg=lightgray guifg=lightgray
"hi htmlH6 ctermfg=lightgray guifg=lightgray
"hi htmlTitle ctermfg=lightgray guifg=lightgray
"hi cssStyle ctermfg=lightgray guifg=lightgray
"hi htmlHead ctermfg=lightgray guifg=lightgray
"hi javaScriptCommentTodo ctermfg=lightgray guifg=lightgray
"hi javaScriptLineComment ctermfg=lightgray guifg=lightgray
"hi javaScriptCommentSkip ctermfg=lightgray guifg=lightgray
"hi javaScriptComment ctermfg=lightgray guifg=lightgray
"hi javaScriptSpecial ctermfg=lightgray guifg=lightgray
"hi javaScriptStringD ctermfg=lightgray guifg=lightgray
"hi javaScriptStringS ctermfg=lightgray guifg=lightgray
"hi javaScriptSpecialCharacter ctermfg=lightgray guifg=lightgray
"hi javaScriptNumber ctermfg=lightgray guifg=lightgray
"hi javaScriptRegexpString ctermfg=lightgray guifg=lightgray
"hi javaScriptConditional ctermfg=lightgray guifg=lightgray
"hi javaScriptRepeat ctermfg=lightgray guifg=lightgray
"hi javaScriptBranch ctermfg=lightgray guifg=lightgray
"hi javaScriptOperator ctermfg=lightgray guifg=lightgray
"hi javaScriptType ctermfg=lightgray guifg=lightgray
"hi javaScriptStatement ctermfg=lightgray guifg=lightgray
"hi javaScriptBoolean ctermfg=lightgray guifg=lightgray
"hi javaScriptNull ctermfg=lightgray guifg=lightgray
"hi javaScriptIdentifier ctermfg=lightgray guifg=lightgray
"hi javaScriptLabel ctermfg=lightgray guifg=lightgray
"hi javaScriptException ctermfg=lightgray guifg=lightgray
"hi javaScriptMessage ctermfg=lightgray guifg=lightgray
"hi javaScriptDeprecated ctermfg=lightgray guifg=lightgray
"hi javaScriptReserved ctermfg=lightgray guifg=lightgray
"hi javaScriptFunction ctermfg=lightgray guifg=lightgray
"hi javaScriptBraces ctermfg=lightgray guifg=lightgray
"hi javaScriptBraces ctermfg=lightgray guifg=lightgray
"hi javaScriptParens ctermfg=lightgray guifg=lightgray
"hi htmlCssStyleComment ctermfg=lightgray guifg=lightgray
"hi htmlScriptTag ctermfg=lightgray guifg=lightgray
"hi htmlEventTag ctermfg=lightgray guifg=lightgray
"hi htmlEventSQ ctermfg=lightgray guifg=lightgray
"hi htmlEventDQ ctermfg=lightgray guifg=lightgray
"hi vbStatement ctermfg=lightgray guifg=lightgray
"hi vbFunction ctermfg=lightgray guifg=lightgray
"hi vbMethods ctermfg=lightgray guifg=lightgray
"hi vbEvents ctermfg=lightgray guifg=lightgray
"hi vbTypes ctermfg=lightgray guifg=lightgray
"hi vbOperator ctermfg=lightgray guifg=lightgray
"hi vbConst ctermfg=lightgray guifg=lightgray
"hi vbTodo ctermfg=lightgray guifg=lightgray
"hi vbNumber ctermfg=lightgray guifg=lightgray
"hi vbString ctermfg=lightgray guifg=lightgray
"hi vbComment ctermfg=lightgray guifg=lightgray
"hi vbLineNumber ctermfg=lightgray guifg=lightgray
"hi vbTypeSpecifier ctermfg=lightgray guifg=lightgray
"hi cssTagName ctermfg=lightgray guifg=lightgray
"hi cssDefinition ctermfg=lightgray guifg=lightgray
"hi cssSelectorOp ctermfg=lightgray guifg=lightgray
"hi cssSelectorOp2 ctermfg=lightgray guifg=lightgray
"hi cssUnicodeEscape ctermfg=lightgray guifg=lightgray
"hi cssStringQ ctermfg=lightgray guifg=lightgray
"hi cssStringQQ ctermfg=lightgray guifg=lightgray
"hi cssIdentifier ctermfg=lightgray guifg=lightgray
"hi cssMediaType ctermfg=lightgray guifg=lightgray
"hi cssMedia ctermfg=lightgray guifg=lightgray
"hi cssMediaComma ctermfg=lightgray guifg=lightgray
"hi cssMediaBlock ctermfg=lightgray guifg=lightgray
"hi cssBraces ctermfg=lightgray guifg=lightgray
"hi cssError ctermfg=lightgray guifg=lightgray
"hi cssComment ctermfg=lightgray guifg=lightgray
"hi cssURL ctermfg=lightgray guifg=lightgray
"hi cssValueInteger ctermfg=lightgray guifg=lightgray
"hi cssValueNumber ctermfg=lightgray guifg=lightgray
"hi cssValueLength ctermfg=lightgray guifg=lightgray
"hi cssValueAngle ctermfg=lightgray guifg=lightgray
"hi cssValueTime ctermfg=lightgray guifg=lightgray
"hi cssValueFrequency ctermfg=lightgray guifg=lightgray
"hi cssFontDescriptor ctermfg=lightgray guifg=lightgray
"hi cssFontProp ctermfg=lightgray guifg=lightgray
"hi cssFontAttr ctermfg=lightgray guifg=lightgray
"hi cssCommonAttr ctermfg=lightgray guifg=lightgray
"hi cssFontDescriptorProp ctermfg=lightgray guifg=lightgray
"hi cssFontDescriptorFunction ctermfg=lightgray guifg=lightgray
"hi cssUnicodeRange ctermfg=lightgray guifg=lightgray
"hi cssColor ctermfg=lightgray guifg=lightgray
"hi cssFunction ctermfg=lightgray guifg=lightgray
"hi cssImportant ctermfg=lightgray guifg=lightgray
"hi cssColorProp ctermfg=lightgray guifg=lightgray
"hi cssColorAttr ctermfg=lightgray guifg=lightgray
"hi cssTextProp ctermfg=lightgray guifg=lightgray
"hi cssTextAttr ctermfg=lightgray guifg=lightgray
"hi cssBoxProp ctermfg=lightgray guifg=lightgray
"hi cssBoxAttr ctermfg=lightgray guifg=lightgray
"hi cssGeneratedContentProp ctermfg=lightgray guifg=lightgray
"hi cssGeneratedContentAttr ctermfg=lightgray guifg=lightgray
"hi cssAurlAttr ctermfg=lightgray guifg=lightgray
"hi cssPagingProp ctermfg=lightgray guifg=lightgray
"hi cssPagingAttr ctermfg=lightgray guifg=lightgray
"hi cssUIProp ctermfg=lightgray guifg=lightgray
"hi cssUIAttr ctermfg=lightgray guifg=lightgray
"hi cssRenderAttr ctermfg=lightgray guifg=lightgray
"hi cssRenderProp ctermfg=lightgray guifg=lightgray
"hi cssAuralProp ctermfg=lightgray guifg=lightgray
"hi cssTableProp ctermfg=lightgray guifg=lightgray
"hi cssTableAttr ctermfg=lightgray guifg=lightgray
"hi cssInclude ctermfg=lightgray guifg=lightgray
"hi cssBraceError ctermfg=lightgray guifg=lightgray
"hi cssPreudoClassId ctermfg=lightgray guifg=lightgray
"hi cssPseudoClass ctermfg=lightgray guifg=lightgray
"hi cssPseudoClassLang ctermfg=lightgray guifg=lightgray
"hi cssSpecialCharQQ ctermfg=lightgray guifg=lightgray
"hi cssSpecialCharQ ctermfg=lightgray guifg=lightgray
"hi erubyOneLiner ctermfg=lightgray guifg=lightgray
"hi erubyBlock ctermfg=lightgray guifg=lightgray
"hi erubyExpression ctermfg=lightgray guifg=lightgray
"hi erubyComment ctermfg=lightgray guifg=lightgray

View File

@ -1,60 +0,0 @@
" Vim color file
" Maintainer: Matthew Jimenez <mjimenez@ersnet.net>
" Last Change: 2005 Feb 25
" darkblack -- an alteration to the darkblue colorscheme by Bohdan Vlasyuk <bohdan@vstu.edu.ua>
set bg=dark
hi clear
if exists("syntax_on")
syntax reset
endif
let colors_name = "darkblack"
hi Normal guifg=lightgrey guibg=black ctermfg=lightgray ctermbg=black
hi ErrorMsg guifg=white guibg=lightblue ctermfg=white ctermbg=lightblue
hi Visual guifg=lightblue guibg=fg gui=reverse ctermfg=lightblue ctermbg=fg cterm=reverse
hi VisualNOS guifg=lightblue guibg=fg gui=reverse,underline ctermfg=lightblue ctermbg=fg cterm=reverse,underline
hi Todo guifg=red guibg=black ctermfg=red ctermbg=black
hi Search guifg=white guibg=black ctermfg=white ctermbg=black cterm=underline term=underline
hi IncSearch guifg=black guibg=gray ctermfg=black ctermbg=gray
hi SpecialKey guifg=cyan ctermfg=darkcyan
hi Directory guifg=cyan ctermfg=cyan
hi Title guifg=magenta gui=none ctermfg=magenta cterm=bold
hi WarningMsg guifg=red ctermfg=red
hi WildMenu guifg=yellow guibg=black ctermfg=yellow ctermbg=black cterm=none term=none
hi ModeMsg guifg=lightblue ctermfg=lightblue
hi MoreMsg ctermfg=darkgreen ctermfg=darkgreen
hi Question guifg=green gui=none ctermfg=green cterm=none
hi NonText guifg=lightcyan ctermfg=lightcyan
hi StatusLine guifg=lightblue guibg=darkgray gui=none ctermfg=lightblue ctermbg=gray term=none cterm=none
hi StatusLineNC guifg=black guibg=darkgray gui=none ctermfg=black ctermbg=gray term=none cterm=none
hi VertSplit guifg=black guibg=darkgray gui=none ctermfg=black ctermbg=gray term=none cterm=none
hi Folded guifg=darkgrey guibg=black ctermfg=darkgrey ctermbg=black cterm=bold term=bold
hi FoldColumn guifg=darkgrey guibg=black ctermfg=darkgrey ctermbg=black cterm=bold term=bold
hi LineNr guifg=green ctermfg=green cterm=none
hi DiffAdd guibg=black ctermbg=black term=none cterm=none
hi DiffChange guibg=darkmagenta ctermbg=magenta cterm=none
hi DiffDelete ctermfg=lightblue ctermbg=cyan gui=bold guifg=Blue guibg=DarkCyan
hi DiffText cterm=bold ctermbg=red gui=bold guibg=Red
hi Cursor guifg=bg guibg=lightgrey ctermfg=bg ctermbg=lightgrey
hi lCursor guifg=bg guibg=darkgreen ctermfg=bg ctermbg=darkgreen
hi Comment guifg=lightblue ctermfg=lightblue
hi Constant ctermfg=magenta guifg=magenta cterm=none
hi Special ctermfg=brown guifg=Orange cterm=none gui=none
hi Identifier ctermfg=cyan guifg=cyan cterm=none
hi Statement ctermfg=yellow cterm=none guifg=yellow gui=none
hi PreProc ctermfg=magenta guifg=magenta gui=none cterm=none
hi type ctermfg=green guifg=green gui=none cterm=none
hi Underlined cterm=underline term=underline
hi Ignore guifg=bg ctermfg=bg

View File

@ -1,105 +0,0 @@
" Vim color file
" Maintainer: Datila Carvalho <datila@hotmail.com>
" Last Change: May, 19, 2005
" Version: 0.2
" 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 gui=bold guifg=lightsteelblue guibg=#132b4a
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=steelblue4 guibg=lightgray
hi StatusLineNC guifg=royalblue4 guibg=lightsteelblue
"hi Title
hi Visual guifg=steelblue guibg=fg
hi VisualNOS gui=bold guifg=steelblue guibg=fg
hi WarningMsg guifg=White guibg=Tomato
"hi WildMenu
hi User2 guifg=lightskyblue guibg=#021a39 gui=bold
" If using Motif/Athena
hi Menu guibg=#233b5a guifg=#fff8dc
hi Scrollbar guibg=bg
" 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

View File

@ -1,80 +0,0 @@
" Vim color file
" Maintainer: David Lazar <david#c7.campus.utcluj.ro>
" Last Change: Thu May 20 16:27:13 EEST 2004
" Version: 2.2
" URL: http://www.c7obs.net/~david/stuff/darkdot.vim
"
" This colorscheme script was created using Hans Fugal's colorscheme template
set background=dark
hi clear
if exists("syntax_on")
syntax reset
endif
let g:colors_name="darkdot"
hi Normal cterm=none gui=none guibg=#101020 guifg=#a8aaaa
hi Cursor cterm=none guibg=#44ff44 guifg=#000000
hi link CursorIM Cursor
hi Directory ctermfg=cyan guifg=#44ffff
hi DiffAdd ctermbg=blue ctermfg=yellow guibg=#080888 guifg=#ffff00
hi DiffDelete ctermbg=black ctermfg=darkgray guibg=#080808 guifg=#444444
hi DiffChange ctermbg=black guibg=#080808 guifg=#ffffff
hi DiffText ctermbg=black ctermfg=darkred guibg=#080808 guifg=#bb0000
hi ErrorMsg ctermbg=darkred ctermfg=white guibg=#880000 guifg=#ffffff
hi Folded ctermbg=black ctermfg=darkblue guibg=black guifg=#000088
hi link FoldColumn Folded
hi IncSearch ctermbg=black ctermfg=gray guibg=#000000 guifg=#bbcccc
hi LineNr ctermfg=yellow guibg=#404040 guifg=#ffff00
hi ModeMsg ctermfg=white guifg=#ffffff
hi MoreMsg ctermfg=green guifg=#44ff44
hi NonText ctermfg=blue guifg=#4444ff
hi Question ctermfg=yellow guifg=#ffff00
hi Search ctermbg=NONE ctermfg=green guibg=NONE guifg=green
hi SpecialKey ctermfg=blue guifg=#4444ff
hi StatusLine cterm=none ctermbg=darkcyan ctermfg=white gui=none guibg=#00aaaa guifg=#ffffff
hi StatusLineNC cterm=none ctermbg=gray ctermfg=black gui=none guibg=#bbbbbb guifg=#000000
hi link VertSplit StatusLineNC
hi Title ctermfg=white guifg=#ffffff
hi Visual cterm=none ctermbg=gray ctermfg=black gui=none guibg=#bbbbbb guifg=#000000
hi link VisualNOS Visual
hi WarningMsg ctermfg=yellow guifg=#ffff00
"hi WildMenu
"hi Menu
"hi Scrollbar
"hi Tooltip
" syntax highlighting groups
hi Comment ctermfg=blue guifg=#4444ff
hi Constant ctermfg=darkcyan guifg=#00aaaa
hi Identifier ctermfg=white guifg=#ffffff
hi Statement ctermfg=cyan guifg=#44ffff
hi PreProc ctermfg=darkcyan guifg=#00aaaa
hi Type ctermfg=white guifg=#ffffff
hi Special ctermfg=blue cterm=bold guifg=#6666ff gui=bold
hi Underlined ctermfg=blue guifg=#4444ff
hi Ignore ctermfg=darkgray guifg=#444444
hi Error ctermbg=black ctermfg=darkred guibg=#000000 guifg=#bb0000
hi Todo ctermbg=darkred ctermfg=yellow guibg=#aa0006 guifg=#fff300
hi link Character Constant
hi link Number Constant
hi link Boolean Constant
hi link Float Number
hi link Conditional Statement
hi link Label Statement
hi link Keyword Statement
hi link Exception Statement
hi link Repeat Statement
hi link Include PreProc
hi link Define PreProc
hi link Macro PreProc
hi link PreCondit PreProc
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 link FoldColumn Folded

View File

@ -1,52 +0,0 @@
" Name Of File: darkocean.vim
" Description: Gvim colorscheme, works best with version 6.0.
" Maintainer: Naveen Chandra R <ncr AT iitbombay DOT org>
" Last Change: Thursday, August 15, 2002
" Installation: Drop this file in your $VIMRUNTIME/colors/ directory
" or manually source this file using ':so darkocean.vim'.
set background=dark
hi clear
if exists("syntax_on")
syntax reset
endif
let g:colors_name="darkocean"
hi Cursor gui=None guibg=#add8e6 guifg=#000000
hi CursorIM gui=None guibg=#add8e6 guifg=#000000
hi Directory gui=None guibg=bg guifg=#20b2aa
hi DiffAdd gui=Bold guibg=#7e354d guifg=fg
hi DiffChange gui=Bold guibg=#103040 guifg=#cc3300
hi DiffDelete gui=Bold,Reverse guibg=#7e354d guifg=fg
hi DiffText gui=Bold guibg=#d74141 guifg=fg
hi ErrorMsg gui=None guibg=#b22222 guifg=#ffffe0
hi VertSplit gui=None guibg=#999999 guifg=#000000
hi Folded gui=Bold guibg=#003366 guifg=#999999
hi FoldColumn gui=Bold guibg=#305070 guifg=#b0d0e0
hi IncSearch gui=Bold guibg=#8db6cd guifg=fg
hi LineNr gui=Bold guibg=#0f0f0f guifg=#8db6cd
hi MoreMsg gui=Bold guibg=bg guifg=#bf9261
hi ModeMsg gui=Bold guibg=bg guifg=#4682b4
hi NonText gui=None guibg=#0f0f0f guifg=#87cefa
hi Normal gui=None guibg=#000000 guifg=#e0ffff
hi Question gui=Bold guibg=bg guifg=#f4bb7e
hi Search gui=Bold guibg=#607b8b guifg=#000000
hi SpecialKey gui=None guibg=bg guifg=#63b8ff
hi StatusLine gui=Bold guibg=#8db6cd guifg=#000000
hi StatusLineNC gui=None guibg=#607b8b guifg=#1a1a1a
hi Title gui=Bold guibg=bg guifg=#5cacee
hi Visual gui=Reverse guibg=#ffffff guifg=#36648b
hi VisualNOS gui=Bold,Underline guibg=#4682b4 guifg=fg
hi WarningMsg gui=Bold guibg=bg guifg=#b22222
hi WildMenu gui=Bold guibg=#607b8b guifg=#000000
hi Comment gui=None guibg=#102520 guifg=#8db6cd
hi Constant gui=None guibg=bg guifg=#c34a2c
hi Identifier gui=None guibg=bg guifg=#009acd
hi Statement gui=None guibg=bg guifg=#72a5ee
hi PreProc gui=None guibg=bg guifg=#c12869
hi Include gui=None guibg=bg guifg=#ccccff
hi Type gui=None guibg=bg guifg=#3b9c9c
hi Error gui=None guibg=#b22222 guifg=#ffffe0
hi Todo gui=None guibg=#507080 guifg=#3bcccc
hi Ignore gui=None guibg=bg guifg=#777777
hi TagName gui=None guibg=#660000 guifg=#a7a7a7

View File

@ -1,117 +0,0 @@
" vim: set tw=0 sw=4 sts=4 et:
" Vim color file
" Maintainer: Tuomas Susi <tsusi@cc.hut.fi>
" Last Change: 2004 October 05
" Version: 1.7
" Emacs in RedHat Linux used to have (still does?) a kind of 'Wheat on
" DarkSlateGray' color scheme by default. This color scheme is created in the
" same spirit.
"
" Darkslategray is intended to be nice to your eyes (low contrast) and to take
" advantage of syntax hilighting as much as possible.
"
" This color scheme is for the GUI only, I'm happy with default console colors.
" Needs at least vim 6.0.
" Init stuff
set background=dark
hi clear
if exists("syntax_on")
syntax reset
endif
let g:colors_name = "darkslategray"
" GUI colors
hi Cursor guifg=fg guibg=#da70d6
hi CursorIM guifg=NONE guibg=#ff83fa
hi Directory guifg=#e0ffff
hi DiffAdd guibg=#528b8b
hi DiffChange guibg=#8b636c
hi DiffDelete gui=bold guifg=fg guibg=#000000
hi DiffText gui=bold guibg=#6959cd
hi ErrorMsg gui=bold guifg=#ffffff guibg=#ff0000
hi VertSplit gui=bold guifg=#bdb76b guibg=#000000
hi Folded guifg=#000000 guibg=#bdb76b
hi FoldColumn guifg=#000000 guibg=#bdb76b
hi SignColumn gui=bold guifg=#bdb76b guibg=#20b2aa
hi IncSearch gui=bold guifg=#000000 guibg=#ffffff
hi LineNr gui=bold guifg=#bdb76b guibg=#528b8b
hi ModeMsg gui=bold
hi MoreMsg gui=bold guifg=#20b2aa
hi NonText gui=bold guifg=#ffffff
hi Normal guibg=#2f4f4f guifg=#f5deb3
hi Question gui=bold guifg=#ff6347
hi Search gui=bold guifg=#000000 guibg=#ffd700
hi SpecialKey guifg=#00ffff
hi StatusLine gui=bold guifg=#f0e68c guibg=#000000
hi StatusLineNC guibg=#bdb76b guifg=#404040
hi Title gui=bold guifg=#ff6347
hi Visual guifg=#000000 guibg=fg
hi VisualNOS gui=bold guifg=#000000 guibg=fg
hi WarningMsg guifg=#ffffff guibg=#ff6347
hi WildMenu gui=bold guifg=#000000 guibg=#ffff00
" I use GTK and don't wanna change these
"hi Menu foobar
"hi Scrollbar foobar
"hi Tooltip foobar
" Colors for syntax highlighting
hi Comment guifg=#da70d6
hi Constant guifg=#cdcd00
hi String guifg=#7fffd4
hi Character guifg=#7fffd4
hi Number guifg=#ff6347
hi Boolean guifg=#cdcd00
hi Float guifg=#ff6347
hi Identifier guifg=#afeeee
hi Function guifg=#ffffff
hi Statement gui=bold guifg=#4682b4
hi Conditional gui=bold guifg=#4682b4
hi Repeat gui=bold guifg=#4682b4
hi Label gui=bold guifg=#4682b4
hi Operator gui=bold guifg=#4682b4
hi Keyword gui=bold guifg=#4682b4
hi Exception gui=bold guifg=#4682b4
hi PreProc guifg=#cdcd00
hi Include guifg=#ffff00
hi Define guifg=#cdcd00
hi Macro guifg=#cdcd00
hi PreCondit guifg=#cdcd00
hi Type gui=bold guifg=#98fb98
hi StorageClass guifg=#00ff00
hi Structure guifg=#20b2aa
hi Typedef guifg=#00ff7f
hi Special guifg=#ff6347
"Underline Character
hi SpecialChar gui=underline guifg=#7fffd4
hi Tag guifg=#ff6347
"Statement
hi Delimiter gui=bold guifg=#b0c4de
"Bold comment (in Java at least)
hi SpecialComment gui=bold guifg=#da70d6
hi Debug gui=bold guifg=#ff0000
hi Underlined gui=underline
hi Ignore guifg=bg
hi Error gui=bold guifg=#ffffff guibg=#ff0000
hi Todo gui=bold guifg=#000000 guibg=#ff83fa

View File

@ -1,130 +0,0 @@
" Vim color file
"
" Author: Brian Mock <mock.brian@gmail.com>
"
" Note: Based on Oblivion color scheme for gedit (gtk-source-view)
"
" cool help screens
" :he group-name
" :he highlight-groups
" :he cterm-colors
hi clear
set background=dark
if version > 580
" no guarantees for version 5.8 and below, but this makes it stop
" complaining
hi clear
if exists("syntax_on")
syntax reset
endif
endif
let g:colors_name="darkspectrum"
hi Normal guifg=#eeeeec guibg=#2e3436
" highlight groups
hi Cursor guibg=#ffffff guifg=#000000
hi CursorLine guibg=#000000
"hi CursorLine guibg=#3e4446
hi CursorColumn guibg=#3e4446
"hi DiffText guibg=#4e9a06 guifg=#FFFFFF gui=bold
"hi DiffChange guibg=#4e9a06 guifg=#FFFFFF gui=bold
"hi DiffAdd guibg=#204a87 guifg=#FFFFFF gui=bold
"hi DiffDelete guibg=#5c3566 guifg=#FFFFFF gui=bold
hi DiffAdd guifg=#ffcc7f guibg=#a67429 gui=none
hi DiffChange guifg=#7fbdff guibg=#425c78 gui=none
hi DiffText guifg=#8ae234 guibg=#4e9a06 gui=none
"hi DiffDelete guifg=#252723 guibg=#000000 gui=none
hi DiffDelete guifg=#000000 guibg=#000000 gui=none
"hi ErrorMsg
hi Number guifg=#fce94f
hi Folded guibg=#000000 guifg=#FFFFFF gui=bold
hi vimFold guibg=#000000 guifg=#FFFFFF gui=bold
hi FoldColumn guibg=#000000 guifg=#FFFFFF gui=bold
hi LineNr guifg=#555753 guibg=#000000
hi NonText guifg=#555753 guibg=#000000
hi Folded guifg=#555753 guibg=#000000 gui=bold
hi FoldeColumn guifg=#555753 guibg=#000000 gui=bold
"hi VertSplit guibg=#ffffff guifg=#ffffff gui=none
hi VertSplit guibg=#c0c0c0 guifg=#c0c0c0 gui=none
hi StatusLine guifg=#000000 guibg=#ffffff gui=none
hi StatusLineNC guifg=#000000 guibg=#C0C0C0 gui=none
hi ModeMsg guifg=#fce94f
hi MoreMsg guifg=#fce94f
hi Visual guifg=#FFFFFF guibg=#3465a4 gui=none
hi VisualNOS guifg=#FFFFFF guibg=#204a87 gui=none
hi IncSearch guibg=#FFFFFF guifg=#ef5939
hi Search guibg=#ad7fa8 guifg=#FFFFFF
hi SpecialKey guifg=#8ae234
hi Title guifg=#ef5939
hi WarningMsg guifg=#ef5939
hi Number guifg=#fcaf3e
hi MatchParen guibg=#ad7fa8 guifg=#FFFFFF
hi Comment guifg=#888a85
hi Constant guifg=#ef5939 gui=none
hi String guifg=#fce94f
hi Identifier guifg=#729fcf
hi Statement guifg=#ffffff gui=bold
hi PreProc guifg=#ffffff gui=bold
hi Type guifg=#8ae234 gui=bold
hi Special guifg=#e9b96e
hi Underlined guifg=#ad7fa8 gui=underline
hi Directory guifg=#729fcf
hi Ignore guifg=#555753
hi Todo guifg=#FFFFFF guibg=#ef5939 gui=bold
hi Function guifg=#ad7fa8
"hi WildMenu guibg=#2e3436 guifg=#ffffff gui=bold
"hi WildMenu guifg=#7fbdff guibg=#425c78 gui=none
hi WildMenu guifg=#ffffff guibg=#3465a4 gui=none
hi Pmenu guibg=#000000 guifg=#c0c0c0
hi PmenuSel guibg=#3465a4 guifg=#ffffff
hi PmenuSbar guibg=#444444 guifg=#444444
hi PmenuThumb guibg=#888888 guifg=#888888
hi cppSTLType guifg=#729fcf gui=bold
hi spellBad guisp=#fcaf3e
hi spellCap guisp=#73d216
hi spellRare guisp=#ad7fa8
hi spellLocal guisp=#729fcf
hi link cppSTL Function
hi link Error Todo
hi link Character Number
hi link rubySymbol Number
hi link htmlTag htmlEndTag
"hi link htmlTagName htmlTag
hi link htmlLink Underlined
hi link pythonFunction Identifier
hi link Question Type
hi link CursorIM Cursor
hi link VisualNOS Visual
hi link xmlTag Identifier
hi link xmlTagName Identifier
hi link shDeref Identifier
hi link shVariable Function
hi link rubySharpBang Special
hi link perlSharpBang Special
hi link schemeFunc Statement
"hi link shSpecialVariables Constant
"hi link bashSpecialVariables Constant
" tabs (non gui)
hi TabLine guifg=#AAAAAA guibg=#000000 gui=none
hi TabLineFill guifg=#555753 guibg=#000000 gui=none
hi TabLineSel guifg=#FFFFFF gui=bold
"hi TabLineSel guifg=#FFFFFF guibg=#000000 gui=bold
" vim: sw=4 ts=4

View File

@ -1,75 +0,0 @@
" Vim color file
" Name: DarkTango
" Maintainer: Panos Laganakos <panos.laganakos@gmail.com>
" Version: 0.3
set background=dark
if version > 580
" no guarantees for version 5.8 and below, but this makes it stop
" complaining
hi clear
if exists("syntax_on")
syntax reset
endif
endif
let g:colors_name="darktango"
hi Normal guibg=#2e3436 guifg=#d3d7cf
" {{{ syntax
hi Comment guifg=#555753
hi Title guifg=#eeeeec
hi Underlined guifg=#20b0eF gui=none
hi Statement guifg=#888a85
hi Type guifg=#ce5c00
hi PreProc guifg=#eeeeec
hi Constant guifg=#babdb6
hi Identifier guifg=#ce5c00
hi Special guifg=#eeeeec
hi Ignore guifg=#f57900
hi Todo guibg=#ce5c00 guifg=#eeeeec
"hi Error
"}}}
" {{{ groups
hi Cursor guibg=#babdb6 guifg=#2e3436
"hi CursorIM
hi Directory guifg=#bbd0df
"hi DiffAdd
"hi DiffChange
"hi DiffDelete
"hi DiffText
"hi ErrorMsg
hi VertSplit guibg=#555753 guifg=#2e3436 gui=none
hi Folded guibg=#555753 guifg=#eeeeec
hi FoldColumn guibg=#2e3436 guifg=#555753
hi LineNr guibg=#2e3436 guifg=#555753
hi MatchParen guibg=#babdb6 guifg=#2e3436
hi ModeMsg guifg=#ce5c00
hi MoreMsg guifg=#ce5c00
hi NonText guibg=#2e3436 guifg=#555753
hi Question guifg=#aabbcc
hi Search guibg=#fce94f guifg=#c4a000
hi IncSearch guibg=#c4a000 guifg=#fce94f
hi SpecialKey guifg=#ce5c00
hi StatusLine guibg=#555753 guifg=#eeeeec gui=none
hi StatusLineNC guibg=#555753 guifg=#272334 gui=none
hi Visual guibg=#fcaf3e guifg=#ce5c00
"hi VisualNOS
hi WarningMsg guifg=salmon
"hi WildMenu
"hi Menu
"hi Scrollbar guibg=grey30 guifg=tan
"hi Tooltip
hi Pmenu guibg=#babdb6 guifg=#555753
hi PmenuSel guibg=#eeeeec guifg=#2e3436
hi CursorLine guibg=#212628
" }}}
" {{{ terminal
" TODO
" }}}
"vim: sw=4

View File

@ -1,78 +0,0 @@
" Vim color file
" Maintainer: Ajit J. Thakkar (ajit AT unb DOT ca)
" Last Change: 2005 Nov. 24
" Version: 1.5
" URL: http://www.unb.ca/chem/ajit/vim.htm
" This GUI-only color scheme has a light grey background, and is a softer
" variant of the default and morning color schemes.
set background=light
hi clear
if exists("syntax_on")
syntax reset
endif
let colors_name = "dawn"
hi Normal guifg=Black guibg=grey90
"hi Normal guifg=Black guibg=grey80
" Groups used in the 'highlight' and 'guicursor' options default value.
hi ErrorMsg gui=NONE guifg=Red guibg=Linen
hi IncSearch gui=NONE guifg=fg guibg=LightGreen
hi ModeMsg gui=NONE guifg=fg guibg=bg
hi StatusLine gui=NONE guifg=DarkBlue guibg=grey70
hi StatusLineNC gui=NONE guifg=grey90 guibg=grey70
hi VertSplit gui=NONE guifg=grey70 guibg=grey70
hi Visual gui=reverse guifg=Grey guibg=fg
hi VisualNOS gui=underline,bold guifg=fg guibg=bg
hi DiffText gui=NONE guifg=Blue guibg=LightYellow
"hi DiffText gui=NONE guifg=Blue guibg=MistyRose2
hi Cursor guifg=NONE guibg=Green
hi lCursor guifg=NONE guibg=Cyan
hi Directory guifg=Blue guibg=bg
hi LineNr guifg=Brown guibg=grey80
hi MoreMsg gui=NONE guifg=SeaGreen guibg=bg
hi NonText gui=NONE guifg=Blue guibg=grey80
hi Question gui=NONE guifg=SeaGreen guibg=bg
hi Search guifg=fg guibg=PeachPuff
hi SpecialKey guifg=Blue guibg=bg
hi Title gui=NONE guifg=Magenta guibg=bg
hi WarningMsg guifg=Red guibg=bg
hi WildMenu guifg=fg guibg=PeachPuff
hi Folded guifg=Grey40 guibg=bg " guifg=DarkBlue guibg=LightGrey
hi FoldColumn guifg=DarkBlue guibg=Grey
hi DiffAdd gui=NONE guifg=Blue guibg=LightCyan
hi DiffChange gui=NONE guifg=fg guibg=MistyRose2
hi DiffDelete gui=NONE guifg=LightBlue guibg=LightCyan
" Colors for syntax highlighting
hi Constant gui=NONE guifg=azure4 guibg=bg
"hi Constant gui=NONE guifg=DeepSkyBlue4 guibg=bg
hi String gui=NONE guifg=DarkOliveGreen4 guibg=bg
hi Special gui=NONE guifg=Cyan4 guibg=bg
hi Statement gui=NONE guifg=SlateBlue4 guibg=bg
hi Operator gui=NONE guifg=Purple guibg=bg
hi Ignore gui=NONE guifg=bg guibg=bg
if v:version >= 700
hi SpellBad gui=undercurl guisp=DeepPink1 guifg=fg guibg=bg
hi SpellCap gui=undercurl guisp=Blue guifg=fg guibg=bg
hi SpellRare gui=undercurl guisp=Black guifg=fg guibg=bg
hi SpellLocal gui=undercurl guisp=SeaGreen guifg=fg guibg=bg
endif
hi ToDo gui=NONE guifg=DeepPink1 guibg=bg
hi Error gui=NONE guifg=Red guibg=Linen
hi Comment gui=NONE guifg=RoyalBlue guibg=NONE
hi Identifier gui=NONE guifg=DodgerBlue3 guibg=NONE
"hi Identifier gui=NONE guifg=SteelBlue4 guibg=NONE
hi PreProc gui=NONE guifg=Magenta4 guibg=NONE
hi Type gui=NONE guifg=Brown guibg=NONE
hi Underlined gui=underline guifg=SlateBlue guibg=bg
"if exists("g:minimal_colors")
" hi Statement gui=NONE guifg=fg guibg=bg
" hi Identifier gui=NONE guifg=fg guibg=bg
" hi Type gui=NONE guifg=fg guibg=bg
"endif
" vim: sw=2

View File

@ -1,57 +0,0 @@
" Vim color file
" Maintainer: David Schweikert <dws@ee.ethz.ch>
" Last Change: 2001 Mai 14
" First remove all existing highlighting.
hi clear
let colors_name = "delek"
hi Normal guifg=Black guibg=white
" Groups used in the 'highlight' and 'guicursor' options default value.
hi ErrorMsg term=standout ctermbg=DarkRed ctermfg=White guibg=Red guifg=White
hi IncSearch term=reverse cterm=reverse gui=reverse
hi ModeMsg term=bold cterm=bold gui=bold
hi VertSplit term=reverse cterm=reverse gui=reverse
hi Visual term=reverse cterm=reverse gui=reverse guifg=Grey guibg=fg
hi VisualNOS term=underline,bold cterm=underline,bold gui=underline,bold
hi DiffText term=reverse cterm=bold ctermbg=Red gui=bold guibg=Red
hi Cursor guibg=Green guifg=NONE
hi lCursor guibg=Cyan guifg=NONE
hi Directory term=bold ctermfg=DarkBlue guifg=Blue
hi LineNr term=underline ctermfg=Brown guifg=Brown
hi MoreMsg term=bold ctermfg=DarkGreen gui=bold guifg=SeaGreen
hi Question term=standout ctermfg=DarkGreen gui=bold guifg=SeaGreen
hi Search term=reverse ctermbg=Yellow ctermfg=NONE guibg=Yellow guifg=NONE
hi SpecialKey term=bold ctermfg=DarkBlue guifg=Blue
hi Title term=bold ctermfg=DarkMagenta gui=bold guifg=Magenta
hi WarningMsg term=standout ctermfg=DarkRed guifg=Red
hi WildMenu term=standout ctermbg=Yellow ctermfg=Black guibg=Yellow guifg=Black
hi Folded term=standout ctermbg=Grey ctermfg=DarkBlue guibg=LightGrey guifg=DarkBlue
hi FoldColumn term=standout ctermbg=Grey ctermfg=DarkBlue guibg=Grey guifg=DarkBlue
hi DiffAdd term=bold ctermbg=LightBlue guibg=LightBlue
hi DiffChange term=bold ctermbg=LightMagenta guibg=LightMagenta
hi DiffDelete term=bold ctermfg=Blue ctermbg=LightCyan gui=bold guifg=Blue guibg=LightCyan
hi StatusLine cterm=bold ctermbg=blue ctermfg=yellow guibg=gold guifg=blue
hi StatusLineNC cterm=bold ctermbg=blue ctermfg=black guibg=gold guifg=blue
hi NonText term=bold ctermfg=Blue gui=bold guifg=gray guibg=white
hi Cursor guibg=fg guifg=bg
" syntax highlighting
hi PreProc term=underline cterm=NONE ctermfg=darkmagenta gui=NONE guifg=magenta3
hi Identifier term=underline cterm=NONE ctermfg=darkcyan gui=NONE guifg=cyan4
hi Comment term=NONE cterm=NONE ctermfg=darkred gui=NONE guifg=red2
hi Constant term=underline cterm=NONE ctermfg=darkgreen gui=NONE guifg=green3
hi Special term=bold cterm=NONE ctermfg=lightred gui=NONE guifg=deeppink
hi Statement term=bold cterm=bold ctermfg=blue gui=bold guifg=blue
hi Type term=underline cterm=NONE ctermfg=blue gui=bold guifg=blue
if exists("syntax_on")
let syntax_cmd = "enable"
runtime syntax/syncolor.vim
unlet syntax_cmd
endif
" vim: sw=2

View File

@ -1,141 +0,0 @@
" Maintainer: Tim Aldrich <aldy0169@yahoo.com>
" Last Change: 19 November 2001
set background=dark
hi clear
if exists("syntax_on")
syntax reset
endif
let g:colors_name="denim"
" GUI colors {{{
hi Normal guifg=#FFFFFF guibg=#000038
hi Cursor guifg=#000038 guibg=#FFFFFF
hi CursorIM guifg=#6699CC guibg=#99CCCC
hi Directory guifg=#33CCFF guibg=#6699CC
hi DiffAdd guifg=#FFFFCC guibg=#000038
hi DiffChange guifg=#FF9900 guibg=#000038
hi DiffDelete guifg=#999999 guibg=#000038
hi DiffText guifg=#FFFFFF guibg=#000038
hi ErrorMsg guifg=#FFFFFF guibg=#FF0000
hi VertSplit guifg=#FFFFFF guibg=#000038
hi Folded guifg=#999999 guibg=#003366
hi FoldColumn guifg=#0000EE guibg=#6699CC
hi IncSearch guifg=#FFFF00 guibg=#000038
hi LineNr guifg=#FFFFEE guibg=#000038
hi ModeMsg guifg=#FFFFFF guibg=#000038
hi MoreMsg guifg=#FFFFFF guibg=#000038
hi NonText guifg=#FFFFFF guibg=#00003D
hi Question guifg=#FFFFFF guibg=#0000EE
hi Search guifg=#993300 guibg=#6699CC
hi SpecialKey guifg=#FFFF00 guibg=#000038
hi StatusLine guifg=#FFFFFF guibg=#000038
hi StatusLineNC guifg=#CCCCCC guibg=#000038
hi Title guifg=#FFFFFF guibg=#FF9900
hi Visual guifg=#003366 guibg=#6699FF
hi WarningMsg guifg=#FF0000 guibg=#FFFFFF
hi WildMenu guifg=#000038 guibg=#999999
" }}}
" cterm colors {{{
hi Normal ctermfg=white ctermbg=darkblue
hi Cursor ctermfg=darkblue ctermbg=white
hi CursorIM ctermfg=lightcyan ctermbg=lightcyan
hi Directory ctermfg=lightblue ctermbg=lightcyan
hi DiffAdd ctermfg=LightYellow ctermbg=darkblue
hi DiffChange ctermfg=darkred ctermbg=darkblue
hi DiffDelete ctermfg=grey ctermbg=darkblue
hi DiffText ctermfg=white ctermbg=darkblue
hi ErrorMsg ctermfg=red ctermbg=lightcyan
hi VertSplit ctermfg=white ctermbg=darkblue
hi Folded ctermfg=grey ctermbg=darkblue
hi FoldColumn ctermfg=darkred ctermbg=lightcyan
hi IncSearch ctermfg=yellow ctermbg=darkblue
hi LineNr ctermfg=lightyellow ctermbg=darkblue
hi ModeMsg ctermfg=white ctermbg=darkblue
hi MoreMsg ctermfg=white ctermbg=darkblue
hi NonText ctermfg=white ctermbg=lightblue
hi Question ctermfg=white ctermbg=darkblue
hi Search ctermfg=darkred ctermbg=lightcyan
hi SpecialKey ctermfg=yellow ctermbg=darkblue
hi StatusLine ctermfg=white ctermbg=darkblue
hi StatusLineNC ctermfg=lightgrey ctermbg=darkblue
hi Title ctermfg=white ctermbg=yellow
hi Visual ctermfg=lightblue ctermbg=cyan
hi WarningMsg ctermfg=red ctermbg=white
hi WildMenu ctermfg=darkblue ctermbg=grey
" }}}
" GUI hilight groups {{{
hi Comment guifg=#999999
hi Constant guifg=#33FF33
hi String guifg=#CCCC99
hi Character guifg=#33FF33
hi Number guifg=#33FF33
hi Boolean guifg=#33FF33
hi Float guifg=#33FF33
hi Identifier guifg=#33FFFF
hi Function guifg=#33FFFF
hi Statement guifg=#FFFFCC
hi Conditional guifg=#FFFFCC
hi Repeat guifg=#FFFFCC
hi Label guifg=#33FF99
hi Operator guifg=#FFFF00
hi Keyword guifg=#FFFF00
hi Exception guifg=#FFFFAA
hi PreProc guifg=#66CCFF
hi Include guifg=#66CCFF
hi Define guifg=#66CCFF
hi Macro guifg=#66CCFF
hi PreCondit guifg=#66CCFF
hi Type guifg=#33FF99
hi StorageClass guifg=#33FF99
hi Structure guifg=#33FF99
hi Typedef guifg=#33FF99
hi Special guifg=#00FF00
hi SpecialChar guifg=#00FF00
hi Tag guifg=#CCCCFF
hi Delimiter guifg=#CCCCFF
hi SpecialComment guifg=#FFFFCC
hi Debug guifg=#CC3300
hi Ignore guifg=#0066AA
hi Error guifg=#FF0000 guibg=#FFFFFF
hi Todo guifg=#999999 guibg=#FFFFFF
" }}}
" cterm hilight groups {{{
hi Comment ctermfg=grey
hi Constant ctermfg=lightgreen
hi String ctermfg=brown
hi Character ctermfg=lightgreen
hi Number ctermfg=lightgreen
hi Boolean ctermfg=lightgreen
hi Float ctermfg=lightgreen
hi Identifier ctermfg=lightcyan
hi Function ctermfg=lightcyan
hi Statement ctermfg=lightyellow
hi Conditional ctermfg=lightyellow
hi Repeat ctermfg=lightyellow
hi Label ctermfg=lightcyan
hi Operator ctermfg=yellow
hi Keyword ctermfg=yellow
hi Exception ctermfg=yellow
hi PreProc ctermfg=darkcyan
hi Include ctermfg=darkcyan
hi Define ctermfg=darkcyan
hi Macro ctermfg=darkcyan
hi PreCondit ctermfg=darkcyan
hi Type ctermfg=lightcyan
hi StorageClass ctermfg=lightcyan
hi Structure ctermfg=lightcyan
hi Typedef ctermfg=lightcyan
hi Special ctermfg=green
hi SpecialChar ctermfg=green
hi Tag ctermfg=brown
hi Delimiter ctermfg=brown
hi SpecialComment ctermfg=lightyellow
hi Debug ctermfg=magenta
hi Ignore ctermfg=lightblue
hi Error ctermfg=red ctermbg=white
hi Todo ctermfg=grey ctermbg=white
" }}}

View File

@ -1,105 +0,0 @@
" Vim color file
" Maintainer: Hans Fugal <hans@fugal.net>
" Last Change: $Date: 2003/06/02 19:28:15 $
" URL: http://hans.fugal.net/vim/colors/desert.vim
" cool help screens
" :he group-name
" :he highlight-groups
" :he cterm-colors
set background=dark
if version > 580
" no guarantees for version 5.8 and below, but this makes it stop
" complaining
hi clear
if exists("syntax_on")
syntax reset
endif
endif
let g:colors_name="desert"
hi Normal guifg=White guibg=grey20
" highlight groups
hi Cursor guibg=khaki guifg=slategrey
"hi CursorIM
"hi Directory
"hi DiffAdd
"hi DiffChange
"hi DiffDelete
"hi DiffText
"hi ErrorMsg
hi VertSplit guibg=#c2bfa5 guifg=grey50 gui=none
hi Folded guibg=grey30 guifg=gold
hi FoldColumn guibg=grey30 guifg=tan
hi IncSearch guifg=slategrey guibg=khaki
"hi LineNr
hi ModeMsg guifg=goldenrod
hi MoreMsg guifg=SeaGreen
hi NonText guifg=LightBlue guibg=grey30
hi Question guifg=springgreen
hi Search guibg=peru guifg=wheat
hi SpecialKey guifg=yellowgreen
hi StatusLine guibg=#c2bfa5 guifg=black gui=none
hi StatusLineNC guibg=#c2bfa5 guifg=grey50 gui=none
hi Title guifg=indianred
hi Visual gui=none guifg=khaki guibg=olivedrab
"hi VisualNOS
hi WarningMsg guifg=salmon
"hi WildMenu
"hi Menu
"hi Scrollbar
"hi Tooltip
" syntax highlighting groups
hi Comment guifg=SkyBlue
hi Constant guifg=#ffa0a0
hi Identifier guifg=palegreen
hi Statement guifg=khaki
hi PreProc guifg=indianred
hi Type guifg=darkkhaki
hi Special guifg=navajowhite
"hi Underlined
hi Ignore guifg=grey40
"hi Error
hi Todo guifg=orangered guibg=yellow2
" color terminal definitions
hi SpecialKey ctermfg=darkgreen
hi NonText cterm=bold ctermfg=darkblue
hi Directory ctermfg=darkcyan
hi ErrorMsg cterm=bold ctermfg=7 ctermbg=1
hi IncSearch cterm=NONE ctermfg=yellow ctermbg=green
hi Search cterm=NONE ctermfg=grey ctermbg=blue
hi MoreMsg ctermfg=darkgreen
hi ModeMsg cterm=NONE ctermfg=brown
hi LineNr ctermfg=3
hi Question ctermfg=green
hi StatusLine cterm=bold,reverse
hi StatusLineNC cterm=reverse
hi VertSplit cterm=reverse
hi Title ctermfg=5
hi Visual cterm=reverse
hi VisualNOS cterm=bold,underline
hi WarningMsg ctermfg=1
hi WildMenu ctermfg=0 ctermbg=3
hi Folded ctermfg=darkgrey ctermbg=NONE
hi FoldColumn ctermfg=darkgrey ctermbg=NONE
hi DiffAdd ctermbg=4
hi DiffChange ctermbg=5
hi DiffDelete cterm=bold ctermfg=4 ctermbg=6
hi DiffText cterm=bold ctermbg=1
hi Comment ctermfg=darkcyan
hi Constant ctermfg=brown
hi Special ctermfg=5
hi Identifier ctermfg=6
hi Statement ctermfg=3
hi PreProc ctermfg=5
hi Type ctermfg=2
hi Underlined cterm=underline ctermfg=5
hi Ignore ctermfg=darkgrey
hi Error cterm=bold ctermfg=7 ctermbg=1
"vim: sw=4

View File

@ -1,338 +0,0 @@
" Vim color file
" Maintainer: Henry So, Jr. <henryso@panix.com>
" These are the colors of the "desert" theme by Hans Fugal with a few small
" modifications (namely that I lowered the intensity of the normal white and
" made the normal and nontext backgrounds black), modified to work with 88-
" and 256-color xterms.
"
" The original "desert" theme is available as part of the vim distribution or
" at http://hans.fugal.net/vim/colors/.
"
" The real feature of this color scheme, with a wink to the "inkpot" theme, is
" the programmatic approximation of the gui colors to the palettes of 88- and
" 256- color xterms. The functions that do this (folded away, for
" readability) are calibrated to the colors used for Thomas E. Dickey's xterm
" (version 200), which is available at http://dickey.his.com/xterm/xterm.html.
"
" I struggled with trying to parse the rgb.txt file to avoid the necessity of
" converting color names to #rrggbb form, but decided it was just not worth
" the effort. Maybe someone seeing this may decide otherwise...
set background=dark
if version > 580
" no guarantees for version 5.8 and below, but this makes it stop
" complaining
hi clear
if exists("syntax_on")
syntax reset
endif
endif
let g:colors_name="desert256"
if has("gui_running") || &t_Co == 88 || &t_Co == 256
" functions {{{
" returns an approximate grey index for the given grey level
fun <SID>grey_number(x)
if &t_Co == 88
if a:x < 23
return 0
elseif a:x < 69
return 1
elseif a:x < 103
return 2
elseif a:x < 127
return 3
elseif a:x < 150
return 4
elseif a:x < 173
return 5
elseif a:x < 196
return 6
elseif a:x < 219
return 7
elseif a:x < 243
return 8
else
return 9
endif
else
if a:x < 14
return 0
else
let l:n = (a:x - 8) / 10
let l:m = (a:x - 8) % 10
if l:m < 5
return l:n
else
return l:n + 1
endif
endif
endif
endfun
" returns the actual grey level represented by the grey index
fun <SID>grey_level(n)
if &t_Co == 88
if a:n == 0
return 0
elseif a:n == 1
return 46
elseif a:n == 2
return 92
elseif a:n == 3
return 115
elseif a:n == 4
return 139
elseif a:n == 5
return 162
elseif a:n == 6
return 185
elseif a:n == 7
return 208
elseif a:n == 8
return 231
else
return 255
endif
else
if a:n == 0
return 0
else
return 8 + (a:n * 10)
endif
endif
endfun
" returns the palette index for the given grey index
fun <SID>grey_color(n)
if &t_Co == 88
if a:n == 0
return 16
elseif a:n == 9
return 79
else
return 79 + a:n
endif
else
if a:n == 0
return 16
elseif a:n == 25
return 231
else
return 231 + a:n
endif
endif
endfun
" returns an approximate color index for the given color level
fun <SID>rgb_number(x)
if &t_Co == 88
if a:x < 69
return 0
elseif a:x < 172
return 1
elseif a:x < 230
return 2
else
return 3
endif
else
if a:x < 75
return 0
else
let l:n = (a:x - 55) / 40
let l:m = (a:x - 55) % 40
if l:m < 20
return l:n
else
return l:n + 1
endif
endif
endif
endfun
" returns the actual color level for the given color index
fun <SID>rgb_level(n)
if &t_Co == 88
if a:n == 0
return 0
elseif a:n == 1
return 139
elseif a:n == 2
return 205
else
return 255
endif
else
if a:n == 0
return 0
else
return 55 + (a:n * 40)
endif
endif
endfun
" returns the palette index for the given R/G/B color indices
fun <SID>rgb_color(x, y, z)
if &t_Co == 88
return 16 + (a:x * 16) + (a:y * 4) + a:z
else
return 16 + (a:x * 36) + (a:y * 6) + a:z
endif
endfun
" returns the palette index to approximate the given R/G/B color levels
fun <SID>color(r, g, b)
" get the closest grey
let l:gx = <SID>grey_number(a:r)
let l:gy = <SID>grey_number(a:g)
let l:gz = <SID>grey_number(a:b)
" get the closest color
let l:x = <SID>rgb_number(a:r)
let l:y = <SID>rgb_number(a:g)
let l:z = <SID>rgb_number(a:b)
if l:gx == l:gy && l:gy == l:gz
" there are two possibilities
let l:dgr = <SID>grey_level(l:gx) - a:r
let l:dgg = <SID>grey_level(l:gy) - a:g
let l:dgb = <SID>grey_level(l:gz) - a:b
let l:dgrey = (l:dgr * l:dgr) + (l:dgg * l:dgg) + (l:dgb * l:dgb)
let l:dr = <SID>rgb_level(l:gx) - a:r
let l:dg = <SID>rgb_level(l:gy) - a:g
let l:db = <SID>rgb_level(l:gz) - a:b
let l:drgb = (l:dr * l:dr) + (l:dg * l:dg) + (l:db * l:db)
if l:dgrey < l:drgb
" use the grey
return <SID>grey_color(l:gx)
else
" use the color
return <SID>rgb_color(l:x, l:y, l:z)
endif
else
" only one possibility
return <SID>rgb_color(l:x, l:y, l:z)
endif
endfun
" returns the palette index to approximate the 'rrggbb' hex string
fun <SID>rgb(rgb)
let l:r = ("0x" . strpart(a:rgb, 0, 2)) + 0
let l:g = ("0x" . strpart(a:rgb, 2, 2)) + 0
let l:b = ("0x" . strpart(a:rgb, 4, 2)) + 0
return <SID>color(l:r, l:g, l:b)
endfun
" sets the highlighting for the given group
fun <SID>X(group, fg, bg, attr)
if a:fg != ""
exec "hi " . a:group . " guifg=#" . a:fg . " ctermfg=" . <SID>rgb(a:fg)
endif
if a:bg != ""
exec "hi " . a:group . " guibg=#" . a:bg . " ctermbg=" . <SID>rgb(a:bg)
endif
if a:attr != ""
exec "hi " . a:group . " gui=" . a:attr . " cterm=" . a:attr
endif
endfun
" }}}
call <SID>X("Normal", "cccccc", "000000", "")
" highlight groups
call <SID>X("Cursor", "708090", "f0e68c", "")
"CursorIM
"Directory
"DiffAdd
"DiffChange
"DiffDelete
"DiffText
"ErrorMsg
call <SID>X("VertSplit", "c2bfa5", "7f7f7f", "reverse")
call <SID>X("Folded", "ffd700", "4d4d4d", "")
call <SID>X("FoldColumn", "d2b48c", "4d4d4d", "")
call <SID>X("IncSearch", "708090", "f0e68c", "")
"LineNr
call <SID>X("ModeMsg", "daa520", "", "")
call <SID>X("MoreMsg", "2e8b57", "", "")
call <SID>X("NonText", "addbe7", "000000", "bold")
call <SID>X("Question", "00ff7f", "", "")
call <SID>X("Search", "f5deb3", "cd853f", "")
call <SID>X("SpecialKey", "9acd32", "", "")
call <SID>X("StatusLine", "c2bfa5", "000000", "reverse")
call <SID>X("StatusLineNC", "c2bfa5", "7f7f7f", "reverse")
call <SID>X("Title", "cd5c5c", "", "")
call <SID>X("Visual", "6b8e23", "f0e68c", "reverse")
"VisualNOS
call <SID>X("WarningMsg", "fa8072", "", "")
"WildMenu
"Menu
"Scrollbar
"Tooltip
" syntax highlighting groups
call <SID>X("Comment", "87ceeb", "", "")
call <SID>X("Constant", "ffa0a0", "", "")
call <SID>X("Identifier", "98fb98", "", "none")
call <SID>X("Statement", "f0e68c", "", "bold")
call <SID>X("PreProc", "cd5c5c", "", "")
call <SID>X("Type", "bdb76b", "", "bold")
call <SID>X("Special", "ffdead", "", "")
"Underlined
call <SID>X("Ignore", "666666", "", "")
"Error
call <SID>X("Todo", "ff4500", "eeee00", "")
" delete functions {{{
delf <SID>X
delf <SID>rgb
delf <SID>color
delf <SID>rgb_color
delf <SID>rgb_level
delf <SID>rgb_number
delf <SID>grey_color
delf <SID>grey_level
delf <SID>grey_number
" }}}
else
" color terminal definitions
hi SpecialKey ctermfg=darkgreen
hi NonText cterm=bold ctermfg=darkblue
hi Directory ctermfg=darkcyan
hi ErrorMsg cterm=bold ctermfg=7 ctermbg=1
hi IncSearch cterm=NONE ctermfg=yellow ctermbg=green
hi Search cterm=NONE ctermfg=grey ctermbg=blue
hi MoreMsg ctermfg=darkgreen
hi ModeMsg cterm=NONE ctermfg=brown
hi LineNr ctermfg=3
hi Question ctermfg=green
hi StatusLine cterm=bold,reverse
hi StatusLineNC cterm=reverse
hi VertSplit cterm=reverse
hi Title ctermfg=5
hi Visual cterm=reverse
hi VisualNOS cterm=bold,underline
hi WarningMsg ctermfg=1
hi WildMenu ctermfg=0 ctermbg=3
hi Folded ctermfg=darkgrey ctermbg=NONE
hi FoldColumn ctermfg=darkgrey ctermbg=NONE
hi DiffAdd ctermbg=4
hi DiffChange ctermbg=5
hi DiffDelete cterm=bold ctermfg=4 ctermbg=6
hi DiffText cterm=bold ctermbg=1
hi Comment ctermfg=darkcyan
hi Constant ctermfg=brown
hi Special ctermfg=5
hi Identifier ctermfg=6
hi Statement ctermfg=3
hi PreProc ctermfg=5
hi Type ctermfg=2
hi Underlined cterm=underline ctermfg=5
hi Ignore ctermfg=darkgrey
hi Error cterm=bold ctermfg=7 ctermbg=1
endif
" vim: set fdl=0 fdm=marker:

View File

@ -1,98 +0,0 @@
" Vim color file
" Maintainer: Mingbai <mbbill AT gmail DOT com>
" Last Change: 2006-12-24 20:09:09
set background=dark
if version > 580
" no guarantees for version 5.8 and below, but this makes it stop
" complaining
hi clear
if exists("syntax_on")
syntax reset
endif
endif
let g:colors_name="desertEx"
hi Normal guifg=gray guibg=grey17 gui=none
" AlignCtrl default
" AlignCtrl =P0 guifg guibg gui
" Align
" highlight groups
hi Cursor guifg=black guibg=yellow gui=none
hi ErrorMsg guifg=white guibg=red gui=none
hi VertSplit guifg=gray40 guibg=gray40 gui=none
hi Folded guifg=DarkSlateGray3 guibg=grey30 gui=none
hi FoldColumn guifg=tan guibg=grey30 gui=none
hi IncSearch guifg=#b0ffff guibg=#2050d0
hi LineNr guifg=burlywood3 gui=none
hi ModeMsg guifg=SkyBlue gui=none
hi MoreMsg guifg=SeaGreen gui=none
hi NonText guifg=cyan gui=none
hi Question guifg=springgreen gui=none
hi Search guifg=gray80 guibg=#445599 gui=none
hi SpecialKey guifg=cyan gui=none
hi StatusLine guifg=black guibg=#c2bfa5 gui=bold
hi StatusLineNC guifg=grey guibg=gray40 gui=none
hi Title guifg=indianred gui=none
hi Visual guifg=gray17 guibg=tan1 gui=none
hi WarningMsg guifg=salmon gui=none
hi Pmenu guifg=white guibg=#445599 gui=none
hi PmenuSel guifg=#445599 guibg=gray
hi WildMenu guifg=gray guibg=gray17 gui=none
hi MatchParen guifg=cyan guibg=NONE gui=bold
hi DiffAdd guifg=black guibg=wheat1
hi DiffChange guifg=black guibg=skyblue1
hi DiffText guifg=black guibg=hotpink1 gui=none
hi DiffDelete guibg=gray45 guifg=black gui=none
" syntax highlighting groups
hi Comment guifg=PaleGreen3 gui=italic
hi Constant guifg=salmon gui=none
hi Identifier guifg=Skyblue gui=none
hi Function guifg=Skyblue gui=none
hi Statement guifg=lightgoldenrod2 gui=none
hi PreProc guifg=PaleVioletRed2 gui=none
hi Type guifg=tan1 gui=none
hi Special guifg=aquamarine2 gui=none
hi Ignore guifg=grey40 gui=none
hi Todo guifg=orangered guibg=yellow2 gui=none
" color terminal definitions
hi SpecialKey ctermfg=darkgreen
hi NonText cterm=bold ctermfg=darkblue
hi Directory ctermfg=darkcyan
hi ErrorMsg cterm=bold ctermfg=7 ctermbg=1
hi IncSearch cterm=NONE ctermfg=yellow ctermbg=green
hi Search cterm=NONE ctermfg=grey ctermbg=blue
hi MoreMsg ctermfg=darkgreen
hi ModeMsg cterm=NONE ctermfg=brown
hi LineNr ctermfg=3
hi Question ctermfg=green
hi StatusLine cterm=bold,reverse
hi StatusLineNC cterm=reverse
hi VertSplit cterm=reverse
hi Title ctermfg=5
hi Visual cterm=reverse
hi VisualNOS cterm=bold,underline
hi WarningMsg ctermfg=1
hi WildMenu ctermfg=0 ctermbg=3
hi Folded ctermfg=darkgrey ctermbg=NONE
hi FoldColumn ctermfg=darkgrey ctermbg=NONE
hi DiffAdd ctermbg=4
hi DiffChange ctermbg=5
hi DiffDelete cterm=bold ctermfg=4 ctermbg=6
hi DiffText cterm=bold ctermbg=1
hi Comment ctermfg=darkcyan
hi Constant ctermfg=brown
hi Special ctermfg=5
hi Identifier ctermfg=6
hi Statement ctermfg=3
hi PreProc ctermfg=5
hi Type ctermfg=2
hi Underlined cterm=underline ctermfg=5
hi Ignore ctermfg=darkgrey
hi Error cterm=bold ctermfg=7 ctermbg=1

View File

@ -1,115 +0,0 @@
" Vim color file
" desertedocean v0.5
" Maintainer: Shawn Axsom <axs221@gmail.com>
" [axs221.1l.com]
" desertedocean, a colorscheme using the desert colorscheme as a template, based loosely off of desert, oceandeep, and zenburn.
"
" With thanks to Panos Laganakos
" cool help screens
" :he group-name
" :he highlight-groups
" :he cterm-colors
set background=dark
if version > 580
" no guarantees for version 5.8 and below, but this makes it stop
" complaining
hi clear
if exists("syntax_on")
syntax reset
endif
endif
let g:colors_name="desertedocean"
hi Normal guifg=#FFE0FA guibg=#122130
" syntax highlighting
hi Comment guifg=#6Aa0e0
hi Title guifg=#00aBdF
hi Underlined guifg=#20b0eF gui=none
hi Statement guifg=#eF7a7a
hi Type guifg=#dAa0b0
hi PreProc guifg=#FF7A9a
hi Constant guifg=#EE8aB5 " or #FF707A
hi Identifier guifg=#FFe0bd
hi Special guifg=#8cf0ff
hi Ignore guifg=grey40
hi Todo guifg=orangered guibg=yellow2
"hi Error
"end syntax highlighting
" highlight groups
hi Cursor guibg=#007799 guifg=#00D0D0
"hi CursorIM
hi Directory guifg=#bbd0df
"hi DiffAdd
"hi DiffChange
"hi DiffDelete
"hi DiffText
"hi ErrorMsg
hi VertSplit guibg=#c2bfa5 guifg=grey50 gui=none
hi Folded guibg=#337799 guifg=#BBDDCC
hi FoldColumn guibg=#337799 guifg=#00CCFF
hi LineNr guifg=#CCF0FF guibg=#006688
hi ModeMsg guifg=#00AACC
hi MoreMsg guifg=SeaGreen
hi NonText guifg=#285960 guibg=#2A374A
hi Question guifg=#AABBCC
hi Search guibg=slategrey guifg=#FFDABB
hi IncSearch guifg=slategrey guibg=#FFDFB0
hi SpecialKey guifg=#00CCBB " blue green
hi StatusLine guibg=#00A5EA guifg=#050709 gui=none
hi StatusLineNC guibg=#1079B0 guifg=#272334 gui=none
hi Visual guifg=#008FBF guibg=#33DFEF
"hi VisualNOS
hi WarningMsg guifg=salmon
"hi WildMenu
"hi Menu
"hi Scrollbar guibg=grey30 guifg=tan
"hi Tooltip
hi Pmenu guifg=#6Aa0e0 guibg=#222f3d
hi PmenuSel guifg=#FFFFFF guibg=#0088bb
" color terminal definitions
hi SpecialKey ctermfg=darkgreen
hi NonText cterm=bold ctermfg=darkblue
hi Directory ctermfg=darkcyan
hi ErrorMsg cterm=bold ctermfg=7 ctermbg=1
hi IncSearch cterm=NONE ctermfg=yellow ctermbg=green
hi Search cterm=NONE ctermfg=grey ctermbg=blue
hi MoreMsg ctermfg=darkgreen
hi ModeMsg cterm=NONE ctermfg=brown
hi LineNr ctermfg=3
hi Question ctermfg=green
hi StatusLine cterm=bold,reverse
hi StatusLineNC cterm=reverse
hi VertSplit cterm=reverse
hi Title ctermfg=5
hi Visual cterm=reverse
hi VisualNOS cterm=bold,underline
hi WarningMsg ctermfg=1
hi WildMenu ctermfg=0 ctermbg=3
hi Folded ctermfg=darkgrey ctermbg=NONE
hi FoldColumn ctermfg=darkgrey ctermbg=NONE
hi DiffAdd ctermbg=4
hi DiffChange ctermbg=5
hi DiffDelete cterm=bold ctermfg=4 ctermbg=6
hi DiffText cterm=bold ctermbg=1
hi Comment ctermfg=darkcyan
hi Constant ctermfg=brown
hi Special ctermfg=5
hi Identifier ctermfg=6
hi Statement ctermfg=3
hi PreProc ctermfg=5
hi Type ctermfg=2
hi Underlined cterm=underline ctermfg=5
hi Ignore cterm=bold ctermfg=7
hi Ignore ctermfg=darkgrey
hi Error cterm=bold ctermfg=7 ctermbg=1
"vim: sw=4

View File

@ -1,71 +0,0 @@
" Vim color file
" Maintainer: Ajit J. Thakkar (ajit AT unb DOT ca)
" Last Change: 2005 Nov. 21
" Version: 1.1
" URL: http://www.unb.ca/chem/ajit/vim.htm
" This GUI-only color scheme has a blue-black background
set background=dark
hi clear
if exists("syntax_on")
syntax reset
endif
let colors_name = "dusk"
hi Normal guifg=ivory guibg=#1f3048
" Groups used in the 'highlight' and 'guicursor' options default value.
hi ErrorMsg gui=NONE guifg=Red guibg=Linen
hi IncSearch gui=NONE guibg=LightGreen guifg=Black
hi ModeMsg gui=NONE guifg=fg guibg=bg
hi StatusLine gui=NONE guifg=DarkBlue guibg=Grey
hi StatusLineNC gui=NONE guifg=Grey50 guibg=Grey
hi VertSplit gui=NONE guifg=Grey guibg=Grey
hi Visual gui=reverse guifg=fg guibg=LightSkyBlue4
hi VisualNOS gui=underline guifg=fg guibg=bg
hi DiffText gui=NONE guifg=Yellow guibg=LightSkyBlue4
hi Cursor guibg=Green guifg=Black
hi lCursor guibg=Cyan guifg=Black
hi Directory guifg=LightGreen guibg=bg
hi LineNr guifg=MistyRose3 guibg=bg
hi MoreMsg gui=NONE guifg=SeaGreen guibg=bg
hi NonText gui=NONE guifg=Cyan4 guibg=#102848
hi Question gui=NONE guifg=LimeGreen guibg=bg
hi Search gui=NONE guifg=SkyBlue4 guibg=Bisque
hi SpecialKey guifg=Cyan guibg=bg
hi Title gui=NONE guifg=Yellow2 guibg=bg
hi WarningMsg guifg=Tomato3 guibg=Linen
hi WildMenu gui=NONE guifg=SkyBlue4 guibg=Bisque
"hi Folded guifg=MistyRose2 guibg=bg
hi Folded guifg=MistyRose2 guibg=#102848
hi FoldColumn guifg=DarkBlue guibg=Grey
hi DiffAdd gui=NONE guifg=Blue guibg=LightCyan
hi DiffChange gui=NONE guifg=white guibg=LightCyan4
hi DiffDelete gui=NONE guifg=LightBlue guibg=LightCyan
" Colors for syntax highlighting
hi Constant gui=NONE guifg=MistyRose3 guibg=bg
hi String gui=NONE guifg=LightBlue3 guibg=bg
hi Special gui=NONE guifg=GoldenRod guibg=bg
hi Statement gui=NONE guifg=khaki guibg=bg
"hi Statement gui=NONE guifg=#d7cd7b guibg=bg
hi Operator gui=NONE guifg=Chartreuse guibg=bg
hi Ignore gui=NONE guifg=bg guibg=bg
if v:version >= 700
hi SpellBad gui=undercurl guisp=Red guifg=fg guibg=bg
hi SpellCap gui=undercurl guisp=GoldenRod guifg=fg guibg=bg
hi SpellRare gui=undercurl guisp=Ivory guifg=fg guibg=bg
hi SpellLocal gui=undercurl guisp=SeaGreen guifg=fg guibg=bg
endif
hi ToDo gui=NONE guifg=DodgerBlue guibg=bg
hi Error gui=NONE guifg=Red guibg=Linen
hi Comment gui=NONE guifg=SlateGrey guibg=bg
"hi Comment gui=NONE guifg=Lavender guibg=bg
hi Identifier gui=NONE guifg=BlanchedAlmond guibg=bg
hi PreProc gui=NONE guifg=#ffa0a0 guibg=bg
hi Type gui=NONE guifg=NavajoWhite guibg=bg
hi Underlined gui=underline guifg=fg guibg=bg
" vim: sw=2

View File

@ -1,66 +0,0 @@
"--------------------------------------------------------------------
" Name Of File: dw_blue.vim.
" Description: Gvim colorscheme, designed against VIM 7.0 GUI
" By: Steve Cadwallader
" Contact: demwiz@gmail.com
" Credits: Inspiration from the brookstream and redblack schemes.
" Last Change: Saturday, September 17, 2006.
" Installation: Drop this file in your $VIMRUNTIME/colors/ directory.
"--------------------------------------------------------------------
set background=dark
hi clear
if exists("syntax_on")
syntax reset
endif
let g:colors_name="dw_blue"
"--------------------------------------------------------------------
hi Boolean guifg=#0000ff
hi cDefine guifg=#0000ff
hi cInclude guifg=#ffffff
hi Comment guifg=#696969
hi Constant guifg=#0000ff
hi Cursor guibg=#444444 guifg=#ffffff
hi CursorColumn guibg=#000011
hi CursorLine guibg=#000018
hi DiffAdd guibg=#333333 guifg=#0000ff
hi DiffChange guibg=#333333 guifg=#0000ff
hi DiffDelete guibg=#333333 guifg=#0000ff
hi DiffText guibg=#333333 guifg=#ffffff
hi Directory guibg=#000000 guifg=#0000ff
hi ErrorMsg guibg=#ffffff guifg=#000000
hi FoldColumn guibg=#222222 guifg=#ff0000
hi Folded guibg=#222222 guifg=#ff0000
hi Function guibg=#000000 guifg=#0000ff
hi Identifier guibg=#000000 guifg=#0000cc
hi IncSearch gui=none guibg=#0000bb guifg=#000000
hi LineNr guibg=#000000 guifg=#000088
hi MatchParen gui=none guibg=#222222 guifg=#0000ff
hi ModeMsg guibg=#000000 guifg=#0000ff
hi MoreMsg guibg=#000000 guifg=#0000ff
hi NonText guibg=#000000 guifg=#ffffff
hi Normal gui=none guibg=#000000 guifg=#c0c0c0
hi Operator gui=none guifg=#696969
hi PreProc gui=none guifg=#ffffff
hi Question guifg=#0000ff
hi Search gui=none guibg=#0000ff guifg=#000000
hi SignColumn guibg=#111111 guifg=#ffffff
hi Special gui=none guibg=#000000 guifg=#ffffff
hi SpecialKey guibg=#000000 guifg=#0000ff
hi Statement gui=bold guifg=#0000ff
hi StatusLine gui=none guibg=#0000ff guifg=#000000
hi StatusLineNC gui=none guibg=#444444 guifg=#000000
hi String gui=none guifg=#0000bb
hi TabLine gui=none guibg=#444444 guifg=#000000
hi TabLineFill gui=underline guibg=#000000 guifg=#ffffff
hi TabLineSel gui=none guibg=#0000aa guifg=#000000
hi Title gui=none guifg=#0000ff
hi Todo gui=none guibg=#000000 guifg=#ff0000
hi Type gui=none guifg=#ffffff
hi VertSplit gui=none guibg=#000000 guifg=#ffffff
hi Visual guibg=#0000dd guifg=#000000
hi WarningMsg guibg=#888888 guifg=#000000
"- end of colorscheme -----------------------------------------------

View File

@ -1,66 +0,0 @@
"--------------------------------------------------------------------
" Name Of File: dw_cyan.vim.
" Description: Gvim colorscheme, designed against VIM 7.0 GUI
" By: Steve Cadwallader
" Contact: demwiz@gmail.com
" Credits: Inspiration from the brookstream and redblack schemes.
" Last Change: Saturday, September 17, 2006.
" Installation: Drop this file in your $VIMRUNTIME/colors/ directory.
"--------------------------------------------------------------------
set background=dark
hi clear
if exists("syntax_on")
syntax reset
endif
let g:colors_name="dw_cyan"
"--------------------------------------------------------------------
hi Boolean guifg=#00ffff
hi cDefine guifg=#00ffff
hi cInclude guifg=#ffffff
hi Comment guifg=#696969
hi Constant guifg=#00ffff
hi Cursor guibg=#444444 guifg=#ffffff
hi CursorColumn guibg=#001111
hi CursorLine guibg=#001818
hi DiffAdd guibg=#333333 guifg=#00ffff
hi DiffChange guibg=#333333 guifg=#00ffff
hi DiffDelete guibg=#333333 guifg=#00ffff
hi DiffText guibg=#333333 guifg=#ffffff
hi Directory guibg=#000000 guifg=#00ffff
hi ErrorMsg guibg=#ffffff guifg=#000000
hi FoldColumn guibg=#222222 guifg=#ff0000
hi Folded guibg=#222222 guifg=#ff0000
hi Function guibg=#000000 guifg=#00ffff
hi Identifier guibg=#000000 guifg=#00cccc
hi IncSearch gui=none guibg=#00bbbb guifg=#000000
hi LineNr guibg=#000000 guifg=#008888
hi MatchParen gui=none guibg=#222222 guifg=#00ffff
hi ModeMsg guibg=#000000 guifg=#00ffff
hi MoreMsg guibg=#000000 guifg=#00ffff
hi NonText guibg=#000000 guifg=#ffffff
hi Normal gui=none guibg=#000000 guifg=#c0c0c0
hi Operator gui=none guifg=#696969
hi PreProc gui=none guifg=#ffffff
hi Question guifg=#00ffff
hi Search gui=none guibg=#00ffff guifg=#000000
hi SignColumn guibg=#111111 guifg=#ffffff
hi Special gui=none guibg=#000000 guifg=#ffffff
hi SpecialKey guibg=#000000 guifg=#00ffff
hi Statement gui=bold guifg=#00ffff
hi StatusLine gui=none guibg=#00ffff guifg=#000000
hi StatusLineNC gui=none guibg=#444444 guifg=#000000
hi String gui=none guifg=#00bbbb
hi TabLine gui=none guibg=#444444 guifg=#000000
hi TabLineFill gui=underline guibg=#000000 guifg=#ffffff
hi TabLineSel gui=none guibg=#00aaaa guifg=#000000
hi Title gui=none guifg=#00ffff
hi Todo gui=none guibg=#000000 guifg=#ff0000
hi Type gui=none guifg=#ffffff
hi VertSplit gui=none guibg=#000000 guifg=#ffffff
hi Visual guibg=#00dddd guifg=#000000
hi WarningMsg guibg=#888888 guifg=#000000
"- end of colorscheme -----------------------------------------------

View File

@ -1,66 +0,0 @@
"--------------------------------------------------------------------
" Name Of File: dw_green.vim.
" Description: Gvim colorscheme, designed against VIM 7.0 GUI
" By: Steve Cadwallader
" Contact: demwiz@gmail.com
" Credits: Inspiration from the brookstream and redblack schemes.
" Last Change: Saturday, September 17, 2006.
" Installation: Drop this file in your $VIMRUNTIME/colors/ directory.
"--------------------------------------------------------------------
set background=dark
hi clear
if exists("syntax_on")
syntax reset
endif
let g:colors_name="dw_green"
"--------------------------------------------------------------------
hi Boolean guifg=#00ff00
hi cDefine guifg=#00ff00
hi cInclude guifg=#ffffff
hi Comment guifg=#696969
hi Constant guifg=#00ff00
hi Cursor guibg=#444444 guifg=#ffffff
hi CursorColumn guibg=#001100
hi CursorLine guibg=#001800
hi DiffAdd guibg=#333333 guifg=#00ff00
hi DiffChange guibg=#333333 guifg=#00ff00
hi DiffDelete guibg=#333333 guifg=#00ff00
hi DiffText guibg=#333333 guifg=#ffffff
hi Directory guibg=#000000 guifg=#00ff00
hi ErrorMsg guibg=#ffffff guifg=#000000
hi FoldColumn guibg=#222222 guifg=#ff0000
hi Folded guibg=#222222 guifg=#ff0000
hi Function guibg=#000000 guifg=#00ff00
hi Identifier guibg=#000000 guifg=#00bb00
hi IncSearch gui=none guibg=#00bb00 guifg=#000000
hi LineNr guibg=#000000 guifg=#008800
hi MatchParen gui=none guibg=#222222 guifg=#00ff00
hi ModeMsg guibg=#000000 guifg=#00ff00
hi MoreMsg guibg=#000000 guifg=#00ff00
hi NonText guibg=#000000 guifg=#ffffff
hi Normal gui=none guibg=#000000 guifg=#c0c0c0
hi Operator gui=none guifg=#696969
hi PreProc gui=none guifg=#ffffff
hi Question guifg=#00ff00
hi Search gui=none guibg=#00ff00 guifg=#000000
hi SignColumn guibg=#111111 guifg=#ffffff
hi Special gui=none guibg=#000000 guifg=#ffffff
hi SpecialKey guibg=#000000 guifg=#00ff00
hi Statement gui=bold guifg=#00ff00
hi StatusLine gui=none guibg=#008800 guifg=#000000
hi StatusLineNC gui=none guibg=#444444 guifg=#000000
hi String gui=none guifg=#00bb00
hi TabLine gui=none guibg=#444444 guifg=#000000
hi TabLineFill gui=underline guibg=#000000 guifg=#ffffff
hi TabLineSel gui=none guibg=#00aa00 guifg=#000000
hi Title gui=none guifg=#00ff00
hi Todo gui=none guibg=#000000 guifg=#ff0000
hi Type gui=none guifg=#ffffff
hi VertSplit gui=none guibg=#000000 guifg=#ffffff
hi Visual guibg=#00dd00 guifg=#000000
hi WarningMsg guibg=#888888 guifg=#000000
"- end of colorscheme -----------------------------------------------

View File

@ -1,66 +0,0 @@
"--------------------------------------------------------------------
" Name Of File: dw_orange.vim.
" Description: Gvim colorscheme, designed against VIM 7.0 GUI
" By: Steve Cadwallader
" Contact: demwiz@gmail.com
" Credits: Inspiration from the brookstream and redblack schemes.
" Last Change: Saturday, September 17, 2006.
" Installation: Drop this file in your $VIMRUNTIME/colors/ directory.
"--------------------------------------------------------------------
set background=dark
hi clear
if exists("syntax_on")
syntax reset
endif
let g:colors_name="dw_orange"
"--------------------------------------------------------------------
hi Boolean guifg=#ffff00
hi cDefine guifg=#ffff00
hi cInclude guifg=#ffffff
hi Comment guifg=#696969
hi Constant guifg=#ffff00
hi Cursor guibg=#555555 guifg=#000000
hi CursorColumn guibg=#140500
hi CursorLine guibg=#260a00
hi DiffAdd guibg=#333333 guifg=#ffff00
hi DiffChange guibg=#333333 guifg=#ffff00
hi DiffDelete guibg=#333333 guifg=#ffff00
hi DiffText guibg=#333333 guifg=#ffffff
hi Directory guibg=#000000 guifg=#ffffff
hi ErrorMsg guibg=#ffffff guifg=#000000
hi FoldColumn guibg=#222222 guifg=#ff0000
hi Folded guibg=#222222 guifg=#ff0000
hi Function guifg=#ffff00
hi Identifier guibg=#000000 guifg=#d13800
hi IncSearch gui=none guibg=#bf3300 guifg=#000000
hi LineNr guibg=#000000 guifg=#de3b00
hi MatchParen gui=none guibg=#000000 guifg=#ffff00
hi ModeMsg guibg=#000000 guifg=#ff4400
hi MoreMsg guibg=#000000 guifg=#ffff00
hi NonText guibg=#000000 guifg=#ffffff
hi Normal gui=none guibg=#000000 guifg=#c0c0c0
hi Operator gui=none guifg=#696969
hi PreProc gui=none guifg=#ffffff
hi Question guifg=#ffff00
hi Search gui=none guibg=#ff4400 guifg=#000000
hi SignColumn guibg=#111111 guifg=#ffffff
hi Special gui=none guibg=#000000 guifg=#ffa600
hi SpecialKey guibg=#000000 guifg=#ff4400
hi Statement gui=bold guifg=#ff4400
hi StatusLine gui=none guibg=#ff3200 guifg=#000000
hi StatusLineNC gui=none guibg=#444444 guifg=#000000
hi String gui=none guifg=#d13800
hi TabLine gui=none guibg=#555555 guifg=#000000
hi TabLineFill gui=underline guibg=#000000 guifg=#ffffff
hi TabLineSel gui=none guibg=#ff4400 guifg=#000000
hi Title gui=none guifg=#ffffff
hi Todo gui=none guibg=#000000 guifg=#ff0000
hi Type gui=none guifg=#ffffff
hi VertSplit gui=none guibg=#000000 guifg=#ffffff
hi Visual guibg=#d13800 guifg=#000000
hi WarningMsg guibg=#888888 guifg=#000000
"- end of colorscheme -----------------------------------------------

View File

@ -1,66 +0,0 @@
"--------------------------------------------------------------------
" Name Of File: dw_purple.vim.
" Description: Gvim colorscheme, designed against VIM 7.0 GUI
" By: Steve Cadwallader
" Contact: demwiz@gmail.com
" Credits: Inspiration from the brookstream and redblack schemes.
" Last Change: Saturday, September 17, 2006.
" Installation: Drop this file in your $VIMRUNTIME/colors/ directory.
"--------------------------------------------------------------------
set background=dark
hi clear
if exists("syntax_on")
syntax reset
endif
let g:colors_name="dw_purple"
"--------------------------------------------------------------------
hi Boolean guifg=#ff00ff
hi cDefine guifg=#ff00ff
hi cInclude guifg=#ffffff
hi Comment guifg=#696969
hi Constant guifg=#ff00ff
hi Cursor guibg=#444444 guifg=#ffffff
hi CursorColumn guibg=#110011
hi CursorLine guibg=#180018
hi DiffAdd guibg=#333333 guifg=#ff00ff
hi DiffChange guibg=#333333 guifg=#ff00ff
hi DiffDelete guibg=#333333 guifg=#ff00ff
hi DiffText guibg=#333333 guifg=#ffffff
hi Directory guibg=#000000 guifg=#ff00ff
hi ErrorMsg guibg=#ffffff guifg=#000000
hi FoldColumn guibg=#222222 guifg=#ff0000
hi Folded guibg=#222222 guifg=#ff0000
hi Function guibg=#000000 guifg=#ff00ff
hi Identifier guibg=#000000 guifg=#cc00cc
hi IncSearch gui=none guibg=#bb00bb guifg=#000000
hi LineNr guibg=#000000 guifg=#880088
hi MatchParen gui=none guibg=#222222 guifg=#ff00ff
hi ModeMsg guibg=#000000 guifg=#ff00ff
hi MoreMsg guibg=#000000 guifg=#ff00ff
hi NonText guibg=#000000 guifg=#ffffff
hi Normal gui=none guibg=#000000 guifg=#c0c0c0
hi Operator gui=none guifg=#696969
hi PreProc gui=none guifg=#ffffff
hi Question guifg=#ff00ff
hi Search gui=none guibg=#ff00ff guifg=#000000
hi SignColumn guibg=#111111 guifg=#ffffff
hi Special gui=none guibg=#000000 guifg=#ffffff
hi SpecialKey guibg=#000000 guifg=#ff00ff
hi Statement gui=bold guifg=#ff00ff
hi StatusLine gui=none guibg=#ff00ff guifg=#000000
hi StatusLineNC gui=none guibg=#444444 guifg=#000000
hi String gui=none guifg=#bb00bb
hi TabLine gui=none guibg=#444444 guifg=#000000
hi TabLineFill gui=underline guibg=#000000 guifg=#ffffff
hi TabLineSel gui=none guibg=#aa00aa guifg=#000000
hi Title gui=none guifg=#ff00ff
hi Todo gui=none guibg=#000000 guifg=#ff0000
hi Type gui=none guifg=#ffffff
hi VertSplit gui=none guibg=#000000 guifg=#ffffff
hi Visual guibg=#dd00dd guifg=#000000
hi WarningMsg guibg=#888888 guifg=#000000
"- end of colorscheme -----------------------------------------------

View File

@ -1,66 +0,0 @@
"--------------------------------------------------------------------
" Name Of File: dw_red.vim.
" Description: Gvim colorscheme, designed against VIM 7.0 GUI
" By: Steve Cadwallader
" Contact: demwiz@gmail.com
" Credits: Inspiration from the brookstream and redblack schemes.
" Last Change: Saturday, September 17, 2006.
" Installation: Drop this file in your $VIMRUNTIME/colors/ directory.
"--------------------------------------------------------------------
set background=dark
hi clear
if exists("syntax_on")
syntax reset
endif
let g:colors_name="dw_red"
"--------------------------------------------------------------------
hi Boolean guifg=#ff0000
hi cDefine guifg=#ff0000
hi cInclude guifg=#ffffff
hi Comment guifg=#696969
hi Constant guifg=#ff0000
hi Cursor guibg=#444444 guifg=#ffffff
hi CursorColumn guibg=#110000
hi CursorLine guibg=#180000
hi DiffAdd guibg=#333333 guifg=#ff0000
hi DiffChange guibg=#333333 guifg=#ff0000
hi DiffDelete guibg=#333333 guifg=#ff0000
hi DiffText guibg=#333333 guifg=#ffffff
hi Directory guibg=#000000 guifg=#ff0000
hi ErrorMsg guibg=#ffffff guifg=#000000
hi FoldColumn guibg=#222222 guifg=#ff0000
hi Folded guibg=#222222 guifg=#ff0000
hi Function guibg=#000000 guifg=#ff0000
hi Identifier guibg=#000000 guifg=#cc0000
hi IncSearch gui=none guibg=#bb0000 guifg=#000000
hi LineNr guibg=#000000 guifg=#880000
hi MatchParen gui=none guibg=#222222 guifg=#ff0000
hi ModeMsg guibg=#000000 guifg=#ff0000
hi MoreMsg guibg=#000000 guifg=#ff0000
hi NonText guibg=#000000 guifg=#ffffff
hi Normal gui=none guibg=#000000 guifg=#c0c0c0
hi Operator gui=none guifg=#696969
hi PreProc gui=none guifg=#ffffff
hi Question guifg=#ff0000
hi Search gui=none guibg=#ff0000 guifg=#000000
hi SignColumn guibg=#111111 guifg=#ffffff
hi Special gui=none guibg=#000000 guifg=#ffffff
hi SpecialKey guibg=#000000 guifg=#ff0000
hi Statement gui=bold guifg=#ff0000
hi StatusLine gui=none guibg=#ff0000 guifg=#000000
hi StatusLineNC gui=none guibg=#444444 guifg=#000000
hi String gui=none guifg=#bb0000
hi TabLine gui=none guibg=#444444 guifg=#000000
hi TabLineFill gui=underline guibg=#000000 guifg=#ffffff
hi TabLineSel gui=none guibg=#aa0000 guifg=#000000
hi Title gui=none guifg=#ff0000
hi Todo gui=none guibg=#000000 guifg=#ff0000
hi Type gui=none guifg=#ffffff
hi VertSplit gui=none guibg=#000000 guifg=#ffffff
hi Visual guibg=#dd0000 guifg=#000000
hi WarningMsg guibg=#888888 guifg=#000000
"- end of colorscheme -----------------------------------------------

View File

@ -1,66 +0,0 @@
"--------------------------------------------------------------------
" Name Of File: dw_yellow.vim.
" Description: Gvim colorscheme, designed against VIM 7.0 GUI
" By: Steve Cadwallader
" Contact: demwiz@gmail.com
" Credits: Inspiration from the brookstream and redblack schemes.
" Last Change: Saturday, September 17, 2006.
" Installation: Drop this file in your $VIMRUNTIME/colors/ directory.
"--------------------------------------------------------------------
set background=dark
hi clear
if exists("syntax_on")
syntax reset
endif
let g:colors_name="dw_yellow"
"--------------------------------------------------------------------
hi Boolean guifg=#ffff00
hi cDefine guifg=#ffff00
hi cInclude guifg=#ffffff
hi Comment guifg=#696969
hi Constant guifg=#ffff00
hi Cursor guibg=#444444 guifg=#ffffff
hi CursorColumn guibg=#111100
hi CursorLine guibg=#181800
hi DiffAdd guibg=#333333 guifg=#ffff00
hi DiffChange guibg=#333333 guifg=#ffff00
hi DiffDelete guibg=#333333 guifg=#ffff00
hi DiffText guibg=#333333 guifg=#ffffff
hi Directory guibg=#000000 guifg=#ffff00
hi ErrorMsg guibg=#ffffff guifg=#000000
hi FoldColumn guibg=#222222 guifg=#ff0000
hi Folded guibg=#222222 guifg=#ff0000
hi Function guibg=#000000 guifg=#ffff00
hi Identifier guibg=#000000 guifg=#cccc00
hi IncSearch gui=none guibg=#bbbb00 guifg=#000000
hi LineNr guibg=#000000 guifg=#888800
hi MatchParen gui=none guibg=#222222 guifg=#ffff00
hi ModeMsg guibg=#000000 guifg=#ffff00
hi MoreMsg guibg=#000000 guifg=#ffff00
hi NonText guibg=#000000 guifg=#ffffff
hi Normal gui=none guibg=#000000 guifg=#c0c0c0
hi Operator gui=none guifg=#696969
hi PreProc gui=none guifg=#ffffff
hi Question guifg=#ffff00
hi Search gui=none guibg=#ffff00 guifg=#000000
hi SignColumn guibg=#111111 guifg=#ffffff
hi Special gui=none guibg=#000000 guifg=#ffffff
hi SpecialKey guibg=#000000 guifg=#ffff00
hi Statement gui=bold guifg=#ffff00
hi StatusLine gui=none guibg=#ffff00 guifg=#000000
hi StatusLineNC gui=none guibg=#444444 guifg=#000000
hi String gui=none guifg=#bbbb00
hi TabLine gui=none guibg=#444444 guifg=#000000
hi TabLineFill gui=underline guibg=#000000 guifg=#ffffff
hi TabLineSel gui=none guibg=#aaaa00 guifg=#000000
hi Title gui=none guifg=#ffff00
hi Todo gui=none guibg=#000000 guifg=#ff0000
hi Type gui=none guifg=#ffffff
hi VertSplit gui=none guibg=#000000 guifg=#ffffff
hi Visual guibg=#dddd00 guifg=#000000
hi WarningMsg guibg=#888888 guifg=#000000
"- end of colorscheme -----------------------------------------------

View File

@ -1,159 +0,0 @@
hi clear
if exists("syntax_on")
syntax reset
endif
let colors_name = "earendel"
execute "command! -nargs=1 Colo set background=<args>"
if &background == "light"
hi Normal ctermbg=White ctermfg=Black guibg=#ffffff guifg=#000000 gui=none
hi Cursor guibg=#000000 guifg=#ffffff gui=none
hi CursorColumn ctermbg=LightGray ctermfg=fg guibg=#dfdfdf gui=none
hi CursorLine ctermbg=LightGray ctermfg=fg guibg=#dfdfdf gui=none
hi DiffAdd guibg=#bae981 guifg=fg gui=none
hi DiffChange guibg=#8495e6 guifg=fg gui=none
hi DiffDelete guibg=#ff95a5 guifg=fg gui=none
hi DiffText guibg=#b9c2f0 guifg=fg gui=bold
hi Directory guibg=bg guifg=#272fc2 gui=none
hi ErrorMsg guibg=#ca001f guifg=#ffffff gui=bold
hi FoldColumn ctermbg=bg guibg=bg guifg=#656565 gui=none
hi Folded guibg=#cacaca guifg=#324263 gui=bold
hi IncSearch guibg=#f7b69d gui=none
hi LineNr guibg=bg guifg=#656565 gui=none
hi ModeMsg ctermbg=bg ctermfg=fg guibg=bg guifg=fg gui=bold
hi MoreMsg guibg=bg guifg=#4a4a4a gui=bold
hi NonText ctermfg=DarkGray guibg=bg guifg=#656565 gui=bold
hi Pmenu guibg=#aab8d5 guifg=fg gui=none
hi PmenuSbar guibg=#6a83b5 guifg=fg gui=none
hi PmenuSel guibg=#fee06b guifg=fg gui=none
hi PmenuThumb guibg=#c7cfe2 guifg=fg gui=none
hi Question guibg=bg guifg=#4a4a4a gui=bold
hi Search guibg=#fee481 gui=none
hi SignColumn ctermbg=bg guibg=bg guifg=#656565 gui=none
hi SpecialKey guibg=bg guifg=#844631 gui=none
hi StatusLine ctermbg=Black ctermfg=White guibg=#96aad3 guifg=fg gui=bold
hi StatusLineNC ctermbg=LightGray ctermfg=fg guibg=#bcc7de guifg=#384547 gui=none
if has("spell")
hi SpellBad guisp=#ca001f gui=undercurl
hi SpellCap guisp=#272fc2 gui=undercurl
hi SpellLocal guisp=#0f8674 gui=undercurl
hi SpellRare guisp=#d16c7a gui=undercurl
endif
hi TabLine guibg=#d4d4d4 guifg=fg gui=underline
hi TabLineFill guibg=#d4d4d4 guifg=fg gui=underline
hi TabLineSel guibg=bg guifg=fg gui=bold
hi Title guifg=fg gui=bold
hi VertSplit ctermbg=LightGray ctermfg=fg guibg=#bcc7de guifg=#384547 gui=none
if version >= 700
hi Visual ctermbg=LightGray ctermfg=fg guibg=#b5c5e6 gui=none
else
hi Visual ctermbg=LightGray ctermfg=fg guibg=#b5c5e6 guifg=fg gui=none
endif
hi VisualNOS ctermbg=DarkGray ctermfg=fg guibg=bg guifg=#4069bf gui=bold,underline
hi WarningMsg guibg=bg guifg=#ca001f gui=bold
hi WildMenu guibg=#fedc56 guifg=fg gui=bold
hi Comment guibg=bg guifg=#558817 gui=none
hi Constant guibg=bg guifg=#a8660d gui=none
hi Error guibg=bg guifg=#bf001d gui=none
hi Identifier guibg=bg guifg=#0e7c6b gui=none
hi Ignore guibg=bg guifg=bg gui=none
hi lCursor guibg=#79bf21 guifg=#ffffff gui=none
hi MatchParen guibg=#0f8674 guifg=#ffffff gui=none
hi PreProc guibg=bg guifg=#a33243 gui=none
hi Special guibg=bg guifg=#844631 gui=none
hi Statement guibg=bg guifg=#2239a8 gui=bold
hi Todo guibg=#fedc56 guifg=#512b1e gui=bold
hi Type guibg=bg guifg=#1d318d gui=bold
hi Underlined ctermbg=bg ctermfg=fg guibg=bg guifg=#272fc2 gui=underline
hi htmlBold ctermbg=bg ctermfg=fg guibg=bg guifg=fg gui=bold
hi htmlBoldItalic ctermbg=bg ctermfg=fg guibg=bg guifg=fg gui=bold,italic
hi htmlBoldUnderline ctermbg=bg ctermfg=fg guibg=bg guifg=fg gui=bold,underline
hi htmlBoldUnderlineItalic ctermbg=bg ctermfg=fg guibg=bg guifg=fg gui=bold,underline,italic
hi htmlItalic ctermbg=bg ctermfg=fg guibg=bg guifg=fg gui=italic
hi htmlUnderline ctermbg=bg ctermfg=fg guibg=bg guifg=fg gui=underline
hi htmlUnderlineItalic ctermbg=bg ctermfg=fg guibg=bg guifg=fg gui=underline,italic
else
hi Normal ctermbg=Black ctermfg=LightGray guibg=#181818 guifg=#cacaca gui=none
hi Cursor guibg=#e5e5e5 guifg=#000000 gui=none
hi CursorColumn ctermbg=DarkGray ctermfg=White guibg=#404040 gui=none
hi CursorLine ctermbg=DarkGray ctermfg=White guibg=#404040 gui=none
hi DiffAdd guibg=#558817 guifg=#dadada gui=none
hi DiffChange guibg=#1b2e85 guifg=#dadada gui=none
hi DiffDelete guibg=#9f0018 guifg=#dadada gui=none
hi DiffText guibg=#2540ba guifg=#dadada gui=bold
hi Directory guibg=bg guifg=#8c91e8 gui=none
hi ErrorMsg guibg=#ca001f guifg=#e5e5e5 gui=bold
hi FoldColumn ctermbg=bg guibg=bg guifg=#9a9a9a gui=none
hi Folded guibg=#555555 guifg=#bfcadf gui=bold
hi IncSearch guibg=#a7380e guifg=#dadada gui=none
hi LineNr guibg=bg guifg=#9a9a9a gui=none
hi ModeMsg ctermbg=bg ctermfg=fg guibg=bg guifg=fg gui=bold
hi MoreMsg guibg=bg guifg=#b5b5b5 gui=bold
hi NonText ctermfg=DarkGray guibg=bg guifg=#9a9a9a gui=bold
hi Pmenu guibg=#3d5078 guifg=#dadada gui=none
hi PmenuSbar guibg=#324263 guifg=#dadada gui=none
hi PmenuSel guibg=#f3c201 guifg=#000000 gui=none
hi PmenuThumb guibg=#5c77ad guifg=#dadada gui=none
hi Question guibg=bg guifg=#b5b5b5 gui=bold
hi Search guibg=#947601 guifg=#dadada gui=none
hi SignColumn ctermbg=bg guibg=bg guifg=#9a9a9a gui=none
hi SpecialKey guibg=bg guifg=#d3a901 gui=none
hi StatusLine ctermbg=LightGray ctermfg=Black guibg=#41609e guifg=#e5e5e5 gui=bold
hi StatusLineNC ctermbg=LightGray ctermfg=Black guibg=#35466a guifg=#afbacf gui=none
if has("spell")
hi SpellBad guisp=#ea0023 gui=undercurl
hi SpellCap guisp=#8c91e8 gui=undercurl
hi SpellLocal guisp=#16c9ae gui=undercurl
hi SpellRare guisp=#e09ea8 gui=undercurl
endif
hi TabLine guibg=#4a4a4a guifg=#e5e5e5 gui=underline
hi TabLineFill guibg=#4a4a4a guifg=#e5e5e5 gui=underline
hi TabLineSel guibg=bg guifg=#e5e5e5 gui=bold
hi Title ctermbg=bg ctermfg=White guifg=#e5e5e5 gui=bold
hi VertSplit ctermbg=LightGray ctermfg=Black guibg=#35466a guifg=#afbacf gui=none
if version >= 700
hi Visual ctermbg=LightGray ctermfg=Black guibg=#274278 gui=none
else
hi Visual ctermbg=LightGray ctermfg=Black guibg=#274278 guifg=fg gui=none
endif
hi VisualNOS ctermbg=DarkGray ctermfg=Black guibg=bg guifg=#5c77ad gui=bold,underline
hi WarningMsg guibg=bg guifg=#ea0023 gui=bold
hi WildMenu guibg=#fbca01 guifg=#000000 gui=bold
hi Comment guibg=bg guifg=#77be21 gui=none
hi Constant guibg=bg guifg=#dc8511 gui=none
hi Error guibg=bg guifg=#ea0023 gui=none
hi Identifier guibg=bg guifg=#16c9ae gui=none
hi Ignore guibg=bg guifg=bg gui=none
hi lCursor guibg=#c4ec93 guifg=#000000 gui=none
hi MatchParen guibg=#17d2b7 guifg=#000000 gui=none
hi PreProc guibg=bg guifg=#e09ea8 gui=none
hi Special guibg=bg guifg=#d3a901 gui=none
hi Statement guibg=bg guifg=#a7b4ed gui=bold
hi Todo guibg=#fedc56 guifg=#512b1e gui=bold
hi Type guibg=bg guifg=#95a4ea gui=bold
hi Underlined ctermbg=bg ctermfg=White guibg=bg guifg=#8c91e8 gui=underline
hi htmlBold ctermbg=bg ctermfg=White guibg=bg guifg=fg gui=bold
hi htmlBoldItalic ctermbg=bg ctermfg=White guibg=bg guifg=fg gui=bold,italic
hi htmlBoldUnderline ctermbg=bg ctermfg=White guibg=bg guifg=fg gui=bold,underline
hi htmlBoldUnderlineItalic ctermbg=bg ctermfg=White guibg=bg guifg=fg gui=bold,underline,italic
hi htmlItalic ctermbg=bg ctermfg=White guibg=bg guifg=fg gui=italic
hi htmlUnderline ctermbg=bg ctermfg=White guibg=bg guifg=fg gui=underline
hi htmlUnderlineItalic ctermbg=bg ctermfg=White guibg=bg guifg=fg gui=underline,italic
endif
hi! default link bbcodeBold htmlBold
hi! default link bbcodeBoldItalic htmlBoldItalic
hi! default link bbcodeBoldItalicUnderline htmlBoldUnderlineItalic
hi! default link bbcodeBoldUnderline htmlBoldUnderline
hi! default link bbcodeItalic htmlItalic
hi! default link bbcodeItalicUnderline htmlUnderlineItalic
hi! default link bbcodeUnderline htmlUnderline

View File

@ -1,69 +0,0 @@
" Vim color file
" Maintainer: Shrinath
" Last Change: 2004/09/13 Mon 12:50.
" version: 0.2
set background=dark
hi clear
if exists("syntax_on")
syntax reset
endif
let colors_name = "earth"
hi Normal guifg=#000000 guibg=#99CC99
" Search
hi IncSearch gui=UNDERLINE guifg=#60ffff guibg=#6060ff
hi Search gui=NONE guifg=#ffffff guibg=#6060ff
" Messages
hi ErrorMsg gui=BOLD guifg=#ffffff guibg=#ff40a0
hi WarningMsg gui=BOLD guifg=#ffffff guibg=#ff40a0
hi ModeMsg gui=NONE guifg=#60ffff guibg=NONE
hi MoreMsg gui=NONE guifg=#ffc0ff guibg=NONE
hi Question gui=NONE guifg=#ffff60 guibg=NONE
" Split area
hi StatusLine gui=NONE guifg=#000000 guibg=#d0d0e0
hi StatusLineNC gui=NONE guifg=#606080 guibg=#d0d0e0
hi VertSplit gui=NONE guifg=#606080 guibg=#d0d0e0
hi WildMenu gui=NONE guifg=#000000 guibg=#00c8f0
" Diff
hi DiffText gui=UNDERLINE guifg=#ffff00 guibg=#000000
hi DiffChange gui=NONE guifg=#ffffff guibg=#000000
hi DiffDelete gui=NONE guifg=#60ff60 guibg=#000000
hi DiffAdd gui=NONE guifg=#60ff60 guibg=#000000
" Cursor
hi Cursor gui=NONE guifg=#ffffff guibg=#d86020
hi lCursor gui=NONE guifg=#ffffff guibg=#e000b0
hi CursorIM gui=NONE guifg=#ffffff guibg=#e000b0
" Fold
hi Folded gui=NONE guifg=#ffffff guibg=#0088c0
" hi Folded gui=NONE guifg=#ffffff guibg=#2080d0
hi FoldColumn gui=NONE guifg=#60e0e0 guibg=#006c7f
" Other
hi Directory gui=NONE guifg=#00e0ff guibg=NONE
hi LineNr gui=BOLD guifg=#669966 guibg=NONE
hi NonText gui=BOLD guifg=#00c0c0 guibg=#9999CC
hi SpecialKey gui=NONE guifg=#e0a0ff guibg=NONE
hi Title gui=BOLD guifg=#003300 guibg=NONE
hi Visual gui=NONE guifg=#000000 guibg=#6060d0
" Syntax group
hi Comment gui=NONE guifg=#996666 guibg=NONE
hi Constant gui=NONE guifg=#990066 guibg=NONE
hi Error gui=BOLD guifg=#ffffff guibg=#ff40a0
hi Identifier gui=NONE guifg=#669966 guibg=NONE
hi Ignore gui=NONE guifg=#993300 guibg=NONE
hi PreProc gui=NONE guifg=#009900 guibg=NONE
hi Special gui=NONE guifg=#FF0000 guibg=NONE
hi Statement gui=NONE guifg=#CC9900 guibg=NONE
hi Todo gui=BOLD,UNDERLINE guifg=#993300 guibg=NONE
hi Type gui=NONE guifg=#993300 guibg=NONE
hi Underlined gui=UNDERLINE guifg=#663300 guibg=NONE

View File

@ -1,92 +0,0 @@
" Vim color file
" Maintainer: Juan frias <juandfrias at gmail dot com>
" Last Change: 2007 Feb 25
" Version: 1.0.1
" URL: http://www.axisym3.net/jdany/vim-the-editor/#eclipse
set background=light
highlight clear
if exists("syntax_on")
syntax reset
endif
let g:colors_name = "eclipse"
highlight Normal gui=none guifg=#000000 guibg=#ffffff ctermfg=Gray
" Search
highlight IncSearch gui=underline guifg=#404040 guibg=#e0e040
highlight Search gui=none guifg=#544060 guibg=#f0c0ff ctermbg=1
" Messages
highlight ErrorMsg gui=none guifg=#f8f8f8 guibg=#4040ff
highlight WarningMsg gui=none guifg=#f8f8f8 guibg=#4040ff
highlight ModeMsg gui=none guifg=#d06000 guibg=bg
highlight MoreMsg gui=none guifg=#0090a0 guibg=bg
highlight Question gui=none guifg=#8000ff guibg=bg
" Split area
highlight StatusLine gui=none guifg=#ffffff guibg=#4570aa cterm=bold ctermbg=blue ctermfg=white
highlight StatusLineNC gui=none guifg=#ffffff guibg=#75a0da cterm=none ctermfg=darkgrey ctermbg=blue
highlight VertSplit gui=none guifg=#f8f8f8 guibg=#904838 ctermfg=darkgrey cterm=none ctermbg=blue
highlight WildMenu gui=none guifg=#f8f8f8 guibg=#ff3030
" Diff
highlight DiffText gui=none guifg=red guibg=#ffd0d0 cterm=bold ctermbg=5 ctermfg=3
highlight DiffChange gui=none guifg=black guibg=#ffe7e7 cterm=none ctermbg=5 ctermfg=7
highlight DiffDelete gui=none guifg=bg guibg=#e7e7ff ctermbg=black
highlight DiffAdd gui=none guifg=blue guibg=#e7e7ff ctermbg=green cterm=bold
" Cursor
highlight Cursor gui=none guifg=#ffffff guibg=#0080f0
highlight lCursor gui=none guifg=#ffffff guibg=#8040ff
highlight CursorIM gui=none guifg=#ffffff guibg=#8040ff
" Fold
highlight Folded gui=none guifg=#804030 guibg=#fff0d0 ctermbg=black ctermfg=black cterm=bold
highlight FoldColumn gui=none guifg=#6b6b6b guibg=#e7e7e7 ctermfg=black ctermbg=white
" Popup Menu
highlight PMenu ctermbg=green ctermfg=white
highlight PMenuSel ctermbg=white ctermfg=black
highlight PMenuSBar ctermbg=red ctermfg=white
highlight PMenuThumb ctermbg=white ctermfg=red
" Other
highlight Directory gui=none guifg=#7050ff guibg=bg
highlight LineNr gui=none guifg=#6b6b6b guibg=#eeeeee
highlight NonText gui=none guifg=#707070 guibg=#e7e7e7
highlight SpecialKey gui=none guifg=#c0c0c0 guibg=bg cterm=none ctermfg=4
highlight Title gui=bold guifg=#0033cc guibg=bg
highlight Visual gui=none guifg=#804020 guibg=#ffc0a0 ctermfg=DarkCyan
" Syntax group
highlight Comment gui=none guifg=#236e25 guibg=bg ctermfg=2
highlight Constant gui=none guifg=#00884c guibg=bg ctermfg=White
highlight Error gui=none guifg=#f8f8f8 guibg=#4040ff term=reverse ctermbg=Red ctermfg=White
highlight Identifier gui=none guifg=#b07800 guibg=bg ctermfg=Green
highlight Ignore gui=none guifg=bg guibg=bg ctermfg=black
highlight PreProc gui=none guifg=#683821 guibg=bg ctermfg=Green
highlight Special gui=none guifg=#8040f0 guibg=bg ctermfg=DarkMagenta
highlight Statement gui=none guifg=#b64f90 guibg=bg ctermfg=White
highlight Todo gui=none guifg=#ff5050 guibg=white term=standout ctermbg=Yellow ctermfg=Black
highlight Type gui=bold guifg=#7f0055 guibg=bg ctermfg=LightGreen
highlight Underlined gui=none guifg=blue guibg=bg
highlight String gui=none guifg=#8010a0 guibg=bg ctermfg=Yellow
highlight Number gui=none guifg=#0000ff guibg=bg ctermfg=White
if !has("gui_running")
hi link Float Number
hi link Conditional Repeat
hi link Include PreProc
hi link Macro PreProc
hi link PreCondit PreProc
hi link StorageClass Type
hi link Structure Type
hi link Typedef Type
hi link Tag Special
hi link Delimiter Normal
hi link SpecialComment Special
hi link Debug Special
endif
" vim:ff=unix:

View File

@ -1,69 +0,0 @@
" Vim color file
" Maintainer: Tiza
" Last Change: 2002/10/30 Wed 00:01.
" version: 1.0
" This color scheme uses a dark background.
set background=dark
hi clear
if exists("syntax_on")
syntax reset
endif
let colors_name = "Edo_sea"
hi Normal guifg=#f0f0f8 guibg=#303060
" Search
hi IncSearch gui=UNDERLINE,BOLD guifg=#f0f0f0 guibg=#c030f0
hi Search gui=BOLD guifg=#f0e0f0 guibg=#b020f0
" Messages
hi ErrorMsg gui=BOLD guifg=#f0f0f0 guibg=#f000a0
hi WarningMsg gui=BOLD guifg=#f0f0f0 guibg=#f000a0
hi ModeMsg gui=BOLD guifg=#00e0f0 guibg=NONE
hi MoreMsg gui=BOLD guifg=#00f0f0 guibg=#6060f0
hi Question gui=BOLD guifg=#00f0d0 guibg=NONE
" Split area
hi StatusLine gui=NONE guifg=#000000 guibg=#d0d0e0
hi StatusLineNC gui=NONE guifg=#606080 guibg=#d0d0e0
hi VertSplit gui=NONE guifg=#606080 guibg=#d0d0e0
hi WildMenu gui=NONE guifg=#000000 guibg=#f090f0
" Diff
hi DiffText gui=UNDERLINE guifg=#f0f000 guibg=#000000
hi DiffChange gui=NONE guifg=#f0f0f0 guibg=#000000
hi DiffDelete gui=NONE guifg=#60f060 guibg=#000000
hi DiffAdd gui=NONE guifg=#60f060 guibg=#000000
" Cursor
hi Cursor gui=NONE guifg=#f0f0f0 guibg=#d86020
hi lCursor gui=NONE guifg=#f0f0f0 guibg=#e000b0
hi CursorIM gui=NONE guifg=#f0f0f0 guibg=#e000b0
" Fold
hi Folded gui=NONE guifg=#f0f0f0 guibg=#0080a0
hi FoldColumn gui=NONE guifg=#9090f0 guibg=#3c3c88
" Other
hi Directory gui=NONE guifg=#00f0f0 guibg=NONE
hi LineNr gui=NONE guifg=#7070e8 guibg=NONE
hi NonText gui=BOLD guifg=#8080f0 guibg=NONE
hi SpecialKey gui=BOLD guifg=#60c0f0 guibg=NONE
hi Title gui=BOLD guifg=#f0f0f8 guibg=NONE
hi Visual gui=NONE guifg=#f0f0f0 guibg=#6060f0
" hi VisualNOS gui=NONE guifg=#f0f0f0 guibg=#6060f0
" Syntax group
hi Comment gui=NONE guifg=#b0b0b8 guibg=#343478
hi Constant gui=NONE guifg=#50f0d0 guibg=NONE
hi Error gui=NONE guifg=#f0f0f0 guibg=#c03030
hi Identifier gui=NONE guifg=#d0c0f0 guibg=NONE
hi Ignore gui=NONE guifg=#303070 guibg=NONE
hi PreProc gui=NONE guifg=#f0b0f0 guibg=NONE
hi Special gui=NONE guifg=#d0f050 guibg=NONE
hi Statement gui=NONE guifg=#f0d050 guibg=NONE
hi Todo gui=BOLD,UNDERLINE guifg=#f070e0 guibg=NONE
hi Type gui=NONE guifg=#40f080 guibg=NONE
hi Underlined gui=UNDERLINE,BOLD guifg=#f0f0f8 guibg=NONE

View File

@ -1,105 +0,0 @@
" Vim color file
" Maintainer: Preben Randhol <randhol+ekvoli@pvv.org>
" Last Change: 2008 Feb 24
" License: GNU Public License (GPL) v2
"
" Version 1.6: Added colours for TVO and changed folding colour
highlight clear Normal
set background&
" Remove all existing highlighting and set the defaults.
highlight clear
" Load the syntax highlighting defaults, if it's enabled.
if exists("syntax_on")
syntax reset
endif
let g:colors_name = "ekvoli"
hi Cursor guifg=white gui=reverse,bold
hi iCursor guifg=white gui=reverse,bold
hi rCursor guifg=white gui=reverse,bold
hi vCursor guifg=white gui=reverse,bold
hi lCursor guifg=white gui=reverse,bold
hi nCursor guifg=white gui=reverse,bold
hi CursorLine guibg=#05456f gui=none
hi CursorColumn guibg=#05456f gui=none
hi Normal guifg=white guibg=#001535
hi Error guibg=#6000a0 gui=bold,italic,undercurl guisp=white
hi ErrorMsg guifg=white guibg=#287eff gui=bold,italic
hi Visual guibg=#2080c0 guifg=white gui=bold
hi VisualNOS guibg=#6080a0 guifg=white gui=bold
hi Todo guibg=#00a0d0 guifg=white gui=underline
hi NonText guifg=#6590f0
hi Search guibg=#667799 guifg=white gui=bold
hi IncSearch guibg=#667799 guifg=white gui=bold
hi SpecialKey guifg=#00c0e0
hi Directory guifg=#00c0e0
hi Title guifg=#00a0f0 gui=none
hi WarningMsg guifg=lightblue
hi WildMenu guifg=white guibg=#0080c0
hi Pmenu guifg=white guibg=#005090
hi PmenuSel guifg=white guibg=#3070c0
hi ModeMsg guifg=#22cce2
hi MoreMsg guifg=#22cce2 gui=bold
hi Question guifg=#22cce2 gui=none
hi MatchParen guifg=white guibg=#3070c0 gui=bold
hi StatusLine guifg=white guibg=#104075 gui=bold
hi StatusLineNC guifg=#65a0f0 guibg=#104075 gui=none
hi VertSplit guifg=#305885 guibg=#305885 gui=none
hi Folded guifg=#65b0f6 guibg=#122555 gui=italic
hi FoldColumn guifg=white guibg=#103366 gui=none
hi LineNr guifg=#5080b0 gui=bold
hi DiffAdd guibg=#2080a0 guifg=white gui=bold
hi DiffChange guibg=#2080a0 guifg=white gui=bold
hi DiffDelete guibg=#306080 guifg=white gui=none
hi DiffText guibg=#8070a0 guifg=white gui=bold
hi SpellBad gui=undercurl,italic guisp=#76daff
hi SpellCap gui=undercurl guisp=#7ba2ba
hi SpellRare gui=undercurl guisp=#8080f0
hi SpellLocal gui=undercurl guisp=#c0c0e0
hi Comment guifg=#9590d5 gui=italic
hi Constant guifg=#87c6f0 gui=italic
hi Special guifg=#50a0e0 gui=bold
hi Identifier guifg=#7fe9ff
hi Statement guifg=white gui=bold
hi PreProc guifg=#3f8fff gui=none
hi type guifg=#90bfd0 gui=none
hi Ignore guifg=bg
hi Underlined gui=underline cterm=underline term=underline
" TVO - The Vim Outliner
hi otlTab0 gui=bold,underline guifg=#eeeeff
hi otlTab1 gui=bold,underline guifg=#3377ee
hi otlTab2 gui=bold,underline guifg=#22cae2
hi otlTab3 gui=bold,underline guifg=#9966ff
hi otlTab5 gui=bold,underline guifg=#22aae2
hi otlTab4 gui=bold,underline guifg=#92caf2
hi otlTab7 gui=bold,underline guifg=#22bae2
hi otlTab6 gui=bold,underline guifg=#8866ee
hi otlTab8 gui=bold,underline guifg=#1166ee
hi otlTab9 gui=bold,underline guifg=#99ddee
hi otlTodo gui=bold,underline guifg=white guibg=#00a0d0
hi otlTagRef guifg=white guibg=#8070a0
hi otlTagDef guifg=white guibg=#005090

View File

@ -1,63 +0,0 @@
" Vim color file
" Maintainer: Michael Piefel <piefel@informatik.hu-berlin.de>
" Last Change: 2001 Aug 16
" Licence: Public Domain
" This color scheme uses a White background. It's based on Bram's
" morning theme, but doesn't try to work for non-GUI editing.
"
" It's supposed to look like the Emacs standard colors, at least
" for C. But Emacs has different categories, so it's not very good.
" First remove all existing highlighting.
set background=light
hi clear
if exists("syntax_on")
syntax reset
endif
let colors_name = "emacs"
hi Normal guifg=Black guibg=White
" Groups used in the 'highlight' and 'guicursor' options default value.
hi ErrorMsg guibg=Red guifg=White
hi IncSearch gui=reverse
hi ModeMsg gui=bold
hi StatusLine gui=reverse,bold
hi StatusLineNC gui=reverse
hi VertSplit gui=reverse
hi Visual gui=reverse guifg=Grey guibg=fg
hi VisualNOS gui=underline,bold
hi DiffText gui=bold guibg=Red
hi Cursor guibg=Black guifg=NONE
hi lCursor guibg=Cyan guifg=NONE
hi Directory guifg=Blue
hi LineNr guifg=Brown
hi MoreMsg gui=bold guifg=SeaGreen
hi NonText gui=bold guifg=Blue guibg=grey90
hi Question gui=bold guifg=SeaGreen
hi Search guibg=Yellow guifg=NONE
hi SpecialKey guifg=Blue
hi Title gui=bold guifg=Magenta
hi WarningMsg guifg=Red
hi WildMenu guibg=Yellow guifg=Black
hi Folded guibg=White guifg=DarkBlue
hi FoldColumn guibg=Grey guifg=DarkBlue
hi DiffAdd guibg=LightBlue
hi DiffChange guibg=LightMagenta
hi DiffDelete gui=bold guifg=Blue guibg=LightCyan
" Colors for syntax highlighting
hi Comment guifg=#AC2020 guibg=White
hi Constant guifg=#C28F8F guibg=White
hi PreProc guifg=#D569D5 guibg=White
hi Statement gui=NONE guifg=#9C20EE guibg=White
hi Type guifg=#9C20EE guibg=White
hi Special guifg=SlateBlue guibg=White
hi Ignore guifg=White
" Some specials (override hilinks)
" vim: sw=2

View File

@ -1,79 +0,0 @@
" Vim color file
" Maintainer: Tiza
" Last Change: 2002/03/08 Fri 21:38.
" version: 1.2
" This color scheme uses a light background.
" GUI only
set background=light
hi clear
if exists("syntax_on")
syntax reset
endif
let colors_name = "fine_blue"
hi Normal guifg=#303040 guibg=#f8f8f8
" Search
hi IncSearch gui=UNDERLINE guifg=#303040 guibg=#40ffff
hi Search gui=NONE guifg=#303040 guibg=#ffffa0
" Messages
hi ErrorMsg gui=NONE guifg=#ff0070 guibg=#ffe0f4
hi WarningMsg gui=NONE guifg=#ff0070 guibg=#ffe0f4
hi ModeMsg gui=NONE guifg=#0070ff guibg=NONE
hi MoreMsg gui=NONE guifg=#a800ff guibg=NONE
hi Question gui=NONE guifg=#008050 guibg=NONE
" Split area
hi StatusLine gui=BOLD guifg=#f8f8f8 guibg=#303040
hi StatusLineNC gui=BOLD guifg=#a0a0b0 guibg=#303040
hi VertSplit gui=NONE guifg=#f8f8f8 guibg=#303040
hi WildMenu gui=BOLD guifg=#f8f8f8 guibg=#00aacc
" Diff
hi DiffText gui=NONE guifg=#f83010 guibg=#ffeae0
hi DiffChange gui=NONE guifg=#006800 guibg=#d0ffd0
hi DiffDelete gui=NONE guifg=#2020ff guibg=#c8f2ea
hi DiffAdd gui=NONE guifg=#2020ff guibg=#c8f2ea
" Cursor
hi Cursor gui=NONE guifg=#0000ff guibg=#00e0ff
hi lCursor gui=NONE guifg=#f8f8f8 guibg=#8000ff
hi CursorIM gui=NONE guifg=#f8f8f8 guibg=#8000ff
" Fold
hi Folded gui=NONE guifg=#7800ff guibg=#e0d8ff
hi FoldColumn gui=NONE guifg=#aa60ff guibg=#f0f0f4
" Other
hi Directory gui=NONE guifg=#0000ff guibg=NONE
hi LineNr gui=NONE guifg=#8080a0 guibg=NONE
hi NonText gui=BOLD guifg=#4000ff guibg=#ececf0
hi SpecialKey gui=NONE guifg=#c87000 guibg=NONE
hi Title gui=NONE guifg=#004060 guibg=#c8f0f8
hi Visual gui=NONE guifg=#404060 guibg=#dddde8
" Syntax group
hi Comment gui=NONE guifg=#ff00c0 guibg=NONE
hi Constant gui=NONE guifg=#2020ff guibg=#e8e8ff
hi Error gui=BOLD guifg=#ffffff guibg=#ff4080
hi Identifier gui=NONE guifg=#c800ff guibg=NONE
hi Ignore gui=NONE guifg=#f8f8f8 guibg=NONE
hi PreProc gui=NONE guifg=#0070e6 guibg=NONE
hi Special gui=NONE guifg=#005858 guibg=#ccf7ee
hi Statement gui=NONE guifg=#008858 guibg=NONE
hi Todo gui=NONE guifg=#ff0070 guibg=#ffe0f4
hi Type gui=NONE guifg=#7040ff guibg=NONE
hi Underlined gui=UNDERLINE guifg=#0000ff guibg=NONE
" HTML
hi htmlLink gui=UNDERLINE guifg=#0000ff guibg=NONE
hi htmlBold gui=BOLD
hi htmlBoldItalic gui=BOLD,ITALIC
hi htmlBoldUnderline gui=BOLD,UNDERLINE
hi htmlBoldUnderlineItalic gui=BOLD,UNDERLINE,ITALIC
hi htmlItalic gui=ITALIC
hi htmlUnderline gui=UNDERLINE
hi htmlUnderlineItalic gui=UNDERLINE,ITALIC

View File

@ -1,67 +0,0 @@
" Vim color file
" Maintainer: Rafal Sulejman <rms@poczta.onet.pl>
" Last Change: 2002.06.18
"
" This color scheme uses a black (dark) background.
" First remove all existing highlighting.
set background=dark
hi clear
if exists("syntax_on")
syntax reset
endif
let colors_name = "fnaqevan"
hi Normal guibg=#000000 guifg=#C0C0C0 gui=NONE
" Main colors
hi Constant guibg=#000000 guifg=#00B8E0 gui=NONE
hi Identifier guibg=#000000 guifg=#FFA850 gui=NONE
hi Special guibg=#000000 guifg=#B899C8 gui=NONE
hi Statement guibg=#000000 guifg=#EEE840 gui=NONE
hi Preproc guibg=#000000 guifg=#00B098 gui=NONE
hi Type guibg=#000000 guifg=#40D040 gui=NONE
" Secondary colors
hi Comment guibg=#000000 guifg=#006699 gui=NONE
hi Visual guibg=#005900 guifg=#40C940 gui=NONE
hi VisualNOS guibg=#005900 guifg=#40C940 gui=NONE
hi Search guibg=#707000 guifg=#FFFF00 gui=NONE
hi IncSearch guibg=#D05000 guifg=#FFE000 gui=NONE
" Special colors
hi WarningMsg guibg=#707000 guifg=#FFFF00 gui=NONE
hi MoreMsg guibg=#000070 guifg=#00B8E0 gui=NONE
hi ErrorMsg guibg=#CC0000 guifg=#FFEE00 gui=NONE
hi ModeMsg guibg=#000000 guifg=#E8E8E8 gui=NONE
hi WildMenu guibg=#5f5f5f guifg=#FFEE60 gui=NONE
hi StatusLine guibg=#1f1f1f guifg=#F0F0F0 gui=NONE
hi StatusLineNC guibg=#0f0f0f guifg=#eaea3a gui=NONE
hi VertSplit guibg=#1f1f1f guifg=#F0F0F0 gui=NONE
hi Error guibg=#EE0000 guifg=#FFDD60 gui=NONE
hi Todo guibg=#EEE000 guifg=#000000 gui=NONE
hi Title guibg=#000000 guifg=#ffffff gui=NONE
hi Question guibg=#005900 guifg=#40E840 gui=NONE
hi LineNr guibg=#000000 guifg=#F0B0E0 gui=NONE
hi Directory guibg=#000000 guifg=#D0D0D0 gui=NONE
hi NonText guibg=#000000 guifg=#FFDDAA gui=NONE
hi SpecialKey guibg=#000000 guifg=#FFFFFF gui=NONE
" Diff colors
hi DiffAdd guibg=#505050 guifg=#D0D0D0 gui=NONE
hi DiffChange guibg=#505050 guifg=#D0D0D0 gui=NONE
hi DiffDelete guibg=#505050 guifg=#D0D0D0 gui=NONE
hi DiffText guibg=#707070 guifg=#F0F0F0 gui=NONE
" Folding colors
hi Folded guibg=#703070 guifg=#DDB8DD gui=NONE
hi FoldColumn guibg=#C4153B guifg=#F0F0F0 gui=NONE
" Cursor colors
hi Cursor guibg=#FFFFFF guifg=#000000 gui=NONE
hi icursor guibg=#FFEE00 guifg=#000000 gui=NONE
hi ncursor guibg=#FFFFFF guifg=#000000 gui=NONE
hi rcursor guibg=#00CCFF guifg=#000000 gui=NONE
hi lcursor guibg=#40D040 guifg=#000000 gui=NONE

View File

@ -1,170 +0,0 @@
" Vim color file
" vim: tw=0 ts=4 sw=4
" Maintainer: Thomas R. Kimpton <tomk@emcity.net>
" Last Change: 2001 Nov 8
" This color scheme is meant for the person that spends hours
" and hours and hours and... in vim and wants some contrast to
" help pick things out in the files they edit, but doesn't want
" **C**O**N**T**R**A**S**T**!
set background=light
hi clear
if exists("syntax_on")
syntax reset
endif
let colors_name = "fog"
hi Normal ctermbg=White ctermfg=Black
" 660066 = darkish purple
hi Normal guifg=#660066 guibg=grey80
hi NonText term=bold
hi NonText ctermfg=LightBlue
hi NonText gui=bold guifg=LightBlue guibg=grey80
hi Comment ctermfg=DarkGrey ctermbg=White
" 444499 = darkish blue grey
hi Comment guifg=#444499
hi Constant term=underline
hi Constant ctermfg=Magenta
hi Constant guifg=#7070a0
hi Statement term=bold
hi Statement cterm=bold ctermfg=DarkGreen ctermbg=White
hi Statement guifg=DarkGreen gui=bold
hi identifier ctermfg=DarkGreen
hi identifier guifg=DarkGreen
hi preproc ctermfg=DarkGreen
hi preproc guifg=#408040
hi type ctermfg=DarkBlue
hi type guifg=DarkBlue
hi label ctermfg=yellow
hi label guifg=#c06000
hi operator ctermfg=darkYellow
hi operator guifg=DarkGreen gui=bold
hi StorageClass ctermfg=DarkRed ctermbg=White
hi StorageClass guifg=#a02060 gui=bold
hi Number ctermfg=Blue ctermbg=White
hi Number guifg=Blue
hi Special term=bold
hi Special ctermfg=LightRed
hi Special guifg=#aa8822
hi Cursor ctermbg=DarkMagenta
hi Cursor guibg=#880088 guifg=LightGrey
hi lCursor guibg=Cyan guifg=Black
hi ErrorMsg term=standout
hi ErrorMsg ctermbg=DarkRed ctermfg=White
hi ErrorMsg guibg=DarkRed guifg=White
hi DiffText term=reverse
hi DiffText cterm=bold ctermbg=DarkRed
hi DiffText gui=bold guibg=DarkRed
hi Directory term=bold
hi Directory ctermfg=LightRed
hi Directory guifg=Red gui=underline
hi LineNr term=underline
hi LineNr ctermfg=Yellow
hi LineNr guifg=#ccaa22
hi MoreMsg term=bold
hi MoreMsg ctermfg=LightGreen
hi MoreMsg gui=bold guifg=SeaGreen
hi Question term=standout
hi Question ctermfg=LightGreen
hi Question gui=bold guifg=DarkGreen
hi Search term=reverse
hi Search ctermbg=DarkYellow ctermfg=Black
hi Search guibg=#887722 guifg=Black
hi SpecialKey term=bold
hi SpecialKey ctermfg=LightBlue
hi SpecialKey guifg=Blue
hi SpecialChar ctermfg=DarkGrey ctermbg=White
hi SpecialChar guifg=DarkGrey gui=bold
hi Title term=bold
hi Title ctermfg=LightMagenta
hi Title gui=underline guifg=DarkMagenta
hi WarningMsg term=standout
hi WarningMsg ctermfg=LightRed
hi WarningMsg guifg=DarkBlue guibg=#9999cc
hi WildMenu term=standout
hi WildMenu ctermbg=Yellow ctermfg=Black
hi WildMenu guibg=Yellow guifg=Black gui=underline
hi Folded term=standout
hi Folded ctermbg=LightGrey ctermfg=DarkBlue
hi Folded guibg=LightGrey guifg=DarkBlue
hi FoldColumn term=standout
hi FoldColumn ctermbg=LightGrey ctermfg=DarkBlue
hi FoldColumn guibg=Grey guifg=DarkBlue
hi DiffAdd term=bold
hi DiffAdd ctermbg=DarkBlue
hi DiffAdd guibg=DarkBlue
hi DiffChange term=bold
hi DiffChange ctermbg=DarkMagenta
hi DiffChange guibg=DarkMagenta
hi DiffDelete term=bold
hi DiffDelete ctermfg=Blue ctermbg=DarkCyan
hi DiffDelete gui=bold guifg=Blue guibg=DarkCyan
hi Ignore ctermfg=LightGrey
hi Ignore guifg=grey90
hi IncSearch term=reverse
hi IncSearch cterm=reverse
hi IncSearch gui=reverse
hi ModeMsg term=bold
hi ModeMsg cterm=bold
hi ModeMsg gui=bold
hi StatusLine term=reverse,bold
hi StatusLine cterm=reverse,bold
hi StatusLine gui=reverse,bold
hi StatusLineNC term=reverse
hi StatusLineNC cterm=reverse
hi StatusLineNC gui=reverse
hi VertSplit term=reverse
hi VertSplit cterm=reverse
hi VertSplit gui=reverse
hi Visual term=reverse
hi Visual cterm=reverse
hi Visual gui=reverse guifg=DarkGrey guibg=fg
hi VisualNOS term=underline,bold
hi VisualNOS cterm=underline,bold
hi VisualNOS gui=underline,bold
hi Todo gui=reverse
" vim: sw=2

View File

@ -1,79 +0,0 @@
set background=dark
hi clear
if exists("syntax_on")
syntax reset
endif
let colors_name = "freya"
hi Normal ctermbg=0 ctermfg=7 cterm=none guibg=#2a2a2a guifg=#dcdccc gui=none
hi Cursor guibg=fg guifg=bg gui=none
hi CursorColumn guibg=#3f3f3f gui=none
hi CursorLine guibg=#3f3f3f gui=none
hi DiffAdd guibg=#008b00 guifg=fg gui=none
hi DiffChange guibg=#00008b guifg=fg gui=none
hi DiffDelete guibg=#8b0000 guifg=fg gui=none
hi DiffText guibg=#0000cd guifg=fg gui=bold
hi Directory guibg=bg guifg=#d4b064 gui=none
hi ErrorMsg guibg=bg guifg=#f07070 gui=bold
hi FoldColumn ctermbg=bg guibg=bg guifg=#c2b680 gui=none
hi Folded guibg=#101010 guifg=#c2b680 gui=none
hi IncSearch guibg=#866a4f guifg=fg gui=none
hi LineNr guibg=bg guifg=#9f8f80 gui=none
hi ModeMsg guibg=bg guifg=fg gui=bold
hi MoreMsg guibg=bg guifg=#dabfa5 gui=bold
hi NonText ctermfg=8 guibg=bg guifg=#9f8f80 gui=bold
hi Pmenu guibg=#a78869 guifg=#000000 gui=none
hi PmenuSbar guibg=#B99F86 guifg=fg gui=none
hi PmenuSel guibg=#c0aa94 guifg=bg gui=none
hi PmenuThumb guibg=#f7f7f1 guifg=bg gui=none
hi Question guibg=bg guifg=#dabfa5 gui=bold
hi Search guibg=#c0aa94 guifg=bg gui=none
hi SignColumn ctermbg=bg guibg=bg guifg=#c2b680 gui=none
hi SpecialKey guibg=bg guifg=#d4b064 gui=none
if has("spell")
hi SpellBad guisp=#f07070 gui=undercurl
hi SpellCap guisp=#7070f0 gui=undercurl
hi SpellLocal guisp=#70f0f0 gui=undercurl
hi SpellRare guisp=#f070f0 gui=undercurl
endif
hi StatusLine ctermbg=7 ctermfg=0 guibg=#736559 guifg=#f7f7f1 gui=bold
hi StatusLineNC ctermbg=8 ctermfg=0 guibg=#564d43 guifg=#f7f7f1 gui=none
hi TabLine guibg=#564d43 guifg=#f7f7f1 gui=underline
hi TabLineFill guibg=#564d43 guifg=#f7f7f1 gui=underline
hi TabLineSel guibg=bg guifg=#f7f7f1 gui=bold
hi Title ctermbg=0 ctermfg=15 guifg=#f7f7f1 gui=bold
hi VertSplit ctermbg=7 ctermfg=0 guibg=#564d43 guifg=#f7f7f1 gui=none
if version >= 700
hi Visual ctermbg=7 ctermfg=0 guibg=#5f5f5f gui=none
else
hi Visual ctermbg=7 ctermfg=0 guibg=#5f5f5f guifg=fg gui=none
endif
hi VisualNOS guibg=bg guifg=#c0aa94 gui=bold,underline
hi WarningMsg guibg=bg guifg=#f07070 gui=none
hi WildMenu guibg=#c0aa94 guifg=bg gui=bold
hi Comment guibg=bg guifg=#c2b680 gui=none
hi Constant guibg=bg guifg=#afe091 gui=none
hi Error guibg=bg guifg=#f07070 gui=none
hi Identifier guibg=bg guifg=#dabfa5 gui=none
hi Ignore guibg=bg guifg=bg gui=none
hi lCursor guibg=#c0aa94 guifg=bg gui=none
hi MatchParen guibg=#008b8b gui=none
hi PreProc guibg=bg guifg=#c2aed0 gui=none
hi Special guibg=bg guifg=#d4b064 gui=none
hi Statement guibg=bg guifg=#e0af91 gui=bold
hi Todo guibg=#aed0ae guifg=bg gui=none
hi Type guibg=bg guifg=#dabfa5 gui=bold
hi Underlined guibg=bg guifg=#d4b064 gui=underline
hi htmlBold ctermbg=0 ctermfg=15 guibg=bg guifg=fg gui=bold
hi htmlItalic ctermbg=0 ctermfg=15 guibg=bg guifg=fg gui=italic
hi htmlUnderline ctermbg=0 ctermfg=15 guibg=bg guifg=fg gui=underline
hi htmlBoldItalic ctermbg=0 ctermfg=15 guibg=bg guifg=fg gui=bold,italic
hi htmlBoldUnderline ctermbg=0 ctermfg=15 guibg=bg guifg=fg gui=bold,underline
hi htmlBoldUnderlineItalic ctermbg=0 ctermfg=15 guibg=bg guifg=fg gui=bold,underline,italic
hi htmlUnderlineItalic ctermbg=0 ctermfg=15 guibg=bg guifg=fg gui=underline,italic

View File

@ -1,69 +0,0 @@
" Vim color file
" Maintainer: Tiza
" Last Change: 2002/08/28 Wed 00:28.
" version: 1.3
" This color scheme uses a light background.
set background=light
hi clear
if exists("syntax_on")
syntax reset
endif
let colors_name = "fruit"
hi Normal guifg=#404040 guibg=#f8f8f8
" Search
hi IncSearch gui=UNDERLINE guifg=#404040 guibg=#40ffff
hi Search gui=NONE guifg=#404040 guibg=#ffff60
" Messages
hi ErrorMsg gui=NONE guifg=#ff0000 guibg=#ffe4e4
hi WarningMsg gui=NONE guifg=#ff0000 guibg=#ffe4e4
hi ModeMsg gui=NONE guifg=#ff4080 guibg=NONE
hi MoreMsg gui=NONE guifg=#009070 guibg=NONE
hi Question gui=NONE guifg=#f030d0 guibg=NONE
" Split area
hi StatusLine gui=BOLD guifg=#f8f8f8 guibg=#404040
hi StatusLineNC gui=NONE guifg=#a4a4a4 guibg=#404040
hi VertSplit gui=NONE guifg=#f8f8f8 guibg=#404040
hi WildMenu gui=BOLD guifg=#f8f8f8 guibg=#ff4080
" Diff
hi DiffText gui=NONE guifg=#e04040 guibg=#ffd8d8
hi DiffChange gui=NONE guifg=#408040 guibg=#d0f0d0
hi DiffDelete gui=NONE guifg=#4848ff guibg=#ffd0ff
hi DiffAdd gui=NONE guifg=#4848ff guibg=#ffd0ff
" Cursor
hi Cursor gui=NONE guifg=#0000ff guibg=#00e0ff
hi lCursor gui=NONE guifg=#f8f8f8 guibg=#8000ff
hi CursorIM gui=NONE guifg=#f8f8f8 guibg=#8000ff
" Fold
hi Folded gui=NONE guifg=#20605c guibg=#b8e8dc
hi FoldColumn gui=NONE guifg=#40a098 guibg=#f0f0f0
" Other
hi Directory gui=NONE guifg=#0070b8 guibg=NONE
hi LineNr gui=NONE guifg=#acacac guibg=NONE
hi NonText gui=BOLD guifg=#00a0c0 guibg=#ececec
hi SpecialKey gui=NONE guifg=#4040ff guibg=NONE
hi Title gui=NONE guifg=#0050a0 guibg=#c0e8ff
hi Visual gui=NONE guifg=#484848 guibg=#e0e0e0
" hi VisualNOS gui=NONE guifg=#484848 guibg=#e0e0e0
" Syntax group
hi Comment gui=NONE guifg=#ff4080 guibg=NONE
hi Constant gui=NONE guifg=#8016ff guibg=NONE
hi Error gui=BOLD guifg=#ffffff guibg=#ff4080
hi Identifier gui=NONE guifg=#008888 guibg=NONE
hi Ignore gui=NONE guifg=#f8f8f8 guibg=NONE
hi PreProc gui=NONE guifg=#e06800 guibg=NONE
hi Special gui=NONE guifg=#4a9400 guibg=NONE
hi Statement gui=NONE guifg=#f030d0 guibg=NONE
hi Todo gui=UNDERLINE guifg=#ff0070 guibg=#ffe0f4
hi Type gui=NONE guifg=#0070e6 guibg=NONE
hi Underlined gui=UNDERLINE guifg=fg guibg=NONE

View File

@ -1,27 +0,0 @@
" local syntax file - set colors on a per-machine basis:
" vim: tw=0 ts=4 sw=4
" Vim color file
"
" Created using ColorSchemeCreator
" by Otávio Corręa Cordeiro (cordeiro@exatas.unisinos.br) (2004 July)
"
" Maintainer: Otávio Corręa Cordeiro
" Last Change: 2004 July
set background=light
hi clear
if exists("syntax_on")
syntax reset
endif
let g:colors_name = "ColorSchemeCreator"
hi Normal guifg=#111111 guibg=#FFFFFF
hi comment guifg=#33CC99 gui=italic
hi constant guifg=#CC0099 gui=bold
hi statement guifg=#3399FF gui=bold
hi preproc guifg=#0066FF
hi type guifg=#6600CC gui=bold
hi special guifg=#6600CC
hi operator guifg=#CC0099
hi clear Visual
hi Visual term=reverse cterm=reverse gui=reverse

View File

@ -1,70 +0,0 @@
" vim: tw=0 ts=4 sw=4
" Vim color file
"
" Creator: Ryan Phillips <ryan@trolocsis.com>
" Credits: This color scheme originated from the idea of
" Jeffrey Bakker, the creator of webcpp (http://webcpp.sourceforge.net/).
" URL: http://www.trolocsis.com/vim/golden.vim
"
hi clear
set background=dark
if exists("syntax_on")
syntax reset
endif
let g:colors_name = "golden"
hi Normal ctermfg=yellow guifg=#ddbb00 guibg=black
hi Scrollbar ctermfg=Yellow guifg=#ddbb00 guibg=black
hi Menu ctermfg=darkyellow guifg=#ffddaa guibg=black
hi SpecialKey ctermfg=yellow term=bold cterm=bold guifg=#ffddaa
hi NonText ctermfg=LightBlue term=bold cterm=bold gui=bold guifg=#DBCA98
hi Directory ctermfg=DarkYellow term=bold cterm=bold guifg=#ffddaa
hi ErrorMsg term=standout cterm=bold ctermfg=White ctermbg=Red guifg=White guibg=Red
hi Search term=reverse ctermfg=white ctermbg=red guifg=white guibg=Red
hi MoreMsg term=bold cterm=bold ctermfg=Yellow gui=bold guifg=#ddbb00
hi ModeMsg term=bold ctermfg=DarkYellow cterm=bold gui=bold guifg=Black guibg=#ddbb00
hi LineNr term=underline ctermfg=Brown cterm=bold guifg=#978345
hi Question term=standout cterm=bold ctermfg=Brown gui=bold guifg=#ffddaa
hi StatusLine term=bold,reverse cterm=bold ctermfg=Black ctermbg=DarkGrey gui=bold guifg=#978345 guibg=#2E2E2E
hi StatusLineNC term=reverse ctermfg=white ctermbg=black guifg=grey guibg=#3E3E3E
hi Title term=bold cterm=bold ctermfg=brown gui=bold guifg=#DBCA98
hi Visual term=reverse cterm=reverse gui=reverse
hi WarningMsg term=standout cterm=bold ctermfg=darkblue guifg=Red
hi Cursor guifg=bg guibg=#FF5E06 ctermbg=Brown
hi Comment term=bold cterm=bold ctermfg=brown guifg=#978345
hi Constant term=underline cterm=bold ctermfg=red guifg=Red
hi Special term=bold cterm=bold ctermfg=red guifg=Orange
hi Identifier term=underline ctermfg=lightgray guifg=#DBCA98
hi Statement term=bold cterm=bold ctermfg=lightgreen gui=bold guifg=#ffff60
hi PreProc term=underline ctermfg=brown guifg=#ffddaa
hi Type term=underline cterm=bold ctermfg=lightgreen gui=bold guifg=#FFE13F
hi Error term=reverse ctermfg=darkcyan ctermbg=black guifg=Red guibg=Black
hi Todo term=standout ctermfg=black ctermbg=yellow guifg=#FFE13F guibg=#2E2E2E
hi VertSplit guifg=#2E2E2E guibg=#978345 ctermfg=black ctermbg=darkgrey
hi Folded guifg=orange guibg=#2E2E2E ctermfg=yellow
hi link IncSearch Visual
hi link String Constant
hi link Character Constant
hi link Number Constant
hi link Boolean Constant
hi link Float Number
hi link Function Identifier
hi link Conditional Statement
hi link Repeat Statement
hi link Label Statement
hi link Operator Statement
hi link Keyword Statement
hi link Exception Statement
hi link Include PreProc
hi link Define PreProc
hi link Macro PreProc
hi link PreCondit PreProc
hi link StorageClass Type
hi link Structure Type
hi link Typedef Type
hi link Tag Special
hi link SpecialChar Special
hi link Delimiter Special
hi link SpecialComment Special
hi link Debug Special

View File

@ -1,47 +0,0 @@
" local syntax file - set colors on a per-machine basis:
" vim: tw=0 ts=4 sw=4
" Vim color file
" Maintainer: Jokes
" Last Change:
set background=light
hi clear
if exists("syntax_on")
syntax reset
endif
let g:colors_name = "gor"
hi Normal guifg=white guibg=#005856
hi NonText guifg=white guibg=#005856
hi comment guifg=darkgrey
hi constant guifg=orange
hi identifier guifg=orange gui=NONE
hi statement guifg=cyan gui=NONE
"hi preproc guifg=#6063CD
hi preproc guifg=cyan
hi type guifg=green gui=NONE
hi special guifg=yellow
hi ErrorMsg guifg=Black guibg=Red
hi WarningMsg guifg=Black guibg=Green
hi Error guibg=Red
hi Todo guifg=Black guibg=orange
hi Cursor guibg=#ffffff guifg=#004f50
"hi Cursor guibg=#603070 guifg=#0000ff
hi Folded guifg=#999999 guibg=#006336
hi Search guibg=orange
hi IncSearch gui=NONE guibg=orange
hi LineNr guifg=grey
hi title guifg=grey
"hi StatusLineNC gui=NONE guifg=lightblue guibg=darkblue
hi StatusLineNC gui=NONE guibg=red
hi StatusLine guifg=black guibg=darkgreen
hi label guifg=gold2
hi operator guifg=orange
hi clear Visual
hi Visual guibg=orange guifg=#00932D
hi DiffChange guibg=darkgreen
hi DiffText guibg=olivedrab
hi DiffAdd guibg=slateblue
hi DiffDelete guibg=coral
hi Folded guibg=gray30
hi FoldColumn guibg=gray30 guifg=white
hi cIf0 guifg=gray

View File

@ -1,42 +0,0 @@
" Vim color file
" Maintainer: Stefano deFlorian - \Goth\ <stefano@junglebit.net>
" Last Change: 2003 Dec 9
" Light - Dark :-)
" optimized for TFT panels
set background=dark
hi clear
if exists("syntax_on")
syntax reset
endif
"colorscheme default
let g:colors_name = "gothic"
" hardcoded colors :
" GUI
highlight Normal guifg=#efefef guibg=#000000
highlight Cursor guifg=#000000 guibg=#efefef gui=NONE
highlight Search guifg=#ffff60 guibg=#0000ff gui=NONE
highlight Visual guifg=Grey25 gui=NONE
highlight Special guifg=Orange
highlight Comment guifg=#3030ff
highlight StatusLine guifg=blue guibg=white
highlight Statement guifg=#ffff60 gui=NONE
highlight PreProc guifg=#a0e0a0
highlight Identifier guifg=#00ffff
highlight Constant guifg=#a0a0a0
highlight Type guifg=#a0a0ff gui=NONE
" Console
highlight Normal ctermfg=LightGrey ctermbg=Black
highlight Cursor ctermfg=Black ctermbg=LightGrey cterm=NONE
highlight Search ctermfg=Yellow ctermbg=Blue cterm=NONE
highlight Visual cterm=reverse
highlight Special ctermfg=Brown
highlight Comment ctermfg=Blue
highlight StatusLine ctermfg=blue ctermbg=white
highlight Identifier ctermfg=Cyan
highlight Statement ctermfg=Yellow cterm=NONE
highlight Constant ctermfg=Grey cterm=NONE
highlight Type ctermfg=LightBlue cterm=NONE

View File

@ -1,75 +0,0 @@
" Vim color file
"
set background=dark
hi clear
if exists("syntax_on")
syntax reset
endif
let colors_name = "greyblue"
hi Normal ctermfg=NONE ctermbg=NONE gui=NONE guifg=#b7af9f guibg=#090909
" Search
hi IncSearch ctermfg=NONE ctermbg=NONE gui=NONE guifg=#7800ff guibg=#e0d8ff
hi Search ctermfg=NONE ctermbg=NONE gui=NONE guifg=#7800ff guibg=#e0d8ff
" Messages
hi ErrorMsg ctermfg=NONE ctermbg=NONE gui=NONE guifg=#ffffff guibg=NONE
hi WarningMsg ctermfg=NONE ctermbg=NONE gui=NONE guifg=#ffffff guibg=NONE
hi ModeMsg ctermfg=NONE ctermbg=NONE gui=NONE guifg=#ffffff guibg=NONE
hi MoreMsg ctermfg=NONE ctermbg=NONE gui=NONE guifg=#ffffff guibg=NONE
hi Question ctermfg=NONE ctermbg=NONE gui=NONE guifg=#ffffff guibg=NONE
" Split area
hi StatusLine ctermfg=NONE ctermbg=NONE gui=BOLD guifg=#070707 guibg=#cfcfbf
hi StatusLineNC ctermfg=NONE ctermbg=NONE gui=BOLD guifg=#5f5f4f guibg=#cfcfbf
hi VertSplit ctermfg=NONE ctermbg=NONE gui=NONE guifg=#070707 guibg=#cfcfbf
hi WildMenu ctermfg=NONE ctermbg=NONE gui=BOLD guifg=#070707 guibg=#ff5533
" Diff
hi DiffText ctermfg=NONE ctermbg=NONE gui=NONE guifg=#07cfef guibg=#00151f
hi DiffChange ctermfg=NONE ctermbg=NONE gui=NONE guifg=#ff97ff guibg=#2f002f
hi DiffDelete ctermfg=NONE ctermbg=NONE gui=NONE guifg=#dfdf00 guibg=#370d15
hi DiffAdd ctermfg=NONE ctermbg=NONE gui=NONE guifg=#dfdf00 guibg=#370d15
" Cursor
hi Cursor ctermfg=NONE ctermbg=NONE gui=NONE guifg=#ffff00 guibg=#7fff00
hi lCursor ctermfg=NONE ctermbg=NONE gui=NONE guifg=#070707 guibg=#7fff00
hi CursorIM ctermfg=NONE ctermbg=NONE gui=NONE guifg=#070707 guibg=#7fff00
" Fold
hi Folded ctermfg=NONE ctermbg=NONE gui=NONE guifg=#87ff00 guibg=#1f2700
hi FoldColumn ctermfg=NONE ctermbg=NONE gui=NONE guifg=#559f00 guibg=#0f0f0b
" Other
hi Directory ctermfg=NONE ctermbg=NONE gui=NONE guifg=#aaaaba guibg=NONE
hi LineNr ctermfg=NONE ctermbg=NONE gui=NONE guifg=#7f7f5f guibg=NONE
hi NonText ctermfg=NONE ctermbg=NONE gui=BOLD guifg=#211d1a guibg=#211d1a
hi SpecialKey ctermfg=NONE ctermbg=NONE gui=NONE guifg=#378fff guibg=NONE
hi Title ctermfg=NONE ctermbg=NONE gui=NONE guifg=#ffbf9f guibg=#370f07
hi Visual ctermfg=NONE ctermbg=NONE gui=reverse guifg=#a5a5a5 guibg=#353535
" Syntax group
hi Comment ctermfg=NONE ctermbg=NONE gui=BOLD guifg=#555565 guibg=NONE
hi Constant ctermfg=NONE ctermbg=NONE gui=NONE guifg=#d1bfb1 guibg=#151515
hi Error ctermfg=NONE ctermbg=NONE gui=NONE guifg=#00ffff guibg=NONE
hi Identifier ctermfg=NONE ctermbg=NONE gui=NONE guifg=#aaaaba guibg=NONE
hi Ignore ctermfg=NONE ctermbg=NONE gui=NONE guifg=NONE guibg=NONE
hi PreProc ctermfg=NONE ctermbg=NONE gui=NONE guifg=NONE guibg=NONE
hi Special ctermfg=NONE ctermbg=NONE gui=NONE guifg=#aa1565 guibg=NONE
hi Statement ctermfg=NONE ctermbg=NONE gui=bold guifg=#d1bfb1 guibg=NONE
hi Todo ctermfg=NONE ctermbg=NONE gui=NONE guifg=NONE guibg=NONE
hi Type ctermfg=NONE ctermbg=NONE gui=BOLD guifg=#d1bfb1 guibg=NONE
hi Underlined ctermfg=NONE ctermbg=NONE gui=UNDERLINE guifg=NONE guibg=NONE
" HTML
hi htmlLink gui=UNDERLINE guifg=#ffff00 guibg=NONE
hi htmlBold gui=BOLD
hi htmlBoldItalic gui=BOLD,ITALIC
hi htmlBoldUnderline gui=BOLD,UNDERLINE
hi htmlBoldUnderlineItalic gui=BOLD,UNDERLINE,ITALIC
hi htmlItalic gui=ITALIC
hi htmlUnderline gui=UNDERLINE
hi htmlUnderlineItalic gui=UNDERLINE,ITALIC

View File

@ -1,138 +0,0 @@
" Vim color file
" A version of nuvola.vim colorscheme, original by Dr. J. Pfefferl
" I changed some colors and added some highlights for C and Vim 7
" vim: tw=0 ts=4 sw=4
" Maintainer: Christian Habermann
" Email: christian( at )habermann-net( point )de
" Version: 1.2
" History: 1.2: nicer colors for paren matching
" 1.1: Vim 7 support added (completion, spell checker, paren, tabs)
" 1.0: initial version
"
" Intro {{{1
set background=light
hi clear
if exists("syntax_on")
syntax reset
endif
let g:colors_name = "habiLight"
" Normal {{{1
hi Normal ctermfg=black ctermbg=NONE guifg=black guibg=#F9F5F9
" Search {{{1
hi IncSearch cterm=UNDERLINE ctermfg=Black ctermbg=brown gui=UNDERLINE guifg=Black guibg=#FFE568
hi Search term=reverse cterm=UNDERLINE ctermfg=Black ctermbg=brown gui=NONE guifg=Black guibg=#FFE568
" Messages {{{1
hi ErrorMsg gui=BOLD guifg=#EB1513 guibg=NONE
hi! link WarningMsg ErrorMsg
hi ModeMsg gui=BOLD guifg=#0070ff guibg=NONE
hi MoreMsg guibg=NONE guifg=seagreen
hi! link Question MoreMsg
" Split area {{{1
hi StatusLine term=BOLD,reverse cterm=NONE ctermfg=Yellow ctermbg=DarkGray gui=BOLD guibg=#56A0EE guifg=white
hi StatusLineNC gui=NONE guibg=#56A0EE guifg=#E9E9F4
hi! link VertSplit StatusLineNC
hi WildMenu gui=UNDERLINE guifg=#56A0EE guibg=#E9E9F4
" Diff {{{1
hi DiffText gui=NONE guifg=#f83010 guibg=#ffeae0
hi DiffChange gui=NONE guifg=#006800 guibg=#d0ffd0
hi DiffDelete gui=NONE guifg=#2020ff guibg=#c8f2ea
hi! link DiffAdd DiffDelete
" Cursor {{{1
hi Cursor gui=none guifg=black guibg=orange
"hi lCursor gui=NONE guifg=#f8f8f8 guibg=#8000ff
hi CursorIM gui=NONE guifg=#f8f8f8 guibg=#8000ff
" Fold {{{1
hi Folded gui=NONE guibg=#B5EEB5 guifg=black
"hi FoldColumn gui=NONE guibg=#9FD29F guifg=black
hi! link FoldColumn Folded
" Other {{{1
hi Directory gui=NONE guifg=#0000ff guibg=NONE
hi LineNr gui=NONE guifg=#8080a0 guibg=NONE
hi NonText gui=BOLD guifg=#4000ff guibg=#EFEFF7
"hi SpecialKey gui=NONE guifg=#A35B00 guibg=NONE
hi Title gui=BOLD guifg=#1014AD guibg=NONE
hi Visual term=reverse ctermfg=yellow ctermbg=black gui=NONE guifg=Black guibg=#BDDFFF
hi VisualNOS term=reverse ctermfg=yellow ctermbg=black gui=UNDERLINE guifg=Black guibg=#BDDFFF
" Syntax group {{{1
hi Comment term=BOLD ctermfg=darkgray guifg=darkcyan
hi Constant term=UNDERLINE ctermfg=red guifg=#B91F49
hi Error term=REVERSE ctermfg=15 ctermbg=9 guibg=Red guifg=White
hi Identifier term=UNDERLINE ctermfg=Blue guifg=Blue
hi Number term=UNDERLINE ctermfg=red gui=NONE guifg=#00C226
hi PreProc term=UNDERLINE ctermfg=darkblue guifg=#1071CE
hi Special term=BOLD ctermfg=darkmagenta guifg=red2
hi Statement term=BOLD ctermfg=DarkRed gui=NONE guifg=#F06F00
hi Tag term=BOLD ctermfg=DarkGreen guifg=DarkGreen
hi Todo term=STANDOUT ctermbg=Yellow ctermfg=blue guifg=Blue guibg=Yellow
hi Type term=UNDERLINE ctermfg=Blue gui=NONE guifg=Blue
hi! link String Constant
hi! link Character Constant
hi! link Boolean Constant
hi! link Float Number
hi! link Function Identifier
hi! link Conditional Statement
hi! link Repeat Statement
hi! link Label Statement
hi! link Operator Statement
hi! link Keyword Statement
hi! link Exception Statement
hi! link Include PreProc
hi! link Define PreProc
hi! link Macro PreProc
hi! link PreCondit PreProc
hi! link StorageClass Type
hi! link Structure Type
hi! link Typedef Type
hi! link SpecialChar Special
hi! link Delimiter Special
hi! link SpecialComment Special
hi! link Debug Special
" HTML {{{1
hi htmlLink gui=UNDERLINE guifg=#0000ff guibg=NONE
hi htmlBold gui=BOLD
hi htmlBoldItalic gui=BOLD,ITALIC
hi htmlBoldUnderline gui=BOLD,UNDERLINE
hi htmlBoldUnderlineItalic gui=BOLD,UNDERLINE,ITALIC
hi htmlItalic gui=ITALIC
hi htmlUnderline gui=UNDERLINE
hi htmlUnderlineItalic gui=UNDERLINE,ITALIC
" Tabs {{{1
highlight TabLine term=underline cterm=underline ctermfg=0 ctermbg=7 gui=underline guibg=LightGrey
highlight TabLineFill term=reverse cterm=reverse gui=reverse
highlight TabLineSel term=bold cterm=bold gui=bold
" Spell Checker {{{1
if v:version >= 700
highlight SpellBad term=reverse ctermbg=12 gui=undercurl guisp=Red
highlight SpellCap term=reverse ctermbg=9 gui=undercurl guisp=Blue
highlight SpellRare term=reverse ctermbg=13 gui=undercurl guisp=Magenta
highlight SpellLocale term=underline ctermbg=11 gui=undercurl guisp=DarkCyan
endif
" Completion {{{1
highlight Pmenu ctermbg=13 guifg=Black guibg=#BDDFFF
highlight PmenuSel ctermbg=7 guifg=Black guibg=Orange
highlight PmenuSbar ctermbg=7 guifg=#CCCCCC guibg=#CCCCCC
highlight PmenuThumb cterm=reverse gui=reverse guifg=Black guibg=#AAAAAA
" Misc {{{1
highlight KDE guifg=magenta gui=NONE
highlight mySpecialSymbols guifg=magenta gui=NONE
highlight MatchParen term=reverse ctermbg=11 gui=bold guibg=#B5EEB5 guifg=black
" vim600:foldmethod=marker

View File

@ -1,83 +0,0 @@
" Vim color file {{{1
" Maintainer: hira@users.sourceforge.jp
" Last Change: 2003/11/29 (Sat) 13:28:25.
" Version: 1.2
" This color scheme uses a dark background.
" Happy Hacking color scheme {{{1
set background=dark
hi clear
if exists("syntax_on")
syntax reset
endif
let colors_name = expand("<sfile>:t:r")
let html_my_rendering = 1
" frame & title & message (theme) {{{1
hi VertSplit gui=underline guifg=bg guibg=#051525
hi StatusLine gui=underline guifg=fg guibg=#051525
hi StatusLineNC gui=underline guifg=#2c3c45 guibg=#051525
hi LineNr gui=underline guifg=#54657d guibg=#051525
hi Folded gui=none guifg=#54657d guibg=bg
hi FoldColumn gui=none guifg=#54657d guibg=bg
" title
hi Title gui=underline guifg=fg guibg=#34455d
" message
hi MoreMsg gui=underline guifg=bg guibg=#329858
hi Question gui=underline guifg=bg guibg=#329858
hi Normal gui=none guifg=#7990a4 guibg=#152535
hi NonText gui=underline guifg=#1d2d30
hi NonText guibg=#1d2d30
" cursor {{{1
hi WildMenu gui=underline guifg=bg guibg=#99ccb5
hi Cursor gui=underline guifg=bg guibg=#99ccb5
hi IncSearch gui=underline guifg=bg guibg=#99ccb5
hi CursorIM gui=underline guifg=fg guibg=#006188
hi Search gui=underline guifg=bg guibg=#33669a
hi Visual gui=underline guifg=bg guibg=#667888
" message {{{1
hi ErrorMsg gui=underline guifg=bg guibg=#8cdd66
hi WarningMsg gui=underline guifg=bg guibg=#66cc6a
hi ModeMsg gui=underline guifg=bg guibg=#339599
" inner {{{1
hi Ignore gui=none guifg=bg guibg=bg
hi Todo gui=underline guifg=bg guibg=#66cc6a
hi Error gui=underline guifg=fg guibg=#884422
hi Special gui=none guifg=#66bbb6 guibg=bg
hi SpecialKey gui=none guifg=#6695cc guibg=bg
hi Identifier gui=none guifg=#69be97 guibg=bg
hi Constant gui=none guifg=#22887b guibg=bg
hi Statement gui=none guifg=#74aa66 guibg=bg
hi Comment gui=none guifg=#006188 guibg=bg
hi Underlined gui=underline guifg=#826699 guibg=bg
hi Directory gui=none guifg=#447760 guibg=bg
hi PreProc gui=none guifg=#557767 guibg=bg
hi Type gui=none guifg=#429999 guibg=bg
" diff {{{1
hi DiffText gui=underline guifg=bg guibg=#99ffd0
hi DiffChange gui=underline guifg=bg guibg=#55aa83
hi DiffDelete gui=none guifg=bg guibg=#22a5aa
hi DiffAdd gui=underline guifg=bg guibg=#2ccc22
" html {{{1
hi htmlLink gui=underline guifg=#6696aa guibg=bg
hi htmlBold gui=underline guifg=bg guibg=#74aa66
hi htmlBoldUnderline gui=underline guifg=#74aa66 guibg=bg
hi htmlItalic gui=underline guifg=bg guibg=#44ccc0
hi htmlUnderlineItalic gui=underline guifg=#44ccc0 guibg=bg
hi htmlBoldItalic gui=underline guifg=bg guibg=#33aa40
hi htmlBoldUnderlineItalic gui=underline guifg=#33aa40 guibg=bg
hi htmlUnderline gui=underline guifg=fg guibg=bg
"}}}1
" vim:set nowrap foldmethod=marker expandtab:

View File

@ -1,233 +0,0 @@
" Vim color file {{{1
" Maintainer: hira@users.sourceforge.jp
" Last Change: 2003/11/08 (Sat) 15:09:08.
" Version: 1.3
" This color scheme uses a dark background.
" Options
" format:
" hhcs_<gui|cterm|both>_<theme|all>_<target>="value"
" target:
" linenr
" "light" : underline, fg=black, bg=light<theme>
" "dark" : underline, fg=black, bg=dark<theme>
" "normal" : none, fg=light<theme>, bg=black
" nontext
" "underlined" : underline, fg=dark<theme>, bg=black
" "normal" : none, fg=dark<theme>, bg=black
"
" This is original settings.
" :let hhcs_both_all_linenr ="light"
" :let hhcs_both_all_nontext ="underlined"
"
" This is prototype settings.
" :let hhcs_both_all_linenr ="dark"
" :let hhcs_both_all_nontext ="underlined"
"
" If you don't want to eccentric feature, try this.
" :let hhcs_both_all_linenr ="normal"
" :let hhcs_both_all_nontext ="normal"
"
" Normal, except hhdgray(gui), hhdgreen(cterm).
" :let hhcs_both_all_linenr ="normal"
" :let hhcs_both_all_nontext ="normal"
" :let hhcs_gui_hhdgray_linenr ="light"
" :let hhcs_gui_hhdgray_nontext ="underlined"
" :let hhcs_cterm_hhdgreen_linenr ="dark"
" :let hhcs_cterm_hhdgreen_nontext ="underlined"
"
" For poor cterm
" :let hhcs_cterm_all_linenr ="normal"
" Happy Hacking color scheme ((DARK)) {{{1
set background=dark
hi clear
if exists("syntax_on")
syntax reset
endif
let colors_name = expand("<sfile>:t:r")
let html_my_rendering = 1
" frame & title & message (theme) {{{1
hi NonText gui=UNDERLINE guifg=darkblue guibg=black
hi NonText cterm=UNDERLINE ctermfg=darkblue ctermbg=black
hi Folded gui=NONE guifg=blue guibg=black
hi Folded cterm=NONE ctermfg=blue ctermbg=black
hi FoldColumn gui=NONE guifg=blue guibg=black
hi FoldColumn cterm=NONE ctermfg=blue ctermbg=black
hi StatusLineNC gui=UNDERLINE guifg=black guibg=blue
hi StatusLineNC gui=UNDERLINE ctermfg=black ctermbg=blue
hi LineNr gui=UNDERLINE guifg=black guibg=lightblue
hi LineNr cterm=UNDERLINE ctermfg=black ctermbg=lightblue
hi VertSplit gui=NONE guifg=darkblue guibg=darkblue
hi VertSplit cterm=NONE ctermfg=darkblue ctermbg=darkblue
" title
hi Title gui=UNDERLINE guifg=lightgray guibg=darkblue
hi Title cterm=UNDERLINE ctermfg=lightgray ctermbg=darkblue
" message
hi MoreMsg gui=UNDERLINE guifg=black guibg=blue
hi MoreMsg cterm=UNDERLINE ctermfg=black ctermbg=blue
hi Question gui=UNDERLINE guifg=black guibg=blue
hi Question cterm=UNDERLINE ctermfg=black ctermbg=blue
" cursor {{{1
hi StatusLine gui=UNDERLINE guifg=black guibg=gray
hi StatusLine cterm=UNDERLINE ctermfg=black ctermbg=gray
hi WildMenu gui=UNDERLINE guifg=black guibg=green
hi WildMenu cterm=UNDERLINE ctermfg=black ctermbg=green
hi Cursor gui=UNDERLINE guifg=black guibg=green
hi Cursor cterm=UNDERLINE ctermfg=black ctermbg=green
hi IncSearch gui=UNDERLINE guifg=black guibg=green
hi IncSearch cterm=UNDERLINE ctermfg=black ctermbg=green
hi CursorIM gui=UNDERLINE guifg=black guibg=green
hi CursorIM cterm=UNDERLINE ctermfg=black ctermbg=green
hi Search gui=UNDERLINE guifg=black guibg=yellow
hi Search cterm=UNDERLINE ctermfg=black ctermbg=yellow
hi Visual gui=UNDERLINE guifg=black guibg=gray
hi Visual cterm=UNDERLINE ctermfg=black ctermbg=gray
" message {{{1
hi ErrorMsg gui=UNDERLINE guifg=black guibg=red
hi ErrorMsg cterm=UNDERLINE ctermfg=black ctermbg=red
hi WarningMsg gui=UNDERLINE guifg=black guibg=yellow
hi WarningMsg cterm=UNDERLINE ctermfg=black ctermbg=yellow
hi ModeMsg gui=UNDERLINE guifg=black guibg=green
hi ModeMsg cterm=UNDERLINE ctermfg=black ctermbg=green
" inner {{{1
hi Normal gui=NONE guifg=lightgray guibg=black
hi Normal cterm=NONE ctermfg=lightgray ctermbg=black
hi Ignore gui=NONE guifg=black guibg=black
hi Ignore cterm=NONE ctermfg=black ctermbg=black
hi Todo gui=UNDERLINE guifg=black guibg=red
hi Todo cterm=UNDERLINE ctermfg=black ctermbg=red
hi Error gui=UNDERLINE guifg=lightgray guibg=red
hi Error cterm=UNDERLINE ctermfg=lightgray ctermbg=red
hi Special gui=NONE guifg=lightcyan guibg=black
hi Special cterm=NONE ctermfg=lightcyan ctermbg=black
hi SpecialKey gui=NONE guifg=cyan guibg=black
hi SpecialKey cterm=NONE ctermfg=cyan ctermbg=black
hi Identifier gui=NONE guifg=cyan guibg=black
hi Identifier cterm=NONE ctermfg=cyan ctermbg=black
hi Constant gui=NONE guifg=lightred guibg=black
hi Constant cterm=NONE ctermfg=lightred ctermbg=black
hi Statement gui=NONE guifg=lightyellow guibg=black
hi Statement cterm=NONE ctermfg=lightyellow ctermbg=black
hi Comment gui=NONE guifg=lightblue guibg=black
hi Comment cterm=NONE ctermfg=lightblue ctermbg=black
hi Underlined gui=UNDERLINE guifg=lightblue guibg=black
hi Underlined cterm=UNDERLINE ctermfg=lightblue ctermbg=black
hi Directory gui=NONE guifg=lightgreen guibg=black
hi Directory cterm=NONE ctermfg=lightgreen ctermbg=black
hi PreProc gui=NONE guifg=lightmagenta guibg=black
hi PreProc cterm=NONE ctermfg=lightmagenta ctermbg=black
hi Type gui=NONE guifg=lightgreen guibg=black
hi Type cterm=NONE ctermfg=lightgreen ctermbg=black
" option {{{1
function! s:SetOpt(term, theme, target, default)
let s:opt_{a:term}_{a:target}
\ = exists("g:hhcs_".a:term."_".a:theme."_".a:target)
\ ? g:hhcs_{a:term}_{a:theme}_{a:target}
\ : exists("g:hhcs_".a:term."_all_".a:target)
\ ? g:hhcs_{a:term}_all_{a:target}
\ : exists("g:hhcs_both_all_".a:target)
\ ? g:hhcs_both_all_{a:target}
\ : a:default
endfunction
" LineNr {{{2
" light, dark, normal
call s:SetOpt( "gui", "hhdblue", "linenr", "light")
call s:SetOpt("cterm", "hhdblue", "linenr", "light")
"echo "s:opt_gui_linenr=".s:opt_gui_linenr
if s:opt_gui_linenr == "light"
hi LineNr gui=UNDERLINE guifg=black guibg=lightblue
elseif s:opt_gui_linenr == "dark"
hi LineNr gui=UNDERLINE guifg=black guibg=darkblue
else
hi LineNr gui=NONE guifg=lightblue guibg=black
endif
"echo "s:opt_cterm_linenr=".s:opt_cterm_linenr
if s:opt_cterm_linenr == "light"
hi LineNr cterm=UNDERLINE ctermfg=black ctermbg=lightblue
elseif s:opt_gui_linenr == "dark"
hi LineNr cterm=UNDERLINE ctermfg=black ctermbg=darkblue
else
hi LineNr cterm=NONE ctermfg=lightblue ctermbg=black
endif
" NonText {{{2
" underlined, normal
call s:SetOpt( "gui", "hhdblue", "nontext", "underlined")
call s:SetOpt("cterm", "hhdblue", "nontext", "underlined")
"echo "s:opt_gui_nontext=".s:opt_gui_nontext
if s:opt_gui_nontext == "underlined"
hi NonText gui=UNDERLINE guifg=darkblue guibg=black
else
hi NonText gui=NONE guifg=darkblue guibg=black
endif
"echo "s:opt_cterm_nontext=".s:opt_cterm_nontext
if s:opt_cterm_nontext == "underlined"
hi NonText cterm=UNDERLINE ctermfg=darkblue ctermbg=black
else
hi NonText cterm=NONE ctermfg=darkblue ctermbg=black
endif
" 2}}}
" diff {{{1
hi DiffText gui=UNDERLINE guifg=black guibg=red
hi DiffText cterm=UNDERLINE ctermfg=black ctermbg=red
hi DiffChange gui=UNDERLINE guifg=black guibg=lightgray
hi DiffChange cterm=UNDERLINE ctermfg=black ctermbg=lightgray
hi DiffDelete gui=NONE guifg=black guibg=blue
hi DiffDelete cterm=NONE ctermfg=black ctermbg=blue
hi DiffAdd gui=UNDERLINE guifg=black guibg=cyan
hi DiffAdd cterm=UNDERLINE ctermfg=black ctermbg=cyan
" html {{{1
hi htmlLink gui=UNDERLINE guifg=lightblue guibg=black
hi htmlLink cterm=UNDERLINE ctermfg=lightblue ctermbg=black
hi htmlBold gui=UNDERLINE guifg=black guibg=lightred
hi htmlBold cterm=UNDERLINE ctermfg=black ctermbg=lightred
hi htmlItalic gui=UNDERLINE guifg=black guibg=lightgreen
hi htmlItalic cterm=UNDERLINE ctermfg=black ctermbg=lightgreen
hi htmlBoldItalic gui=UNDERLINE guifg=black guibg=lightblue
hi htmlBoldItalic cterm=UNDERLINE ctermfg=black ctermbg=lightblue
hi htmlUnderline gui=UNDERLINE guifg=lightgray guibg=black
hi htmlUnderline cterm=UNDERLINE ctermfg=lightgray ctermbg=black
hi htmlBoldUnderline gui=UNDERLINE guifg=lightred guibg=black
hi htmlBoldUnderline cterm=UNDERLINE ctermfg=lightred ctermbg=black
hi htmlUnderlineItalic gui=UNDERLINE guifg=lightgreen guibg=black
hi htmlUnderlineItalic cterm=UNDERLINE ctermfg=lightgreen ctermbg=black
hi htmlBoldUnderlineItalic gui=UNDERLINE guifg=lightblue guibg=black
hi htmlBoldUnderlineItalic cterm=UNDERLINE ctermfg=lightblue ctermbg=black
" colors{{{1
" 1 black
" 2 blue
" 3 cyan
" 4 darkblue
" 5 gray
" 6 green
" 7 lightblue
" 8 lightcyan
" 9 lightgray
" 10 lightgreen
" 11 lightmagenta
" 12 lightred
" 13 lightyellow
" 14 red
" 15 yellow
"}}}1
" vim:set nowrap foldmethod=marker expandtab:

View File

@ -1,233 +0,0 @@
" Vim color file {{{1
" Maintainer: hira@users.sourceforge.jp
" Last Change: 2003/11/08 (Sat) 15:09:10.
" Version: 1.3
" This color scheme uses a dark background.
" Options
" format:
" hhcs_<gui|cterm|both>_<theme|all>_<target>="value"
" target:
" linenr
" "light" : underline, fg=black, bg=light<theme>
" "dark" : underline, fg=black, bg=dark<theme>
" "normal" : none, fg=light<theme>, bg=black
" nontext
" "underlined" : underline, fg=dark<theme>, bg=black
" "normal" : none, fg=dark<theme>, bg=black
"
" This is original settings.
" :let hhcs_both_all_linenr ="light"
" :let hhcs_both_all_nontext ="underlined"
"
" This is prototype settings.
" :let hhcs_both_all_linenr ="dark"
" :let hhcs_both_all_nontext ="underlined"
"
" If you don't want to eccentric feature, try this.
" :let hhcs_both_all_linenr ="normal"
" :let hhcs_both_all_nontext ="normal"
"
" Normal, except hhdgray(gui), hhdgreen(cterm).
" :let hhcs_both_all_linenr ="normal"
" :let hhcs_both_all_nontext ="normal"
" :let hhcs_gui_hhdgray_linenr ="light"
" :let hhcs_gui_hhdgray_nontext ="underlined"
" :let hhcs_cterm_hhdgreen_linenr ="dark"
" :let hhcs_cterm_hhdgreen_nontext ="underlined"
"
" For poor cterm
" :let hhcs_cterm_all_linenr ="normal"
" Happy Hacking color scheme ((DARK)) {{{1
set background=dark
hi clear
if exists("syntax_on")
syntax reset
endif
let colors_name = expand("<sfile>:t:r")
let html_my_rendering = 1
" frame & title & message (theme) {{{1
hi NonText gui=UNDERLINE guifg=darkcyan guibg=black
hi NonText cterm=UNDERLINE ctermfg=darkcyan ctermbg=black
hi Folded gui=NONE guifg=darkcyan guibg=black
hi Folded cterm=NONE ctermfg=darkcyan ctermbg=black
hi FoldColumn gui=NONE guifg=darkcyan guibg=black
hi FoldColumn cterm=NONE ctermfg=darkcyan ctermbg=black
hi StatusLineNC gui=UNDERLINE guifg=black guibg=darkcyan
hi StatusLineNC gui=UNDERLINE ctermfg=black ctermbg=darkcyan
hi LineNr gui=UNDERLINE guifg=black guibg=lightcyan
hi LineNr cterm=UNDERLINE ctermfg=black ctermbg=lightcyan
hi VertSplit gui=NONE guifg=darkcyan guibg=darkcyan
hi VertSplit cterm=NONE ctermfg=darkcyan ctermbg=darkcyan
" title
hi Title gui=UNDERLINE guifg=lightgray guibg=darkcyan
hi Title cterm=UNDERLINE ctermfg=lightgray ctermbg=darkcyan
" message
hi MoreMsg gui=UNDERLINE guifg=black guibg=darkcyan
hi MoreMsg cterm=UNDERLINE ctermfg=black ctermbg=darkcyan
hi Question gui=UNDERLINE guifg=black guibg=darkcyan
hi Question cterm=UNDERLINE ctermfg=black ctermbg=darkcyan
" cursor {{{1
hi StatusLine gui=UNDERLINE guifg=black guibg=gray
hi StatusLine cterm=UNDERLINE ctermfg=black ctermbg=gray
hi WildMenu gui=UNDERLINE guifg=black guibg=green
hi WildMenu cterm=UNDERLINE ctermfg=black ctermbg=green
hi Cursor gui=UNDERLINE guifg=black guibg=green
hi Cursor cterm=UNDERLINE ctermfg=black ctermbg=green
hi IncSearch gui=UNDERLINE guifg=black guibg=green
hi IncSearch cterm=UNDERLINE ctermfg=black ctermbg=green
hi CursorIM gui=UNDERLINE guifg=black guibg=green
hi CursorIM cterm=UNDERLINE ctermfg=black ctermbg=green
hi Search gui=UNDERLINE guifg=black guibg=yellow
hi Search cterm=UNDERLINE ctermfg=black ctermbg=yellow
hi Visual gui=UNDERLINE guifg=black guibg=gray
hi Visual cterm=UNDERLINE ctermfg=black ctermbg=gray
" message {{{1
hi ErrorMsg gui=UNDERLINE guifg=black guibg=red
hi ErrorMsg cterm=UNDERLINE ctermfg=black ctermbg=red
hi WarningMsg gui=UNDERLINE guifg=black guibg=yellow
hi WarningMsg cterm=UNDERLINE ctermfg=black ctermbg=yellow
hi ModeMsg gui=UNDERLINE guifg=black guibg=green
hi ModeMsg cterm=UNDERLINE ctermfg=black ctermbg=green
" inner {{{1
hi Normal gui=NONE guifg=lightgray guibg=black
hi Normal cterm=NONE ctermfg=lightgray ctermbg=black
hi Ignore gui=NONE guifg=black guibg=black
hi Ignore cterm=NONE ctermfg=black ctermbg=black
hi Todo gui=UNDERLINE guifg=black guibg=red
hi Todo cterm=UNDERLINE ctermfg=black ctermbg=red
hi Error gui=UNDERLINE guifg=lightgray guibg=red
hi Error cterm=UNDERLINE ctermfg=lightgray ctermbg=red
hi Special gui=NONE guifg=lightcyan guibg=black
hi Special cterm=NONE ctermfg=lightcyan ctermbg=black
hi SpecialKey gui=NONE guifg=cyan guibg=black
hi SpecialKey cterm=NONE ctermfg=cyan ctermbg=black
hi Identifier gui=NONE guifg=cyan guibg=black
hi Identifier cterm=NONE ctermfg=cyan ctermbg=black
hi Constant gui=NONE guifg=lightred guibg=black
hi Constant cterm=NONE ctermfg=lightred ctermbg=black
hi Statement gui=NONE guifg=lightyellow guibg=black
hi Statement cterm=NONE ctermfg=lightyellow ctermbg=black
hi Comment gui=NONE guifg=lightblue guibg=black
hi Comment cterm=NONE ctermfg=lightblue ctermbg=black
hi Underlined gui=UNDERLINE guifg=lightblue guibg=black
hi Underlined cterm=UNDERLINE ctermfg=lightblue ctermbg=black
hi Directory gui=NONE guifg=lightgreen guibg=black
hi Directory cterm=NONE ctermfg=lightgreen ctermbg=black
hi PreProc gui=NONE guifg=lightmagenta guibg=black
hi PreProc cterm=NONE ctermfg=lightmagenta ctermbg=black
hi Type gui=NONE guifg=lightgreen guibg=black
hi Type cterm=NONE ctermfg=lightgreen ctermbg=black
" option {{{1
function! s:SetOpt(term, theme, target, default)
let s:opt_{a:term}_{a:target}
\ = exists("g:hhcs_".a:term."_".a:theme."_".a:target)
\ ? g:hhcs_{a:term}_{a:theme}_{a:target}
\ : exists("g:hhcs_".a:term."_all_".a:target)
\ ? g:hhcs_{a:term}_all_{a:target}
\ : exists("g:hhcs_both_all_".a:target)
\ ? g:hhcs_both_all_{a:target}
\ : a:default
endfunction
" LineNr {{{2
" light, dark, normal
call s:SetOpt( "gui", "hhdcyan", "linenr", "light")
call s:SetOpt("cterm", "hhdcyan", "linenr", "light")
"echo "s:opt_gui_linenr=".s:opt_gui_linenr
if s:opt_gui_linenr == "light"
hi LineNr gui=UNDERLINE guifg=black guibg=lightcyan
elseif s:opt_gui_linenr == "dark"
hi LineNr gui=UNDERLINE guifg=black guibg=darkcyan
else
hi LineNr gui=NONE guifg=lightcyan guibg=black
endif
"echo "s:opt_cterm_linenr=".s:opt_cterm_linenr
if s:opt_cterm_linenr == "light"
hi LineNr cterm=UNDERLINE ctermfg=black ctermbg=lightcyan
elseif s:opt_gui_linenr == "dark"
hi LineNr cterm=UNDERLINE ctermfg=black ctermbg=darkcyan
else
hi LineNr cterm=NONE ctermfg=lightcyan ctermbg=black
endif
" NonText {{{2
" underlined, normal
call s:SetOpt( "gui", "hhdcyan", "nontext", "underlined")
call s:SetOpt("cterm", "hhdcyan", "nontext", "underlined")
"echo "s:opt_gui_nontext=".s:opt_gui_nontext
if s:opt_gui_nontext == "underlined"
hi NonText gui=UNDERLINE guifg=darkcyan guibg=black
else
hi NonText gui=NONE guifg=darkcyan guibg=black
endif
"echo "s:opt_cterm_nontext=".s:opt_cterm_nontext
if s:opt_cterm_nontext == "underlined"
hi NonText cterm=UNDERLINE ctermfg=darkcyan ctermbg=black
else
hi NonText cterm=NONE ctermfg=darkcyan ctermbg=black
endif
" 2}}}
" diff {{{1
hi DiffText gui=UNDERLINE guifg=black guibg=red
hi DiffText cterm=UNDERLINE ctermfg=black ctermbg=red
hi DiffChange gui=UNDERLINE guifg=black guibg=lightgray
hi DiffChange cterm=UNDERLINE ctermfg=black ctermbg=lightgray
hi DiffDelete gui=NONE guifg=black guibg=blue
hi DiffDelete cterm=NONE ctermfg=black ctermbg=blue
hi DiffAdd gui=UNDERLINE guifg=black guibg=cyan
hi DiffAdd cterm=UNDERLINE ctermfg=black ctermbg=cyan
" html {{{1
hi htmlLink gui=UNDERLINE guifg=lightblue guibg=black
hi htmlLink cterm=UNDERLINE ctermfg=lightblue ctermbg=black
hi htmlBold gui=UNDERLINE guifg=black guibg=lightred
hi htmlBold cterm=UNDERLINE ctermfg=black ctermbg=lightred
hi htmlItalic gui=UNDERLINE guifg=black guibg=lightgreen
hi htmlItalic cterm=UNDERLINE ctermfg=black ctermbg=lightgreen
hi htmlBoldItalic gui=UNDERLINE guifg=black guibg=lightblue
hi htmlBoldItalic cterm=UNDERLINE ctermfg=black ctermbg=lightblue
hi htmlUnderline gui=UNDERLINE guifg=lightgray guibg=black
hi htmlUnderline cterm=UNDERLINE ctermfg=lightgray ctermbg=black
hi htmlBoldUnderline gui=UNDERLINE guifg=lightred guibg=black
hi htmlBoldUnderline cterm=UNDERLINE ctermfg=lightred ctermbg=black
hi htmlUnderlineItalic gui=UNDERLINE guifg=lightgreen guibg=black
hi htmlUnderlineItalic cterm=UNDERLINE ctermfg=lightgreen ctermbg=black
hi htmlBoldUnderlineItalic gui=UNDERLINE guifg=lightblue guibg=black
hi htmlBoldUnderlineItalic cterm=UNDERLINE ctermfg=lightblue ctermbg=black
" colors{{{1
" 1 black
" 2 blue
" 3 cyan
" 4 darkcyan
" 5 gray
" 6 green
" 7 lightblue
" 8 lightcyan
" 9 lightgray
" 10 lightgreen
" 11 lightmagenta
" 12 lightred
" 13 lightyellow
" 14 red
" 15 yellow
"}}}1
" vim:set nowrap foldmethod=marker expandtab:

View File

@ -1,233 +0,0 @@
" Vim color file {{{1
" Maintainer: hira@users.sourceforge.jp
" Last Change: 2003/11/08 (Sat) 15:09:11.
" Version: 1.3
" This color scheme uses a dark background.
" Options
" format:
" hhcs_<gui|cterm|both>_<theme|all>_<target>="value"
" target:
" linenr
" "light" : underline, fg=black, bg=light<theme>
" "dark" : underline, fg=black, bg=dark<theme>
" "normal" : none, fg=light<theme>, bg=black
" nontext
" "underlined" : underline, fg=dark<theme>, bg=black
" "normal" : none, fg=dark<theme>, bg=black
"
" This is original settings.
" :let hhcs_both_all_linenr ="light"
" :let hhcs_both_all_nontext ="underlined"
"
" This is prototype settings.
" :let hhcs_both_all_linenr ="dark"
" :let hhcs_both_all_nontext ="underlined"
"
" If you don't want to eccentric feature, try this.
" :let hhcs_both_all_linenr ="normal"
" :let hhcs_both_all_nontext ="normal"
"
" Normal, except hhdgray(gui), hhdgreen(cterm).
" :let hhcs_both_all_linenr ="normal"
" :let hhcs_both_all_nontext ="normal"
" :let hhcs_gui_hhdgray_linenr ="light"
" :let hhcs_gui_hhdgray_nontext ="underlined"
" :let hhcs_cterm_hhdgreen_linenr ="dark"
" :let hhcs_cterm_hhdgreen_nontext ="underlined"
"
" For poor cterm
" :let hhcs_cterm_all_linenr ="normal"
" Happy Hacking color scheme ((DARK)) {{{1
set background=dark
hi clear
if exists("syntax_on")
syntax reset
endif
let colors_name = expand("<sfile>:t:r")
let html_my_rendering = 1
" frame & title & message (theme) {{{1
hi NonText gui=UNDERLINE guifg=darkgray guibg=black
hi NonText cterm=UNDERLINE ctermfg=darkgray ctermbg=black
hi Folded gui=NONE guifg=darkgray guibg=black
hi Folded cterm=NONE ctermfg=darkgray ctermbg=black
hi FoldColumn gui=NONE guifg=darkgray guibg=black
hi FoldColumn cterm=NONE ctermfg=darkgray ctermbg=black
hi StatusLineNC gui=UNDERLINE guifg=black guibg=darkgray
hi StatusLineNC cterm=UNDERLINE ctermfg=black ctermbg=darkgray
hi LineNr gui=UNDERLINE guifg=black guibg=lightgray
hi LineNr cterm=UNDERLINE ctermfg=black ctermbg=lightgray
hi VertSplit gui=NONE guifg=darkgray guibg=darkgray
hi VertSplit cterm=NONE ctermfg=darkgray ctermbg=darkgray
" title
hi Title gui=UNDERLINE guifg=lightgray guibg=darkgray
hi Title cterm=UNDERLINE ctermfg=lightgray ctermbg=darkgray
" message
hi MoreMsg gui=UNDERLINE guifg=black guibg=darkgray
hi MoreMsg cterm=UNDERLINE ctermfg=black ctermbg=darkgray
hi Question gui=UNDERLINE guifg=black guibg=darkgray
hi Question cterm=UNDERLINE ctermfg=black ctermbg=darkgray
" cursor {{{1
hi StatusLine gui=UNDERLINE guifg=black guibg=gray
hi StatusLine cterm=UNDERLINE ctermfg=black ctermbg=gray
hi WildMenu gui=UNDERLINE guifg=black guibg=green
hi WildMenu cterm=UNDERLINE ctermfg=black ctermbg=green
hi Cursor gui=UNDERLINE guifg=black guibg=green
hi Cursor cterm=UNDERLINE ctermfg=black ctermbg=green
hi IncSearch gui=UNDERLINE guifg=black guibg=green
hi IncSearch cterm=UNDERLINE ctermfg=black ctermbg=green
hi CursorIM gui=UNDERLINE guifg=black guibg=green
hi CursorIM cterm=UNDERLINE ctermfg=black ctermbg=green
hi Search gui=UNDERLINE guifg=black guibg=yellow
hi Search cterm=UNDERLINE ctermfg=black ctermbg=yellow
hi Visual gui=UNDERLINE guifg=black guibg=gray
hi Visual cterm=UNDERLINE ctermfg=black ctermbg=gray
" message {{{1
hi ErrorMsg gui=UNDERLINE guifg=black guibg=red
hi ErrorMsg cterm=UNDERLINE ctermfg=black ctermbg=red
hi WarningMsg gui=UNDERLINE guifg=black guibg=yellow
hi WarningMsg cterm=UNDERLINE ctermfg=black ctermbg=yellow
hi ModeMsg gui=UNDERLINE guifg=black guibg=green
hi ModeMsg cterm=UNDERLINE ctermfg=black ctermbg=green
" inner {{{1
hi Normal gui=NONE guifg=lightgray guibg=black
hi Normal cterm=NONE ctermfg=lightgray ctermbg=black
hi Ignore gui=NONE guifg=black guibg=black
hi Ignore cterm=NONE ctermfg=black ctermbg=black
hi Todo gui=UNDERLINE guifg=black guibg=red
hi Todo cterm=UNDERLINE ctermfg=black ctermbg=red
hi Error gui=UNDERLINE guifg=lightgray guibg=red
hi Error cterm=UNDERLINE ctermfg=lightgray ctermbg=red
hi Special gui=NONE guifg=lightcyan guibg=black
hi Special cterm=NONE ctermfg=lightcyan ctermbg=black
hi SpecialKey gui=NONE guifg=cyan guibg=black
hi SpecialKey cterm=NONE ctermfg=cyan ctermbg=black
hi Identifier gui=NONE guifg=cyan guibg=black
hi Identifier cterm=NONE ctermfg=cyan ctermbg=black
hi Constant gui=NONE guifg=lightred guibg=black
hi Constant cterm=NONE ctermfg=lightred ctermbg=black
hi Statement gui=NONE guifg=lightyellow guibg=black
hi Statement cterm=NONE ctermfg=lightyellow ctermbg=black
hi Comment gui=NONE guifg=lightblue guibg=black
hi Comment cterm=NONE ctermfg=lightblue ctermbg=black
hi Underlined gui=UNDERLINE guifg=lightblue guibg=black
hi Underlined cterm=UNDERLINE ctermfg=lightblue ctermbg=black
hi Directory gui=NONE guifg=lightgreen guibg=black
hi Directory cterm=NONE ctermfg=lightgreen ctermbg=black
hi PreProc gui=NONE guifg=lightmagenta guibg=black
hi PreProc cterm=NONE ctermfg=lightmagenta ctermbg=black
hi Type gui=NONE guifg=lightgreen guibg=black
hi Type cterm=NONE ctermfg=lightgreen ctermbg=black
" option {{{1
function! s:SetOpt(term, theme, target, default)
let s:opt_{a:term}_{a:target}
\ = exists("g:hhcs_".a:term."_".a:theme."_".a:target)
\ ? g:hhcs_{a:term}_{a:theme}_{a:target}
\ : exists("g:hhcs_".a:term."_all_".a:target)
\ ? g:hhcs_{a:term}_all_{a:target}
\ : exists("g:hhcs_both_all_".a:target)
\ ? g:hhcs_both_all_{a:target}
\ : a:default
endfunction
" LineNr {{{2
" light, dark, normal
call s:SetOpt( "gui", "hhdgray", "linenr", "light")
call s:SetOpt("cterm", "hhdgray", "linenr", "light")
"echo "s:opt_gui_linenr=".s:opt_gui_linenr
if s:opt_gui_linenr == "light"
hi LineNr gui=UNDERLINE guifg=black guibg=lightgray
elseif s:opt_gui_linenr == "dark"
hi LineNr gui=UNDERLINE guifg=black guibg=darkgray
else
hi LineNr gui=NONE guifg=lightgray guibg=black
endif
"echo "s:opt_cterm_linenr=".s:opt_cterm_linenr
if s:opt_cterm_linenr == "light"
hi LineNr cterm=UNDERLINE ctermfg=black ctermbg=lightgray
elseif s:opt_gui_linenr == "dark"
hi LineNr cterm=UNDERLINE ctermfg=black ctermbg=darkgray
else
hi LineNr cterm=NONE ctermfg=lightgray ctermbg=black
endif
" NonText {{{2
" underlined, normal
call s:SetOpt( "gui", "hhdgray", "nontext", "underlined")
call s:SetOpt("cterm", "hhdgray", "nontext", "underlined")
"echo "s:opt_gui_nontext=".s:opt_gui_nontext
if s:opt_gui_nontext == "underlined"
hi NonText gui=UNDERLINE guifg=darkgray guibg=black
else
hi NonText gui=NONE guifg=darkgray guibg=black
endif
"echo "s:opt_cterm_nontext=".s:opt_cterm_nontext
if s:opt_cterm_nontext == "underlined"
hi NonText cterm=UNDERLINE ctermfg=darkgray ctermbg=black
else
hi NonText cterm=NONE ctermfg=darkgray ctermbg=black
endif
" 2}}}
" diff {{{1
hi DiffText gui=UNDERLINE guifg=black guibg=red
hi DiffText cterm=UNDERLINE ctermfg=black ctermbg=red
hi DiffChange gui=UNDERLINE guifg=black guibg=lightgray
hi DiffChange cterm=UNDERLINE ctermfg=black ctermbg=lightgray
hi DiffDelete gui=NONE guifg=black guibg=blue
hi DiffDelete cterm=NONE ctermfg=black ctermbg=blue
hi DiffAdd gui=UNDERLINE guifg=black guibg=cyan
hi DiffAdd cterm=UNDERLINE ctermfg=black ctermbg=cyan
" html {{{1
hi htmlLink gui=UNDERLINE guifg=lightblue guibg=black
hi htmlLink cterm=UNDERLINE ctermfg=lightblue ctermbg=black
hi htmlBold gui=UNDERLINE guifg=black guibg=lightred
hi htmlBold cterm=UNDERLINE ctermfg=black ctermbg=lightred
hi htmlItalic gui=UNDERLINE guifg=black guibg=lightgreen
hi htmlItalic cterm=UNDERLINE ctermfg=black ctermbg=lightgreen
hi htmlBoldItalic gui=UNDERLINE guifg=black guibg=lightblue
hi htmlBoldItalic cterm=UNDERLINE ctermfg=black ctermbg=lightblue
hi htmlUnderline gui=UNDERLINE guifg=lightgray guibg=black
hi htmlUnderline cterm=UNDERLINE ctermfg=lightgray ctermbg=black
hi htmlBoldUnderline gui=UNDERLINE guifg=lightred guibg=black
hi htmlBoldUnderline cterm=UNDERLINE ctermfg=lightred ctermbg=black
hi htmlUnderlineItalic gui=UNDERLINE guifg=lightgreen guibg=black
hi htmlUnderlineItalic cterm=UNDERLINE ctermfg=lightgreen ctermbg=black
hi htmlBoldUnderlineItalic gui=UNDERLINE guifg=lightblue guibg=black
hi htmlBoldUnderlineItalic cterm=UNDERLINE ctermfg=lightblue ctermbg=black
" colors{{{1
" 1 black
" 2 blue
" 3 cyan
" 4 darkgray
" 5 gray
" 6 green
" 7 lightblue
" 8 lightcyan
" 9 lightgray
" 10 lightgreen
" 11 lightmagenta
" 12 lightred
" 13 lightyellow
" 14 red
" 15 yellow
"}}}1
" vim:set nowrap foldmethod=marker expandtab:

View File

@ -1,233 +0,0 @@
" Vim color file {{{1
" Maintainer: hira@users.sourceforge.jp
" Last Change: 2003/11/08 (Sat) 15:09:11.
" Version: 1.3
" This color scheme uses a dark background.
" Options
" format:
" hhcs_<gui|cterm|both>_<theme|all>_<target>="value"
" target:
" linenr
" "light" : underline, fg=black, bg=light<theme>
" "dark" : underline, fg=black, bg=dark<theme>
" "normal" : none, fg=light<theme>, bg=black
" nontext
" "underlined" : underline, fg=dark<theme>, bg=black
" "normal" : none, fg=dark<theme>, bg=black
"
" This is original settings.
" :let hhcs_both_all_linenr ="light"
" :let hhcs_both_all_nontext ="underlined"
"
" This is prototype settings.
" :let hhcs_both_all_linenr ="dark"
" :let hhcs_both_all_nontext ="underlined"
"
" If you don't want to eccentric feature, try this.
" :let hhcs_both_all_linenr ="normal"
" :let hhcs_both_all_nontext ="normal"
"
" Normal, except hhdgray(gui), hhdgreen(cterm).
" :let hhcs_both_all_linenr ="normal"
" :let hhcs_both_all_nontext ="normal"
" :let hhcs_gui_hhdgray_linenr ="light"
" :let hhcs_gui_hhdgray_nontext ="underlined"
" :let hhcs_cterm_hhdgreen_linenr ="dark"
" :let hhcs_cterm_hhdgreen_nontext ="underlined"
"
" For poor cterm
" :let hhcs_cterm_all_linenr ="normal"
" Happy Hacking color scheme ((DARK)) {{{1
set background=dark
hi clear
if exists("syntax_on")
syntax reset
endif
let colors_name = expand("<sfile>:t:r")
let html_my_rendering = 1
" frame & title & message (theme) {{{1
hi NonText gui=UNDERLINE guifg=darkgreen guibg=black
hi NonText cterm=UNDERLINE ctermfg=darkgreen ctermbg=black
hi Folded gui=NONE guifg=darkgreen guibg=black
hi Folded cterm=NONE ctermfg=darkgreen ctermbg=black
hi FoldColumn gui=NONE guifg=darkgreen guibg=black
hi FoldColumn cterm=NONE ctermfg=darkgreen ctermbg=black
hi StatusLineNC gui=UNDERLINE guifg=black guibg=darkgreen
hi StatusLineNC gui=UNDERLINE ctermfg=black ctermbg=darkgreen
hi LineNr gui=UNDERLINE guifg=black guibg=lightgreen
hi LineNr cterm=UNDERLINE ctermfg=black ctermbg=lightgreen
hi VertSplit gui=NONE guifg=darkgreen guibg=darkgreen
hi VertSplit cterm=NONE ctermfg=darkgreen ctermbg=darkgreen
" title
hi Title gui=UNDERLINE guifg=lightgray guibg=darkgreen
hi Title cterm=UNDERLINE ctermfg=lightgray ctermbg=darkgreen
" message
hi MoreMsg gui=UNDERLINE guifg=black guibg=darkgreen
hi MoreMsg cterm=UNDERLINE ctermfg=black ctermbg=darkgreen
hi Question gui=UNDERLINE guifg=black guibg=darkgreen
hi Question cterm=UNDERLINE ctermfg=black ctermbg=darkgreen
" cursor {{{1
hi StatusLine gui=UNDERLINE guifg=black guibg=gray
hi StatusLine cterm=UNDERLINE ctermfg=black ctermbg=gray
hi WildMenu gui=UNDERLINE guifg=black guibg=green
hi WildMenu cterm=UNDERLINE ctermfg=black ctermbg=green
hi Cursor gui=UNDERLINE guifg=black guibg=green
hi Cursor cterm=UNDERLINE ctermfg=black ctermbg=green
hi IncSearch gui=UNDERLINE guifg=black guibg=green
hi IncSearch cterm=UNDERLINE ctermfg=black ctermbg=green
hi CursorIM gui=UNDERLINE guifg=black guibg=green
hi CursorIM cterm=UNDERLINE ctermfg=black ctermbg=green
hi Search gui=UNDERLINE guifg=black guibg=yellow
hi Search cterm=UNDERLINE ctermfg=black ctermbg=yellow
hi Visual gui=UNDERLINE guifg=black guibg=gray
hi Visual cterm=UNDERLINE ctermfg=black ctermbg=gray
" message {{{1
hi ErrorMsg gui=UNDERLINE guifg=black guibg=red
hi ErrorMsg cterm=UNDERLINE ctermfg=black ctermbg=red
hi WarningMsg gui=UNDERLINE guifg=black guibg=yellow
hi WarningMsg cterm=UNDERLINE ctermfg=black ctermbg=yellow
hi ModeMsg gui=UNDERLINE guifg=black guibg=green
hi ModeMsg cterm=UNDERLINE ctermfg=black ctermbg=green
" inner {{{1
hi Normal gui=NONE guifg=lightgray guibg=black
hi Normal cterm=NONE ctermfg=lightgray ctermbg=black
hi Ignore gui=NONE guifg=black guibg=black
hi Ignore cterm=NONE ctermfg=black ctermbg=black
hi Todo gui=UNDERLINE guifg=black guibg=red
hi Todo cterm=UNDERLINE ctermfg=black ctermbg=red
hi Error gui=UNDERLINE guifg=lightgray guibg=red
hi Error cterm=UNDERLINE ctermfg=lightgray ctermbg=red
hi Special gui=NONE guifg=lightcyan guibg=black
hi Special cterm=NONE ctermfg=lightcyan ctermbg=black
hi SpecialKey gui=NONE guifg=cyan guibg=black
hi SpecialKey cterm=NONE ctermfg=cyan ctermbg=black
hi Identifier gui=NONE guifg=cyan guibg=black
hi Identifier cterm=NONE ctermfg=cyan ctermbg=black
hi Constant gui=NONE guifg=lightred guibg=black
hi Constant cterm=NONE ctermfg=lightred ctermbg=black
hi Statement gui=NONE guifg=lightyellow guibg=black
hi Statement cterm=NONE ctermfg=lightyellow ctermbg=black
hi Comment gui=NONE guifg=lightblue guibg=black
hi Comment cterm=NONE ctermfg=lightblue ctermbg=black
hi Underlined gui=UNDERLINE guifg=lightblue guibg=black
hi Underlined cterm=UNDERLINE ctermfg=lightblue ctermbg=black
hi Directory gui=NONE guifg=lightgreen guibg=black
hi Directory cterm=NONE ctermfg=lightgreen ctermbg=black
hi PreProc gui=NONE guifg=lightmagenta guibg=black
hi PreProc cterm=NONE ctermfg=lightmagenta ctermbg=black
hi Type gui=NONE guifg=lightgreen guibg=black
hi Type cterm=NONE ctermfg=lightgreen ctermbg=black
" option {{{1
function! s:SetOpt(term, theme, target, default)
let s:opt_{a:term}_{a:target}
\ = exists("g:hhcs_".a:term."_".a:theme."_".a:target)
\ ? g:hhcs_{a:term}_{a:theme}_{a:target}
\ : exists("g:hhcs_".a:term."_all_".a:target)
\ ? g:hhcs_{a:term}_all_{a:target}
\ : exists("g:hhcs_both_all_".a:target)
\ ? g:hhcs_both_all_{a:target}
\ : a:default
endfunction
" LineNr {{{2
" light, dark, normal
call s:SetOpt( "gui", "hhdgreen", "linenr", "light")
call s:SetOpt("cterm", "hhdgreen", "linenr", "light")
"echo "s:opt_gui_linenr=".s:opt_gui_linenr
if s:opt_gui_linenr == "light"
hi LineNr gui=UNDERLINE guifg=black guibg=lightgreen
elseif s:opt_gui_linenr == "dark"
hi LineNr gui=UNDERLINE guifg=black guibg=darkgreen
else
hi LineNr gui=NONE guifg=lightgreen guibg=black
endif
"echo "s:opt_cterm_linenr=".s:opt_cterm_linenr
if s:opt_cterm_linenr == "light"
hi LineNr cterm=UNDERLINE ctermfg=black ctermbg=lightgreen
elseif s:opt_gui_linenr == "dark"
hi LineNr cterm=UNDERLINE ctermfg=black ctermbg=darkgreen
else
hi LineNr cterm=NONE ctermfg=lightgreen ctermbg=black
endif
" NonText {{{2
" underlined, normal
call s:SetOpt( "gui", "hhdgreen", "nontext", "underlined")
call s:SetOpt("cterm", "hhdgreen", "nontext", "underlined")
"echo "s:opt_gui_nontext=".s:opt_gui_nontext
if s:opt_gui_nontext == "underlined"
hi NonText gui=UNDERLINE guifg=darkgreen guibg=black
else
hi NonText gui=NONE guifg=darkgreen guibg=black
endif
"echo "s:opt_cterm_nontext=".s:opt_cterm_nontext
if s:opt_cterm_nontext == "underlined"
hi NonText cterm=UNDERLINE ctermfg=darkgreen ctermbg=black
else
hi NonText cterm=NONE ctermfg=darkgreen ctermbg=black
endif
" 2}}}
" diff {{{1
hi DiffText gui=UNDERLINE guifg=black guibg=red
hi DiffText cterm=UNDERLINE ctermfg=black ctermbg=red
hi DiffChange gui=UNDERLINE guifg=black guibg=lightgray
hi DiffChange cterm=UNDERLINE ctermfg=black ctermbg=lightgray
hi DiffDelete gui=NONE guifg=black guibg=blue
hi DiffDelete cterm=NONE ctermfg=black ctermbg=blue
hi DiffAdd gui=UNDERLINE guifg=black guibg=cyan
hi DiffAdd cterm=UNDERLINE ctermfg=black ctermbg=cyan
" html {{{1
hi htmlLink gui=UNDERLINE guifg=lightblue guibg=black
hi htmlLink cterm=UNDERLINE ctermfg=lightblue ctermbg=black
hi htmlBold gui=UNDERLINE guifg=black guibg=lightred
hi htmlBold cterm=UNDERLINE ctermfg=black ctermbg=lightred
hi htmlItalic gui=UNDERLINE guifg=black guibg=lightgreen
hi htmlItalic cterm=UNDERLINE ctermfg=black ctermbg=lightgreen
hi htmlBoldItalic gui=UNDERLINE guifg=black guibg=lightblue
hi htmlBoldItalic cterm=UNDERLINE ctermfg=black ctermbg=lightblue
hi htmlUnderline gui=UNDERLINE guifg=lightgray guibg=black
hi htmlUnderline cterm=UNDERLINE ctermfg=lightgray ctermbg=black
hi htmlBoldUnderline gui=UNDERLINE guifg=lightred guibg=black
hi htmlBoldUnderline cterm=UNDERLINE ctermfg=lightred ctermbg=black
hi htmlUnderlineItalic gui=UNDERLINE guifg=lightgreen guibg=black
hi htmlUnderlineItalic cterm=UNDERLINE ctermfg=lightgreen ctermbg=black
hi htmlBoldUnderlineItalic gui=UNDERLINE guifg=lightblue guibg=black
hi htmlBoldUnderlineItalic cterm=UNDERLINE ctermfg=lightblue ctermbg=black
" colors{{{1
" 1 black
" 2 blue
" 3 cyan
" 4 darkgreen
" 5 gray
" 6 green
" 7 lightblue
" 8 lightcyan
" 9 lightgray
" 10 lightgreen
" 11 lightmagenta
" 12 lightred
" 13 lightyellow
" 14 red
" 15 yellow
"}}}1
" vim:set nowrap foldmethod=marker expandtab:

View File

@ -1,233 +0,0 @@
" Vim color file {{{1
" Maintainer: hira@users.sourceforge.jp
" Last Change: 2003/11/08 (Sat) 15:09:12.
" Version: 1.3
" This color scheme uses a dark background.
" Options
" format:
" hhcs_<gui|cterm|both>_<theme|all>_<target>="value"
" target:
" linenr
" "light" : underline, fg=black, bg=light<theme>
" "dark" : underline, fg=black, bg=dark<theme>
" "normal" : none, fg=light<theme>, bg=black
" nontext
" "underlined" : underline, fg=dark<theme>, bg=black
" "normal" : none, fg=dark<theme>, bg=black
"
" This is original settings.
" :let hhcs_both_all_linenr ="light"
" :let hhcs_both_all_nontext ="underlined"
"
" This is prototype settings.
" :let hhcs_both_all_linenr ="dark"
" :let hhcs_both_all_nontext ="underlined"
"
" If you don't want to eccentric feature, try this.
" :let hhcs_both_all_linenr ="normal"
" :let hhcs_both_all_nontext ="normal"
"
" Normal, except hhdgray(gui), hhdgreen(cterm).
" :let hhcs_both_all_linenr ="normal"
" :let hhcs_both_all_nontext ="normal"
" :let hhcs_gui_hhdgray_linenr ="light"
" :let hhcs_gui_hhdgray_nontext ="underlined"
" :let hhcs_cterm_hhdgreen_linenr ="dark"
" :let hhcs_cterm_hhdgreen_nontext ="underlined"
"
" For poor cterm
" :let hhcs_cterm_all_linenr ="normal"
" Happy Hacking color scheme ((DARK)) {{{1
set background=dark
hi clear
if exists("syntax_on")
syntax reset
endif
let colors_name = expand("<sfile>:t:r")
let html_my_rendering = 1
" frame & title & message (theme) {{{1
hi NonText gui=UNDERLINE guifg=darkmagenta guibg=black
hi NonText cterm=UNDERLINE ctermfg=darkmagenta ctermbg=black
hi Folded gui=NONE guifg=darkmagenta guibg=black
hi Folded cterm=NONE ctermfg=darkmagenta ctermbg=black
hi FoldColumn gui=NONE guifg=darkmagenta guibg=black
hi FoldColumn cterm=NONE ctermfg=darkmagenta ctermbg=black
hi StatusLineNC gui=UNDERLINE guifg=black guibg=darkmagenta
hi StatusLineNC gui=UNDERLINE ctermfg=black ctermbg=darkmagenta
hi LineNr gui=UNDERLINE guifg=black guibg=lightmagenta
hi LineNr cterm=UNDERLINE ctermfg=black ctermbg=lightmagenta
hi VertSplit gui=NONE guifg=darkmagenta guibg=darkmagenta
hi VertSplit cterm=NONE ctermfg=darkmagenta ctermbg=darkmagenta
" title
hi Title gui=UNDERLINE guifg=lightgray guibg=darkmagenta
hi Title cterm=UNDERLINE ctermfg=lightgray ctermbg=darkmagenta
" message
hi MoreMsg gui=UNDERLINE guifg=black guibg=darkmagenta
hi MoreMsg cterm=UNDERLINE ctermfg=black ctermbg=darkmagenta
hi Question gui=UNDERLINE guifg=black guibg=darkmagenta
hi Question cterm=UNDERLINE ctermfg=black ctermbg=darkmagenta
" cursor {{{1
hi StatusLine gui=UNDERLINE guifg=black guibg=gray
hi StatusLine cterm=UNDERLINE ctermfg=black ctermbg=gray
hi WildMenu gui=UNDERLINE guifg=black guibg=green
hi WildMenu cterm=UNDERLINE ctermfg=black ctermbg=green
hi Cursor gui=UNDERLINE guifg=black guibg=green
hi Cursor cterm=UNDERLINE ctermfg=black ctermbg=green
hi IncSearch gui=UNDERLINE guifg=black guibg=green
hi IncSearch cterm=UNDERLINE ctermfg=black ctermbg=green
hi CursorIM gui=UNDERLINE guifg=black guibg=green
hi CursorIM cterm=UNDERLINE ctermfg=black ctermbg=green
hi Search gui=UNDERLINE guifg=black guibg=yellow
hi Search cterm=UNDERLINE ctermfg=black ctermbg=yellow
hi Visual gui=UNDERLINE guifg=black guibg=gray
hi Visual cterm=UNDERLINE ctermfg=black ctermbg=gray
" message {{{1
hi ErrorMsg gui=UNDERLINE guifg=black guibg=red
hi ErrorMsg cterm=UNDERLINE ctermfg=black ctermbg=red
hi WarningMsg gui=UNDERLINE guifg=black guibg=yellow
hi WarningMsg cterm=UNDERLINE ctermfg=black ctermbg=yellow
hi ModeMsg gui=UNDERLINE guifg=black guibg=green
hi ModeMsg cterm=UNDERLINE ctermfg=black ctermbg=green
" inner {{{1
hi Normal gui=NONE guifg=lightgray guibg=black
hi Normal cterm=NONE ctermfg=lightgray ctermbg=black
hi Ignore gui=NONE guifg=black guibg=black
hi Ignore cterm=NONE ctermfg=black ctermbg=black
hi Todo gui=UNDERLINE guifg=black guibg=red
hi Todo cterm=UNDERLINE ctermfg=black ctermbg=red
hi Error gui=UNDERLINE guifg=lightgray guibg=red
hi Error cterm=UNDERLINE ctermfg=lightgray ctermbg=red
hi Special gui=NONE guifg=lightcyan guibg=black
hi Special cterm=NONE ctermfg=lightcyan ctermbg=black
hi SpecialKey gui=NONE guifg=cyan guibg=black
hi SpecialKey cterm=NONE ctermfg=cyan ctermbg=black
hi Identifier gui=NONE guifg=cyan guibg=black
hi Identifier cterm=NONE ctermfg=cyan ctermbg=black
hi Constant gui=NONE guifg=lightred guibg=black
hi Constant cterm=NONE ctermfg=lightred ctermbg=black
hi Statement gui=NONE guifg=lightyellow guibg=black
hi Statement cterm=NONE ctermfg=lightyellow ctermbg=black
hi Comment gui=NONE guifg=lightblue guibg=black
hi Comment cterm=NONE ctermfg=lightblue ctermbg=black
hi Underlined gui=UNDERLINE guifg=lightblue guibg=black
hi Underlined cterm=UNDERLINE ctermfg=lightblue ctermbg=black
hi Directory gui=NONE guifg=lightgreen guibg=black
hi Directory cterm=NONE ctermfg=lightgreen ctermbg=black
hi PreProc gui=NONE guifg=lightmagenta guibg=black
hi PreProc cterm=NONE ctermfg=lightmagenta ctermbg=black
hi Type gui=NONE guifg=lightgreen guibg=black
hi Type cterm=NONE ctermfg=lightgreen ctermbg=black
" option {{{1
function! s:SetOpt(term, theme, target, default)
let s:opt_{a:term}_{a:target}
\ = exists("g:hhcs_".a:term."_".a:theme."_".a:target)
\ ? g:hhcs_{a:term}_{a:theme}_{a:target}
\ : exists("g:hhcs_".a:term."_all_".a:target)
\ ? g:hhcs_{a:term}_all_{a:target}
\ : exists("g:hhcs_both_all_".a:target)
\ ? g:hhcs_both_all_{a:target}
\ : a:default
endfunction
" LineNr {{{2
" light, dark, normal
call s:SetOpt( "gui", "hhdmagenta", "linenr", "light")
call s:SetOpt("cterm", "hhdmagenta", "linenr", "light")
"echo "s:opt_gui_linenr=".s:opt_gui_linenr
if s:opt_gui_linenr == "light"
hi LineNr gui=UNDERLINE guifg=black guibg=lightmagenta
elseif s:opt_gui_linenr == "dark"
hi LineNr gui=UNDERLINE guifg=black guibg=darkmagenta
else
hi LineNr gui=NONE guifg=lightmagenta guibg=black
endif
"echo "s:opt_cterm_linenr=".s:opt_cterm_linenr
if s:opt_cterm_linenr == "light"
hi LineNr cterm=UNDERLINE ctermfg=black ctermbg=lightmagenta
elseif s:opt_gui_linenr == "dark"
hi LineNr cterm=UNDERLINE ctermfg=black ctermbg=darkmagenta
else
hi LineNr cterm=NONE ctermfg=lightmagenta ctermbg=black
endif
" NonText {{{2
" underlined, normal
call s:SetOpt( "gui", "hhdmagenta", "nontext", "underlined")
call s:SetOpt("cterm", "hhdmagenta", "nontext", "underlined")
"echo "s:opt_gui_nontext=".s:opt_gui_nontext
if s:opt_gui_nontext == "underlined"
hi NonText gui=UNDERLINE guifg=darkmagenta guibg=black
else
hi NonText gui=NONE guifg=darkmagenta guibg=black
endif
"echo "s:opt_cterm_nontext=".s:opt_cterm_nontext
if s:opt_cterm_nontext == "underlined"
hi NonText cterm=UNDERLINE ctermfg=darkmagenta ctermbg=black
else
hi NonText cterm=NONE ctermfg=darkmagenta ctermbg=black
endif
" 2}}}
" diff {{{1
hi DiffText gui=UNDERLINE guifg=black guibg=red
hi DiffText cterm=UNDERLINE ctermfg=black ctermbg=red
hi DiffChange gui=UNDERLINE guifg=black guibg=lightgray
hi DiffChange cterm=UNDERLINE ctermfg=black ctermbg=lightgray
hi DiffDelete gui=NONE guifg=black guibg=blue
hi DiffDelete cterm=NONE ctermfg=black ctermbg=blue
hi DiffAdd gui=UNDERLINE guifg=black guibg=cyan
hi DiffAdd cterm=UNDERLINE ctermfg=black ctermbg=cyan
" html {{{1
hi htmlLink gui=UNDERLINE guifg=lightblue guibg=black
hi htmlLink cterm=UNDERLINE ctermfg=lightblue ctermbg=black
hi htmlBold gui=UNDERLINE guifg=black guibg=lightred
hi htmlBold cterm=UNDERLINE ctermfg=black ctermbg=lightred
hi htmlItalic gui=UNDERLINE guifg=black guibg=lightgreen
hi htmlItalic cterm=UNDERLINE ctermfg=black ctermbg=lightgreen
hi htmlBoldItalic gui=UNDERLINE guifg=black guibg=lightblue
hi htmlBoldItalic cterm=UNDERLINE ctermfg=black ctermbg=lightblue
hi htmlUnderline gui=UNDERLINE guifg=lightgray guibg=black
hi htmlUnderline cterm=UNDERLINE ctermfg=lightgray ctermbg=black
hi htmlBoldUnderline gui=UNDERLINE guifg=lightred guibg=black
hi htmlBoldUnderline cterm=UNDERLINE ctermfg=lightred ctermbg=black
hi htmlUnderlineItalic gui=UNDERLINE guifg=lightgreen guibg=black
hi htmlUnderlineItalic cterm=UNDERLINE ctermfg=lightgreen ctermbg=black
hi htmlBoldUnderlineItalic gui=UNDERLINE guifg=lightblue guibg=black
hi htmlBoldUnderlineItalic cterm=UNDERLINE ctermfg=lightblue ctermbg=black
" colors{{{1
" 1 black
" 2 blue
" 3 cyan
" 4 darkmagenta
" 5 gray
" 6 green
" 7 lightblue
" 8 lightcyan
" 9 lightgray
" 10 lightgreen
" 11 lightmagenta
" 12 lightred
" 13 lightyellow
" 14 red
" 15 yellow
"}}}1
" vim:set nowrap foldmethod=marker expandtab:

View File

@ -1,234 +0,0 @@
" Vim color file {{{1
" Maintainer: hira@users.sourceforge.jp
" Last Change: 2003/11/08 (Sat) 15:09:14.
" Version: 1.3
" This color scheme uses a dark background.
" Options
" format:
" hhcs_<gui|cterm|both>_<theme|all>_<target>="value"
" target:
" linenr
" "light" : underline, fg=black, bg=light<theme>
" "dark" : underline, fg=black, bg=dark<theme>
" "normal" : none, fg=light<theme>, bg=black
" nontext
" "underlined" : underline, fg=dark<theme>, bg=black
" "normal" : none, fg=dark<theme>, bg=black
"
" This is original settings.
" :let hhcs_both_all_linenr ="light"
" :let hhcs_both_all_nontext ="underlined"
"
" This is prototype settings.
" :let hhcs_both_all_linenr ="dark"
" :let hhcs_both_all_nontext ="underlined"
"
" If you don't want to eccentric feature, try this.
" :let hhcs_both_all_linenr ="normal"
" :let hhcs_both_all_nontext ="normal"
"
" Normal, except hhdgray(gui), hhdgreen(cterm).
" :let hhcs_both_all_linenr ="normal"
" :let hhcs_both_all_nontext ="normal"
" :let hhcs_gui_hhdgray_linenr ="light"
" :let hhcs_gui_hhdgray_nontext ="underlined"
" :let hhcs_cterm_hhdgreen_linenr ="dark"
" :let hhcs_cterm_hhdgreen_nontext ="underlined"
"
" For poor cterm
" :let hhcs_cterm_all_linenr ="normal"
" Happy Hacking color scheme ((DARK)) {{{1
set background=dark
hi clear
if exists("syntax_on")
syntax reset
endif
let colors_name = expand("<sfile>:t:r")
let html_my_rendering = 1
" frame & title & message (theme) {{{1
hi NonText gui=UNDERLINE guifg=darkred guibg=black
hi NonText cterm=UNDERLINE ctermfg=darkred ctermbg=black
hi Folded gui=NONE guifg=brown guibg=black
hi Folded cterm=NONE ctermfg=brown ctermbg=black
hi FoldColumn gui=NONE guifg=brown guibg=black
hi FoldColumn cterm=NONE ctermfg=brown ctermbg=black
hi StatusLineNC gui=UNDERLINE guifg=black guibg=darkred
hi StatusLineNC gui=UNDERLINE ctermfg=black ctermbg=darkred
hi LineNr gui=UNDERLINE guifg=black guibg=lightred
hi LineNr cterm=UNDERLINE ctermfg=black ctermbg=lightred
hi VertSplit gui=NONE guifg=darkred guibg=darkred
hi VertSplit cterm=NONE ctermfg=darkred ctermbg=darkred
" title
hi Title gui=UNDERLINE guifg=lightgray guibg=darkred
hi Title cterm=UNDERLINE ctermfg=lightgray ctermbg=darkred
" message
hi MoreMsg gui=UNDERLINE guifg=black guibg=darkred
hi MoreMsg cterm=UNDERLINE ctermfg=black ctermbg=darkred
hi Question gui=UNDERLINE guifg=black guibg=darkred
hi Question cterm=UNDERLINE ctermfg=black ctermbg=darkred
" cursor {{{1
hi StatusLine gui=UNDERLINE guifg=black guibg=gray
hi StatusLine cterm=UNDERLINE ctermfg=black ctermbg=gray
hi WildMenu gui=UNDERLINE guifg=black guibg=green
hi WildMenu cterm=UNDERLINE ctermfg=black ctermbg=green
hi Cursor gui=UNDERLINE guifg=black guibg=green
hi Cursor cterm=UNDERLINE ctermfg=black ctermbg=green
hi IncSearch gui=UNDERLINE guifg=black guibg=green
hi IncSearch cterm=UNDERLINE ctermfg=black ctermbg=green
hi CursorIM gui=UNDERLINE guifg=black guibg=green
hi CursorIM cterm=UNDERLINE ctermfg=black ctermbg=green
hi Search gui=UNDERLINE guifg=black guibg=yellow
hi Search cterm=UNDERLINE ctermfg=black ctermbg=yellow
hi Visual gui=UNDERLINE guifg=black guibg=gray
hi Visual cterm=UNDERLINE ctermfg=black ctermbg=gray
" message {{{1
hi ErrorMsg gui=UNDERLINE guifg=black guibg=red
hi ErrorMsg cterm=UNDERLINE ctermfg=black ctermbg=red
hi WarningMsg gui=UNDERLINE guifg=black guibg=yellow
hi WarningMsg cterm=UNDERLINE ctermfg=black ctermbg=yellow
hi ModeMsg gui=UNDERLINE guifg=black guibg=green
hi ModeMsg cterm=UNDERLINE ctermfg=black ctermbg=green
" inner {{{1
hi Normal gui=NONE guifg=lightgray guibg=black
hi Normal cterm=NONE ctermfg=lightgray ctermbg=black
hi Ignore gui=NONE guifg=black guibg=black
hi Ignore cterm=NONE ctermfg=black ctermbg=black
hi Todo gui=UNDERLINE guifg=black guibg=red
hi Todo cterm=UNDERLINE ctermfg=black ctermbg=red
hi Error gui=UNDERLINE guifg=lightgray guibg=red
hi Error cterm=UNDERLINE ctermfg=lightgray ctermbg=red
hi Special gui=NONE guifg=lightcyan guibg=black
hi Special cterm=NONE ctermfg=lightcyan ctermbg=black
hi SpecialKey gui=NONE guifg=cyan guibg=black
hi SpecialKey cterm=NONE ctermfg=cyan ctermbg=black
hi Identifier gui=NONE guifg=cyan guibg=black
hi Identifier cterm=NONE ctermfg=cyan ctermbg=black
hi Constant gui=NONE guifg=lightred guibg=black
hi Constant cterm=NONE ctermfg=lightred ctermbg=black
hi Statement gui=NONE guifg=lightyellow guibg=black
hi Statement cterm=NONE ctermfg=lightyellow ctermbg=black
hi Comment gui=NONE guifg=lightblue guibg=black
hi Comment cterm=NONE ctermfg=lightblue ctermbg=black
hi Underlined gui=UNDERLINE guifg=lightblue guibg=black
hi Underlined cterm=UNDERLINE ctermfg=lightblue ctermbg=black
hi Directory gui=NONE guifg=lightgreen guibg=black
hi Directory cterm=NONE ctermfg=lightgreen ctermbg=black
hi PreProc gui=NONE guifg=lightmagenta guibg=black
hi PreProc cterm=NONE ctermfg=lightmagenta ctermbg=black
hi Type gui=NONE guifg=lightgreen guibg=black
hi Type cterm=NONE ctermfg=lightgreen ctermbg=black
" option {{{1
function! s:SetOpt(term, theme, target, default)
let s:opt_{a:term}_{a:target}
\ = exists("g:hhcs_".a:term."_".a:theme."_".a:target)
\ ? g:hhcs_{a:term}_{a:theme}_{a:target}
\ : exists("g:hhcs_".a:term."_all_".a:target)
\ ? g:hhcs_{a:term}_all_{a:target}
\ : exists("g:hhcs_both_all_".a:target)
\ ? g:hhcs_both_all_{a:target}
\ : a:default
endfunction
" LineNr {{{2
" light, dark, normal
call s:SetOpt( "gui", "hhdred", "linenr", "light")
call s:SetOpt("cterm", "hhdred", "linenr", "light")
"echo "s:opt_gui_linenr=".s:opt_gui_linenr
if s:opt_gui_linenr == "light"
hi LineNr gui=UNDERLINE guifg=black guibg=lightred
elseif s:opt_gui_linenr == "dark"
hi LineNr gui=UNDERLINE guifg=black guibg=darkred
else
hi LineNr gui=NONE guifg=lightred guibg=black
endif
"echo "s:opt_cterm_linenr=".s:opt_cterm_linenr
if s:opt_cterm_linenr == "light"
hi LineNr cterm=UNDERLINE ctermfg=black ctermbg=lightred
elseif s:opt_gui_linenr == "dark"
hi LineNr cterm=UNDERLINE ctermfg=black ctermbg=darkred
else
hi LineNr cterm=NONE ctermfg=lightred ctermbg=black
endif
" NonText {{{2
" underlined, normal
call s:SetOpt( "gui", "hhdred", "nontext", "underlined")
call s:SetOpt("cterm", "hhdred", "nontext", "underlined")
"echo "s:opt_gui_nontext=".s:opt_gui_nontext
if s:opt_gui_nontext == "underlined"
hi NonText gui=UNDERLINE guifg=darkred guibg=black
else
hi NonText gui=NONE guifg=darkred guibg=black
endif
"echo "s:opt_cterm_nontext=".s:opt_cterm_nontext
if s:opt_cterm_nontext == "underlined"
hi NonText cterm=UNDERLINE ctermfg=darkred ctermbg=black
else
hi NonText cterm=NONE ctermfg=darkred ctermbg=black
endif
" 2}}}
" diff {{{1
hi DiffText gui=UNDERLINE guifg=black guibg=red
hi DiffText cterm=UNDERLINE ctermfg=black ctermbg=red
hi DiffChange gui=UNDERLINE guifg=black guibg=lightgray
hi DiffChange cterm=UNDERLINE ctermfg=black ctermbg=lightgray
hi DiffDelete gui=NONE guifg=black guibg=blue
hi DiffDelete cterm=NONE ctermfg=black ctermbg=blue
hi DiffAdd gui=UNDERLINE guifg=black guibg=cyan
hi DiffAdd cterm=UNDERLINE ctermfg=black ctermbg=cyan
" html {{{1
hi htmlLink gui=UNDERLINE guifg=lightblue guibg=black
hi htmlLink cterm=UNDERLINE ctermfg=lightblue ctermbg=black
hi htmlBold gui=UNDERLINE guifg=black guibg=lightred
hi htmlBold cterm=UNDERLINE ctermfg=black ctermbg=lightred
hi htmlItalic gui=UNDERLINE guifg=black guibg=lightgreen
hi htmlItalic cterm=UNDERLINE ctermfg=black ctermbg=lightgreen
hi htmlBoldItalic gui=UNDERLINE guifg=black guibg=lightblue
hi htmlBoldItalic cterm=UNDERLINE ctermfg=black ctermbg=lightblue
hi htmlUnderline gui=UNDERLINE guifg=lightgray guibg=black
hi htmlUnderline cterm=UNDERLINE ctermfg=lightgray ctermbg=black
hi htmlBoldUnderline gui=UNDERLINE guifg=lightred guibg=black
hi htmlBoldUnderline cterm=UNDERLINE ctermfg=lightred ctermbg=black
hi htmlUnderlineItalic gui=UNDERLINE guifg=lightgreen guibg=black
hi htmlUnderlineItalic cterm=UNDERLINE ctermfg=lightgreen ctermbg=black
hi htmlBoldUnderlineItalic gui=UNDERLINE guifg=lightblue guibg=black
hi htmlBoldUnderlineItalic cterm=UNDERLINE ctermfg=lightblue ctermbg=black
" colors{{{1
" 1 black
" 2 blue
" 3 brown
" 4 cyan
" 5 darkred
" 6 gray
" 7 green
" 8 lightblue
" 9 lightcyan
" 10 lightgray
" 11 lightgreen
" 12 lightmagenta
" 13 lightred
" 14 lightyellow
" 15 red
" 16 yellow
"}}}1
" vim:set nowrap foldmethod=marker expandtab:

View File

@ -1,235 +0,0 @@
" Vim color file {{{1
" Maintainer: hira@users.sourceforge.jp
" Last Change: 2003/11/08 (Sat) 15:09:19.
" Version: 1.3
" This color scheme uses a dark background.
" Options
" format:
" hhcs_<gui|cterm|both>_<theme|all>_<target>="value"
" target:
" linenr
" "light" : underline, fg=black, bg=light<theme>
" "dark" : underline, fg=black, bg=dark<theme>
" "normal" : none, fg=light<theme>, bg=black
" nontext
" "underlined" : underline, fg=dark<theme>, bg=black
" "normal" : none, fg=dark<theme>, bg=black
"
" This is original settings.
" :let hhcs_both_all_linenr ="light"
" :let hhcs_both_all_nontext ="underlined"
"
" This is prototype settings.
" :let hhcs_both_all_linenr ="dark"
" :let hhcs_both_all_nontext ="underlined"
"
" If you don't want to eccentric feature, try this.
" :let hhcs_both_all_linenr ="normal"
" :let hhcs_both_all_nontext ="normal"
"
" Normal, except hhdgray(gui), hhdgreen(cterm).
" :let hhcs_both_all_linenr ="normal"
" :let hhcs_both_all_nontext ="normal"
" :let hhcs_gui_hhdgray_linenr ="light"
" :let hhcs_gui_hhdgray_nontext ="underlined"
" :let hhcs_cterm_hhdgreen_linenr ="dark"
" :let hhcs_cterm_hhdgreen_nontext ="underlined"
"
" For poor cterm
" :let hhcs_cterm_all_linenr ="normal"
" Happy Hacking color scheme ((DARK)) {{{1
set background=dark
hi clear
if exists("syntax_on")
syntax reset
endif
let colors_name = expand("<sfile>:t:r")
let html_my_rendering = 1
" frame & title & message (theme) {{{1
hi NonText gui=UNDERLINE guifg=darkyellow guibg=black
hi NonText cterm=UNDERLINE ctermfg=darkyellow ctermbg=black
hi Folded gui=NONE guifg=darkyellow guibg=black
hi Folded cterm=NONE ctermfg=darkyellow ctermbg=black
hi FoldColumn gui=NONE guifg=darkyellow guibg=black
hi FoldColumn cterm=NONE ctermfg=darkyellow ctermbg=black
hi StatusLineNC gui=UNDERLINE guifg=black guibg=darkyellow
hi StatusLineNC gui=UNDERLINE ctermfg=black ctermbg=darkyellow
hi LineNr gui=NONE guifg=lightyellow guibg=black
hi LineNr cterm=NONE ctermfg=lightyellow ctermbg=black
hi LineNr gui=UNDERLINE guifg=black guibg=lightyellow
hi LineNr cterm=UNDERLINE ctermfg=black ctermbg=lightyellow
hi VertSplit gui=NONE guifg=darkyellow guibg=darkyellow
hi VertSplit cterm=NONE ctermfg=darkyellow ctermbg=darkyellow
" title
hi Title gui=UNDERLINE guifg=lightgray guibg=darkyellow
hi Title cterm=UNDERLINE ctermfg=lightgray ctermbg=darkyellow
" message
hi MoreMsg gui=UNDERLINE guifg=black guibg=darkyellow
hi MoreMsg cterm=UNDERLINE ctermfg=black ctermbg=darkyellow
hi Question gui=UNDERLINE guifg=black guibg=darkyellow
hi Question cterm=UNDERLINE ctermfg=black ctermbg=darkyellow
" cursor {{{1
hi StatusLine gui=UNDERLINE guifg=black guibg=gray
hi StatusLine cterm=UNDERLINE ctermfg=black ctermbg=gray
hi WildMenu gui=UNDERLINE guifg=black guibg=green
hi WildMenu cterm=UNDERLINE ctermfg=black ctermbg=green
hi Cursor gui=UNDERLINE guifg=black guibg=green
hi Cursor cterm=UNDERLINE ctermfg=black ctermbg=green
hi IncSearch gui=UNDERLINE guifg=black guibg=green
hi IncSearch cterm=UNDERLINE ctermfg=black ctermbg=green
hi CursorIM gui=UNDERLINE guifg=black guibg=green
hi CursorIM cterm=UNDERLINE ctermfg=black ctermbg=green
hi Search gui=UNDERLINE guifg=black guibg=yellow
hi Search cterm=UNDERLINE ctermfg=black ctermbg=yellow
hi Visual gui=UNDERLINE guifg=black guibg=gray
hi Visual cterm=UNDERLINE ctermfg=black ctermbg=gray
" message {{{1
hi ErrorMsg gui=UNDERLINE guifg=black guibg=red
hi ErrorMsg cterm=UNDERLINE ctermfg=black ctermbg=red
hi WarningMsg gui=UNDERLINE guifg=black guibg=yellow
hi WarningMsg cterm=UNDERLINE ctermfg=black ctermbg=yellow
hi ModeMsg gui=UNDERLINE guifg=black guibg=green
hi ModeMsg cterm=UNDERLINE ctermfg=black ctermbg=green
" inner {{{1
hi Normal gui=NONE guifg=lightgray guibg=black
hi Normal cterm=NONE ctermfg=lightgray ctermbg=black
hi Ignore gui=NONE guifg=black guibg=black
hi Ignore cterm=NONE ctermfg=black ctermbg=black
hi Todo gui=UNDERLINE guifg=black guibg=red
hi Todo cterm=UNDERLINE ctermfg=black ctermbg=red
hi Error gui=UNDERLINE guifg=lightgray guibg=red
hi Error cterm=UNDERLINE ctermfg=lightgray ctermbg=red
hi Special gui=NONE guifg=lightcyan guibg=black
hi Special cterm=NONE ctermfg=lightcyan ctermbg=black
hi SpecialKey gui=NONE guifg=cyan guibg=black
hi SpecialKey cterm=NONE ctermfg=cyan ctermbg=black
hi Identifier gui=NONE guifg=cyan guibg=black
hi Identifier cterm=NONE ctermfg=cyan ctermbg=black
hi Constant gui=NONE guifg=lightred guibg=black
hi Constant cterm=NONE ctermfg=lightred ctermbg=black
hi Statement gui=NONE guifg=lightyellow guibg=black
hi Statement cterm=NONE ctermfg=lightyellow ctermbg=black
hi Comment gui=NONE guifg=lightblue guibg=black
hi Comment cterm=NONE ctermfg=lightblue ctermbg=black
hi Underlined gui=UNDERLINE guifg=lightblue guibg=black
hi Underlined cterm=UNDERLINE ctermfg=lightblue ctermbg=black
hi Directory gui=NONE guifg=lightgreen guibg=black
hi Directory cterm=NONE ctermfg=lightgreen ctermbg=black
hi PreProc gui=NONE guifg=lightmagenta guibg=black
hi PreProc cterm=NONE ctermfg=lightmagenta ctermbg=black
hi Type gui=NONE guifg=lightgreen guibg=black
hi Type cterm=NONE ctermfg=lightgreen ctermbg=black
" option {{{1
function! s:SetOpt(term, theme, target, default)
let s:opt_{a:term}_{a:target}
\ = exists("g:hhcs_".a:term."_".a:theme."_".a:target)
\ ? g:hhcs_{a:term}_{a:theme}_{a:target}
\ : exists("g:hhcs_".a:term."_all_".a:target)
\ ? g:hhcs_{a:term}_all_{a:target}
\ : exists("g:hhcs_both_all_".a:target)
\ ? g:hhcs_both_all_{a:target}
\ : a:default
endfunction
" LineNr {{{2
" light, dark, normal
call s:SetOpt( "gui", "hhdyellow", "linenr", "light")
call s:SetOpt("cterm", "hhdyellow", "linenr", "light")
"echo "s:opt_gui_linenr=".s:opt_gui_linenr
if s:opt_gui_linenr == "light"
hi LineNr gui=UNDERLINE guifg=black guibg=lightyellow
elseif s:opt_gui_linenr == "dark"
hi LineNr gui=UNDERLINE guifg=black guibg=darkyellow
else
hi LineNr gui=NONE guifg=lightyellow guibg=black
endif
"echo "s:opt_cterm_linenr=".s:opt_cterm_linenr
if s:opt_cterm_linenr == "light"
hi LineNr cterm=UNDERLINE ctermfg=black ctermbg=lightyellow
elseif s:opt_gui_linenr == "dark"
hi LineNr cterm=UNDERLINE ctermfg=black ctermbg=darkyellow
else
hi LineNr cterm=NONE ctermfg=lightyellow ctermbg=black
endif
" NonText {{{2
" underlined, normal
call s:SetOpt( "gui", "hhdyellow", "nontext", "underlined")
call s:SetOpt("cterm", "hhdyellow", "nontext", "underlined")
"echo "s:opt_gui_nontext=".s:opt_gui_nontext
if s:opt_gui_nontext == "underlined"
hi NonText gui=UNDERLINE guifg=darkyellow guibg=black
else
hi NonText gui=NONE guifg=darkyellow guibg=black
endif
"echo "s:opt_cterm_nontext=".s:opt_cterm_nontext
if s:opt_cterm_nontext == "underlined"
hi NonText cterm=UNDERLINE ctermfg=darkyellow ctermbg=black
else
hi NonText cterm=NONE ctermfg=darkyellow ctermbg=black
endif
" 2}}}
" diff {{{1
hi DiffText gui=UNDERLINE guifg=black guibg=red
hi DiffText cterm=UNDERLINE ctermfg=black ctermbg=red
hi DiffChange gui=UNDERLINE guifg=black guibg=lightgray
hi DiffChange cterm=UNDERLINE ctermfg=black ctermbg=lightgray
hi DiffDelete gui=NONE guifg=black guibg=blue
hi DiffDelete cterm=NONE ctermfg=black ctermbg=blue
hi DiffAdd gui=UNDERLINE guifg=black guibg=cyan
hi DiffAdd cterm=UNDERLINE ctermfg=black ctermbg=cyan
" html {{{1
hi htmlLink gui=UNDERLINE guifg=lightblue guibg=black
hi htmlLink cterm=UNDERLINE ctermfg=lightblue ctermbg=black
hi htmlBold gui=UNDERLINE guifg=black guibg=lightred
hi htmlBold cterm=UNDERLINE ctermfg=black ctermbg=lightred
hi htmlItalic gui=UNDERLINE guifg=black guibg=lightgreen
hi htmlItalic cterm=UNDERLINE ctermfg=black ctermbg=lightgreen
hi htmlBoldItalic gui=UNDERLINE guifg=black guibg=lightblue
hi htmlBoldItalic cterm=UNDERLINE ctermfg=black ctermbg=lightblue
hi htmlUnderline gui=UNDERLINE guifg=lightgray guibg=black
hi htmlUnderline cterm=UNDERLINE ctermfg=lightgray ctermbg=black
hi htmlBoldUnderline gui=UNDERLINE guifg=lightred guibg=black
hi htmlBoldUnderline cterm=UNDERLINE ctermfg=lightred ctermbg=black
hi htmlUnderlineItalic gui=UNDERLINE guifg=lightgreen guibg=black
hi htmlUnderlineItalic cterm=UNDERLINE ctermfg=lightgreen ctermbg=black
hi htmlBoldUnderlineItalic gui=UNDERLINE guifg=lightblue guibg=black
hi htmlBoldUnderlineItalic cterm=UNDERLINE ctermfg=lightblue ctermbg=black
" colors{{{1
" 1 black
" 2 blue
" 3 cyan
" 4 darkyellow
" 5 gray
" 6 green
" 7 lightblue
" 8 lightcyan
" 9 lightgray
" 10 lightgreen
" 11 lightmagenta
" 12 lightred
" 13 lightyellow
" 14 red
" 15 yellow
"}}}1
" vim:set nowrap foldmethod=marker expandtab:

View File

@ -1,82 +0,0 @@
" Vim color file {{{1
" Maintainer: hira@users.sourceforge.jp
" Last Change: 2003/11/29 (Sat) 13:28:25.
" Version: 1.2
" This color scheme uses a dark background.
" Happy Hacking color scheme {{{1
set background=dark
hi clear
if exists("syntax_on")
syntax reset
endif
let colors_name = expand("<sfile>:t:r")
let html_my_rendering = 1
" frame & title & message (theme) {{{1
hi LineNr gui=underline guifg=#756664 guibg=#1c1200
hi Folded gui=none guifg=#756664 guibg=bg
hi FoldColumn gui=none guifg=#756664 guibg=bg
" title
hi Title gui=underline guifg=fg guibg=#553614
" message
hi MoreMsg gui=underline guifg=bg guibg=#983235
hi Question gui=underline guifg=bg guibg=#983235
hi NonText gui=underline guifg=#2c2210 guibg=#2c2210
hi VertSplit gui=underline guifg=bg guibg=#1c1200
hi StatusLine gui=underline guifg=fg guibg=#1c1200
hi StatusLineNC gui=underline guifg=#3c2e2c guibg=#1c1200
" cursor {{{1
hi WildMenu gui=underline guifg=bg guibg=#cc9069
hi Cursor gui=underline guifg=bg guibg=#cc9069
hi IncSearch gui=underline guifg=bg guibg=#cc9069
hi CursorIM gui=underline guifg=fg guibg=#887900
hi Search gui=underline guifg=bg guibg=#994113
hi Visual gui=underline guifg=bg guibg=#886b46
" message {{{1
hi ErrorMsg gui=underline guifg=bg guibg=#dd66bb
hi WarningMsg gui=underline guifg=bg guibg=#cc668b
hi ModeMsg gui=underline guifg=bg guibg=#997433
" inner {{{1
hi Normal gui=none guifg=#9b8f78 guibg=#332412
hi Ignore gui=none guifg=bg guibg=bg
hi Todo gui=underline guifg=bg guibg=#cc668b
hi Error gui=underline guifg=fg guibg=#413399
hi Special gui=none guifg=#bb9466 guibg=bg
hi SpecialKey gui=none guifg=#becc66 guibg=bg
hi Identifier gui=none guifg=#be7569 guibg=bg
hi Constant gui=none guifg=#885222 guibg=bg
hi Statement gui=none guifg=#aa668f guibg=bg
hi Comment gui=none guifg=#887900 guibg=bg
hi Underlined gui=underline guifg=#66996d guibg=bg
hi Directory gui=none guifg=#774b44 guibg=bg
hi PreProc gui=none guifg=#775a55 guibg=bg
hi Type gui=none guifg=#bb7b22 guibg=bg
" diff {{{1
hi DiffText gui=underline guifg=bg guibg=#ffa799
hi DiffChange gui=underline guifg=bg guibg=#aa6155
hi DiffDelete gui=none guifg=bg guibg=#aa7922
hi DiffAdd gui=underline guifg=bg guibg=#cc2270
" html {{{1
hi htmlLink gui=underline guifg=#aaa366 guibg=bg
hi htmlBold gui=underline guifg=bg guibg=#aa668f
hi htmlBoldUnderline gui=underline guifg=#aa668f guibg=bg
hi htmlItalic gui=underline guifg=bg guibg=#cc8a44
hi htmlUnderlineItalic gui=underline guifg=#cc8a44 guibg=bg
hi htmlBoldItalic gui=underline guifg=bg guibg=#aa3355
hi htmlBoldUnderlineItalic gui=underline guifg=#aa3355 guibg=bg
hi htmlUnderline gui=underline guifg=fg guibg=bg
"}}}1
" vim:set nowrap foldmethod=marker expandtab:

View File

@ -1,85 +0,0 @@
" Vim color file {{{1
" Maintainer: hira@users.sourceforge.jp
" Last Change: 2003/11/29 (Sat) 13:28:25.
" Version: 1.2
" This color scheme uses a dark background.
" Happy Hacking color scheme {{{1
set background=dark
hi clear
if exists("syntax_on")
syntax reset
endif
let colors_name = expand("<sfile>:t:r")
let html_my_rendering = 1
" frame & title & message (theme) {{{1
hi Folded gui=none guifg=#855060 guibg=bg
hi FoldColumn gui=none guifg=#855060 guibg=bg
hi LineNr gui=underline guifg=#855060 guibg=#200510
hi VertSplit gui=underline guifg=bg guibg=#200510
hi StatusLine gui=underline guifg=fg guibg=#200510
hi StatusLineNC gui=underline guifg=#3c2c31 guibg=#200510
hi NonText gui=underline guifg=#3c2530
hi NonText guibg=#3c2530
" title
hi Title gui=underline guifg=fg guibg=#653040
" message
hi MoreMsg gui=underline guifg=bg guibg=#983266
hi Question gui=underline guifg=bg guibg=#983266
" cursor {{{1
hi WildMenu gui=underline guifg=bg guibg=#cc7990
hi Cursor gui=underline guifg=bg guibg=#cc7990
hi IncSearch gui=underline guifg=bg guibg=#cc7990
hi CursorIM gui=underline guifg=fg guibg=#884830
hi Search gui=underline guifg=bg guibg=#993356
hi Visual gui=underline guifg=bg guibg=#885672
" message {{{1
hi ErrorMsg gui=underline guifg=bg guibg=#c666dd
hi WarningMsg gui=underline guifg=bg guibg=#cc66bc
hi ModeMsg gui=underline guifg=bg guibg=#994333
"TODO
" inner {{{1
hi Normal gui=none guifg=#bb7899 guibg=#40202a
hi Ignore gui=none guifg=bg guibg=bg
hi Todo gui=underline guifg=bg guibg=#cc568c
hi Error gui=underline guifg=fg guibg=#335699
hi Special gui=none guifg=#bb6b66 guibg=bg
hi SpecialKey gui=none guifg=#cca966 guibg=bg
hi Identifier gui=none guifg=#be6986 guibg=bg
hi Constant gui=none guifg=#882223 guibg=bg
hi Statement gui=none guifg=#a466aa guibg=bg
hi Comment gui=none guifg=#884830 guibg=bg
hi Underlined gui=underline guifg=#779966 guibg=bg
hi Directory gui=none guifg=#774455 guibg=bg
hi PreProc gui=none guifg=#775561 guibg=bg
hi Type gui=none guifg=#aa3222 guibg=bg
" diff {{{1
hi DiffText gui=underline guifg=bg guibg=#ff99bc
hi DiffChange gui=underline guifg=bg guibg=#aa5572
hi DiffDelete gui=none guifg=bg guibg=#aa3822
hi DiffAdd gui=underline guifg=bg guibg=#cc22c2
" html {{{1
hi htmlLink gui=underline guifg=#aa8266 guibg=bg
hi htmlBold gui=underline guifg=bg guibg=#a466aa
hi htmlBoldUnderline gui=underline guifg=#a466aa guibg=bg
hi htmlItalic gui=underline guifg=bg guibg=#cc4944
hi htmlUnderlineItalic gui=underline guifg=#cc4944 guibg=bg
hi htmlBoldItalic gui=underline guifg=bg guibg=#aa338e
hi htmlBoldUnderlineItalic gui=underline guifg=#aa338e guibg=bg
hi htmlUnderline gui=underline guifg=fg guibg=bg
"}}}1
" vim:set nowrap foldmethod=marker expandtab:

View File

@ -1,83 +0,0 @@
" Vim color file {{{1
" Maintainer: hira@users.sourceforge.jp
" Last Change: 2003/11/29 (Sat) 13:28:25.
" Version: 1.2
" This color scheme uses a dark background.
" Happy Hacking color scheme {{{1
set background=dark
hi clear
if exists("syntax_on")
syntax reset
endif
let colors_name = expand("<sfile>:t:r")
let html_my_rendering = 1
" frame & title & message (theme) {{{1
hi LineNr gui=underline guifg=#757164 guibg=#1c1910
hi Folded gui=none guifg=#757164 guibg=bg
hi FoldColumn gui=none guifg=#757164 guibg=bg
" title
hi Title gui=underline guifg=fg guibg=#555144
" message
hi MoreMsg gui=underline guifg=bg guibg=#986c32
hi Question gui=underline guifg=bg guibg=#986c32
hi NonText gui=underline guifg=#2c2920 guibg=#2c2920
hi VertSplit gui=underline guifg=bg guibg=#1c1910
hi StatusLine gui=underline guifg=fg guibg=#1c1910
hi StatusLineNC gui=underline guifg=#3c382c guibg=#1c1910
" cursor {{{1
hi WildMenu gui=underline guifg=bg guibg=#ccbf99
hi Cursor gui=underline guifg=bg guibg=#ccbf99
hi IncSearch gui=underline guifg=bg guibg=#ccbf99
hi CursorIM gui=underline guifg=fg guibg=#458800
hi Search gui=underline guifg=bg guibg=#997e33
hi Visual gui=underline guifg=bg guibg=#887f66
" message {{{1
hi ErrorMsg gui=underline guifg=bg guibg=#dd6674
hi WarningMsg gui=underline guifg=bg guibg=#cc7e66
hi ModeMsg gui=underline guifg=bg guibg=#819933
"TODO
" inner {{{1
hi Normal gui=none guifg=#bbae88 guibg=#332f22
hi Ignore gui=none guifg=bg guibg=bg
hi Todo gui=underline guifg=bg guibg=#cc7e66
hi Error gui=underline guifg=fg guibg=#7e3399
hi Special gui=none guifg=#afbb66 guibg=bg
hi SpecialKey gui=none guifg=#81cc66 guibg=bg
hi Identifier gui=none guifg=#bea869 guibg=bg
hi Constant gui=none guifg=#818822 guibg=bg
hi Statement gui=none guifg=#aa6667 guibg=bg
hi Comment gui=none guifg=#458800 guibg=bg
hi Underlined gui=underline guifg=#66998c guibg=bg
hi Directory gui=none guifg=#776a44 guibg=bg
hi PreProc gui=none guifg=#776e55 guibg=bg
hi Type gui=none guifg=#9fbb22 guibg=bg
" diff {{{1
hi DiffText gui=underline guifg=bg guibg=#ffe499
hi DiffChange gui=underline guifg=bg guibg=#aa9455
hi DiffDelete gui=none guifg=bg guibg=#89aa22
hi DiffAdd gui=underline guifg=bg guibg=#cc3a22
" html {{{1
hi htmlLink gui=underline guifg=#89aa66 guibg=bg
hi htmlBold gui=underline guifg=bg guibg=#aa6667
hi htmlBoldUnderline gui=underline guifg=#aa6667 guibg=bg
hi htmlItalic gui=underline guifg=bg guibg=#bccc44
hi htmlUnderlineItalic gui=underline guifg=#bccc44 guibg=bg
hi htmlBoldItalic gui=underline guifg=bg guibg=#aa5833
hi htmlBoldUnderlineItalic gui=underline guifg=#aa5833 guibg=bg
hi htmlUnderline gui=underline guifg=fg guibg=bg
"}}}1
" vim:set nowrap foldmethod=marker expandtab:

View File

@ -1,83 +0,0 @@
" Vim color file {{{1
" Maintainer: hira@users.sourceforge.jp
" Last Change: 2003/11/29 (Sat) 13:28:25.
" Version: 1.2
" This color scheme uses a dark background.
" Happy Hacking color scheme {{{1
set background=dark
hi clear
if exists("syntax_on")
syntax reset
endif
let colors_name = expand("<sfile>:t:r")
let html_my_rendering = 1
" frame & title & message (theme) {{{1
hi LineNr gui=underline guifg=#647564 guibg=#101c10
hi Folded gui=none guifg=#647564 guibg=bg
hi FoldColumn gui=none guifg=#647564 guibg=bg
" title
hi Title gui=underline guifg=fg guibg=#445544
" message
hi MoreMsg gui=underline guifg=bg guibg=#439832
hi Question gui=underline guifg=bg guibg=#439832
hi NonText gui=underline guifg=#202c20 guibg=#202c20
hi VertSplit gui=underline guifg=bg guibg=#101c10
hi StatusLine gui=underline guifg=fg guibg=#101c10
hi StatusLineNC gui=underline guifg=#2c3c2c guibg=#101c10
" cursor {{{1
hi WildMenu gui=underline guifg=bg guibg=#99cc99
hi Cursor gui=underline guifg=bg guibg=#99cc99
hi IncSearch gui=underline guifg=bg guibg=#99cc99
hi CursorIM gui=underline guifg=fg guibg=#008866
hi Search gui=underline guifg=bg guibg=#339933
hi Visual gui=underline guifg=bg guibg=#668866
" message {{{1
hi ErrorMsg gui=underline guifg=bg guibg=#ccdd66
hi WarningMsg gui=underline guifg=bg guibg=#99cc66
hi ModeMsg gui=underline guifg=bg guibg=#339966
"TODO
" inner {{{1
hi Normal gui=none guifg=#88bb88 guibg=#223322
hi Ignore gui=none guifg=bg guibg=bg
hi Todo gui=underline guifg=bg guibg=#99cc66
hi Error gui=underline guifg=fg guibg=#993333
hi Special gui=none guifg=#66bb88 guibg=bg
hi SpecialKey gui=none guifg=#66cccc guibg=bg
hi Identifier gui=none guifg=#69be69 guibg=bg
hi Constant gui=none guifg=#228844 guibg=bg
hi Statement gui=none guifg=#99aa66 guibg=bg
hi Comment gui=none guifg=#008866 guibg=bg
hi Underlined gui=underline guifg=#666699 guibg=bg
hi Directory gui=none guifg=#447744 guibg=bg
hi PreProc gui=none guifg=#557755 guibg=bg
hi Type gui=none guifg=#22bb66 guibg=bg
" diff {{{1
hi DiffText gui=underline guifg=bg guibg=#99ff99
hi DiffChange gui=underline guifg=bg guibg=#55aa55
hi DiffDelete gui=none guifg=bg guibg=#22aa66
hi DiffAdd gui=underline guifg=bg guibg=#88cc22
" html {{{1
hi htmlLink gui=underline guifg=#66aa99 guibg=bg
hi htmlBold gui=underline guifg=bg guibg=#99aa66
hi htmlBoldUnderline gui=underline guifg=#99aa66 guibg=bg
hi htmlItalic gui=underline guifg=bg guibg=#44cc77
hi htmlUnderlineItalic gui=underline guifg=#44cc77 guibg=bg
hi htmlBoldItalic gui=underline guifg=bg guibg=#66aa33
hi htmlBoldUnderlineItalic gui=underline guifg=#66aa33 guibg=bg
hi htmlUnderline gui=underline guifg=fg guibg=bg
"}}}1
" vim:set nowrap foldmethod=marker expandtab:

View File

@ -1,83 +0,0 @@
" Vim color file {{{1
" Maintainer: hira@users.sourceforge.jp
" Last Change: 2003/11/29 (Sat) 13:28:25.
" Version: 1.2
" This color scheme uses a dark background.
" Happy Hacking color scheme {{{1
set background=dark
hi clear
if exists("syntax_on")
syntax reset
endif
let colors_name = expand("<sfile>:t:r")
let html_my_rendering = 1
" frame & title & message (theme) {{{1
hi LineNr gui=underline guifg=#686475 guibg=#13101c
hi Folded gui=none guifg=#686475 guibg=bg
hi FoldColumn gui=none guifg=#686475 guibg=bg
" title
hi Title gui=underline guifg=fg guibg=#484455
" message
hi MoreMsg gui=underline guifg=bg guibg=#373298
hi Question gui=underline guifg=bg guibg=#373298
hi NonText gui=underline guifg=#23202c guibg=#23202c
hi VertSplit gui=underline guifg=bg guibg=#13101c
hi StatusLine gui=underline guifg=fg guibg=#13101c
hi StatusLineNC gui=underline guifg=#302c3c guibg=#13101c
" cursor {{{1
hi WildMenu gui=underline guifg=bg guibg=#a499cc
hi Cursor gui=underline guifg=bg guibg=#a499cc
hi IncSearch gui=underline guifg=bg guibg=#a499cc
hi CursorIM gui=underline guifg=fg guibg=#662088
hi Search gui=underline guifg=bg guibg=#493399
hi Visual gui=underline guifg=bg guibg=#6d6688
" message {{{1
hi ErrorMsg gui=underline guifg=bg guibg=#66b2dd
hi WarningMsg gui=underline guifg=bg guibg=#6683cc
hi ModeMsg gui=underline guifg=bg guibg=#7c3399
"TODO
" inner {{{1
hi Normal gui=none guifg=#9388bb guibg=#262233
hi Ignore gui=none guifg=bg guibg=bg
hi Todo gui=underline guifg=bg guibg=#6683cc
hi Error gui=underline guifg=fg guibg=#335544
hi Special gui=none guifg=#9b66bb guibg=bg
hi SpecialKey gui=none guifg=#cc66b6 guibg=bg
hi Identifier gui=none guifg=#7c69be guibg=bg
hi Constant gui=none guifg=#774499 guibg=bg
hi Statement gui=none guifg=#668aaa guibg=bg
hi Comment gui=none guifg=#662088 guibg=bg
hi Underlined gui=underline guifg=#997166 guibg=bg
hi Directory gui=none guifg=#4f4477 guibg=bg
hi PreProc gui=none guifg=#5c5577 guibg=bg
hi Type gui=none guifg=#7733cc guibg=bg
" diff {{{1
hi DiffText gui=underline guifg=bg guibg=#af99ff
hi DiffChange gui=underline guifg=bg guibg=#6855aa
hi DiffDelete gui=none guifg=bg guibg=#8422aa
hi DiffAdd gui=underline guifg=bg guibg=#2263cc
" html {{{1
hi htmlLink gui=underline guifg=#a866aa guibg=bg
hi htmlBold gui=underline guifg=bg guibg=#668aaa
hi htmlBoldUnderline gui=underline guifg=#668aaa guibg=bg
hi htmlItalic gui=underline guifg=bg guibg=#9544cc
hi htmlUnderlineItalic gui=underline guifg=#9544cc guibg=bg
hi htmlBoldItalic gui=underline guifg=bg guibg=#334caa
hi htmlBoldUnderlineItalic gui=underline guifg=#334caa guibg=bg
hi htmlUnderline gui=underline guifg=fg guibg=bg
"}}}1
" vim:set nowrap foldmethod=marker expandtab:

View File

@ -1,60 +0,0 @@
" Vim color file
" Maintainer: Maarten Slaets
" Last Change: 2002 Aug 16
" Color settings similar to that used in IBM Edit
set background=dark
hi clear
if exists("syntax_on")
syntax reset
endif
let g:colors_name="ibmedit"
hi Normal term=NONE cterm=NONE ctermfg=Gray ctermbg=DarkBlue
hi Normal gui=NONE guifg=#CCCCCC guibg=DarkBlue
hi NonText term=NONE cterm=NONE ctermfg=Gray ctermbg=DarkBlue
hi NonText gui=NONE guifg=#CCCCCC guibg=DarkBlue
hi Statement term=NONE cterm=NONE ctermfg=White ctermbg=DarkBlue
hi Statement gui=NONE guifg=White guibg=DarkBlue
hi Special term=NONE cterm=NONE ctermfg=White ctermbg=DarkBlue
hi Special gui=NONE guifg=White guibg=DarkBlue
hi Constant term=NONE cterm=NONE ctermfg=Cyan ctermbg=DarkBlue
hi Constant gui=NONE guifg=#99CCFF guibg=DarkBlue
hi Comment term=NONE cterm=NONE ctermfg=Blue ctermbg=DarkBlue
hi Comment gui=NONE guifg=#6666FF guibg=DarkBlue
hi Preproc term=NONE cterm=NONE ctermfg=Cyan ctermbg=DarkBlue
hi Preproc gui=NONE guifg=#99CCFF guibg=DarkBlue
hi Type term=NONE cterm=NONE ctermfg=Gray ctermbg=DarkBlue
hi Type gui=NONE guifg=#CCCCCC guibg=DarkBlue
hi Identifier term=NONE cterm=NONE ctermfg=Grey ctermbg=DarkBlue
hi Identifier gui=NONE guifg=#CCCCCC guibg=DarkBlue
hi StatusLine term=bold cterm=bold ctermfg=Black ctermbg=White
hi StatusLine gui=bold guifg=Black guibg=White
hi StatusLineNC term=NONE cterm=NONE ctermfg=Black ctermbg=White
hi StatusLineNC gui=NONE guifg=Black guibg=White
hi Visual term=NONE cterm=NONE ctermfg=Black ctermbg=DarkCyan
hi Visual gui=NONE guifg=Black guibg=Gray
hi Search term=NONE cterm=NONE ctermbg=Gray
hi Search gui=NONE guibg=Gray
hi VertSplit term=NONE cterm=NONE ctermfg=Black ctermbg=White
hi VertSplit gui=NONE guifg=Black guibg=White
hi Directory term=NONE cterm=NONE ctermfg=Green ctermbg=DarkBlue
hi Directory gui=NONE guifg=Green guibg=DarkBlue
hi WarningMsg term=standout cterm=NONE ctermfg=Red ctermbg=DarkBlue
hi WarningMsg gui=standout guifg=Red guibg=DarkBlue
hi Error term=NONE cterm=NONE ctermfg=White ctermbg=Red
hi Error gui=NONE guifg=White guibg=Red
hi Cursor ctermfg=Black ctermbg=Yellow
hi Cursor guifg=Black guibg=Yellow

View File

@ -1,66 +0,0 @@
" Vim color file
" Maintainer: Shirk <shirk@gmx.net>
" Last Change: 19 September 2005 - 0.2
" URL: trinity.gentoofreaks.org
" cool help screens
" :he group-name
" :he highlight-groups
" :he cterm-colors
set background=dark "or light
hi clear
if exists("syntax_on")
syntax reset
endif
let g:colors_name="impact"
if exists("g:impact_transbg")
hi Normal ctermfg=LightGray ctermbg=none
hi NonText ctermfg=DarkGray ctermbg=none
hi Statement ctermfg=Blue ctermbg=none
hi Comment ctermfg=DarkGray ctermbg=none cterm=bold term=bold
hi Constant ctermfg=DarkCyan ctermbg=none
hi Identifier ctermfg=Cyan ctermbg=none
hi Type ctermfg=DarkGreen ctermbg=none
hi Folded ctermfg=DarkGreen ctermbg=none cterm=underline term=none
hi Special ctermfg=Blue ctermbg=none
hi PreProc ctermfg=LightGray ctermbg=none cterm=bold term=bold
hi Scrollbar ctermfg=Blue ctermbg=none
hi Cursor ctermfg=white ctermbg=none
hi ErrorMsg ctermfg=Red ctermbg=none cterm=bold term=bold
hi WarningMsg ctermfg=Yellow ctermbg=none
hi VertSplit ctermfg=White ctermbg=none
hi Directory ctermfg=Cyan ctermbg=DarkBlue
hi Visual ctermfg=White ctermbg=DarkGray cterm=underline term=none
hi Title ctermfg=White ctermbg=DarkBlue
hi StatusLine term=bold cterm=bold,underline ctermfg=White ctermbg=Black
hi StatusLineNC term=bold cterm=bold,underline ctermfg=Gray ctermbg=Black
hi LineNr term=bold cterm=bold ctermfg=White ctermbg=DarkGray
else
hi Normal ctermfg=LightGray ctermbg=Black
hi NonText ctermfg=DarkGray ctermbg=Black
hi Statement ctermfg=Blue ctermbg=Black
hi Comment ctermfg=DarkGray ctermbg=Black cterm=bold term=bold
hi Constant ctermfg=DarkCyan ctermbg=Black
hi Identifier ctermfg=Cyan ctermbg=Black
hi Type ctermfg=DarkGreen ctermbg=Black
hi Folded ctermfg=DarkGreen ctermbg=Black cterm=underline term=none
hi Special ctermfg=Blue ctermbg=Black
hi PreProc ctermfg=LightGray ctermbg=Black cterm=bold term=bold
hi Scrollbar ctermfg=Blue ctermbg=Black
hi Cursor ctermfg=white ctermbg=Black
hi ErrorMsg ctermfg=Red ctermbg=Black cterm=bold term=bold
hi WarningMsg ctermfg=Yellow ctermbg=Black
hi VertSplit ctermfg=White ctermbg=Black
hi Directory ctermfg=Cyan ctermbg=DarkBlue
hi Visual ctermfg=White ctermbg=DarkGray cterm=underline term=none
hi Title ctermfg=White ctermbg=DarkBlue
hi StatusLine term=bold cterm=bold,underline ctermfg=White ctermbg=Black
hi StatusLineNC term=bold cterm=bold,underline ctermfg=Gray ctermbg=Black
hi LineNr term=bold cterm=bold ctermfg=White ctermbg=DarkGray
endif

View File

@ -1,212 +0,0 @@
" Vim color file
" Name: inkpot.vim
" Maintainer: Ciaran McCreesh <ciaran.mccreesh@blueyonder.co.uk>
" This should work in the GUI, rxvt-unicode (88 colour mode) and xterm (256
" colour mode). It won't work in 8/16 colour terminals.
"
" To use a black background, :let g:inkpot_black_background = 1
set background=dark
hi clear
if exists("syntax_on")
syntax reset
endif
let colors_name = "inkpot"
" map a urxvt cube number to an xterm-256 cube number
fun! <SID>M(a)
return strpart("0135", a:a, 1) + 0
endfun
" map a urxvt colour to an xterm-256 colour
fun! <SID>X(a)
if &t_Co == 88
return a:a
else
if a:a == 8
return 237
elseif a:a < 16
return a:a
elseif a:a > 79
return 232 + (3 * (a:a - 80))
else
let l:b = a:a - 16
let l:x = l:b % 4
let l:y = (l:b / 4) % 4
let l:z = (l:b / 16)
return 16 + <SID>M(l:x) + (6 * <SID>M(l:y)) + (36 * <SID>M(l:z))
endif
endif
endfun
if ! exists("g:inkpot_black_background")
let g:inkpot_black_background = 0
endif
if has("gui_running")
if ! g:inkpot_black_background
hi Normal gui=NONE guifg=#cfbfad guibg=#1e1e27
else
hi Normal gui=NONE guifg=#cfbfad guibg=#000000
endif
hi IncSearch gui=BOLD guifg=#303030 guibg=#cd8b60
hi Search gui=NONE guifg=#303030 guibg=#cd8b60
hi ErrorMsg gui=BOLD guifg=#ffffff guibg=#ce4e4e
hi WarningMsg gui=BOLD guifg=#ffffff guibg=#ce8e4e
hi ModeMsg gui=BOLD guifg=#7e7eae guibg=NONE
hi MoreMsg gui=BOLD guifg=#7e7eae guibg=NONE
hi Question gui=BOLD guifg=#ffcd00 guibg=NONE
hi StatusLine gui=BOLD guifg=#b9b9b9 guibg=#3e3e5e
hi User1 gui=BOLD guifg=#00ff8b guibg=#3e3e5e
hi User2 gui=BOLD guifg=#7070a0 guibg=#3e3e5e
hi StatusLineNC gui=NONE guifg=#b9b9b9 guibg=#3e3e5e
hi VertSplit gui=NONE guifg=#b9b9b9 guibg=#3e3e5e
hi WildMenu gui=BOLD guifg=#eeeeee guibg=#6e6eaf
hi MBENormal guifg=#cfbfad guibg=#2e2e3f
hi MBEChanged guifg=#eeeeee guibg=#2e2e3f
hi MBEVisibleNormal guifg=#cfcfcd guibg=#4e4e8f
hi MBEVisibleChanged guifg=#eeeeee guibg=#4e4e8f
hi DiffText gui=NONE guifg=#ffffcd guibg=#4a2a4a
hi DiffChange gui=NONE guifg=#ffffcd guibg=#306b8f
hi DiffDelete gui=NONE guifg=#ffffcd guibg=#6d3030
hi DiffAdd gui=NONE guifg=#ffffcd guibg=#306d30
hi Cursor gui=NONE guifg=#404040 guibg=#8b8bff
hi lCursor gui=NONE guifg=#404040 guibg=#8fff8b
hi CursorIM gui=NONE guifg=#404040 guibg=#8b8bff
hi Folded gui=NONE guifg=#cfcfcd guibg=#4b208f
hi FoldColumn gui=NONE guifg=#8b8bcd guibg=#2e2e2e
hi Directory gui=NONE guifg=#00ff8b guibg=NONE
hi LineNr gui=NONE guifg=#8b8bcd guibg=#2e2e2e
hi NonText gui=BOLD guifg=#8b8bcd guibg=NONE
hi SpecialKey gui=BOLD guifg=#ab60ed guibg=NONE
hi Title gui=BOLD guifg=#af4f4b guibg=NONE
hi Visual gui=NONE guifg=#eeeeee guibg=#4e4e8f
hi Comment gui=NONE guifg=#cd8b00 guibg=NONE
hi Constant gui=NONE guifg=#ffcd8b guibg=NONE
hi String gui=NONE guifg=#ffcd8b guibg=#404040
hi Error gui=NONE guifg=#ffffff guibg=#6e2e2e
hi Identifier gui=NONE guifg=#ff8bff guibg=NONE
hi Ignore gui=NONE
hi Number gui=NONE guifg=#f0ad6d guibg=NONE
hi PreProc gui=NONE guifg=#409090 guibg=NONE
hi Special gui=NONE guifg=#c080d0 guibg=NONE
hi SpecialChar gui=NONE guifg=#c080d0 guibg=#404040
hi Statement gui=NONE guifg=#808bed guibg=NONE
hi Todo gui=BOLD guifg=#303030 guibg=#d0a060
hi Type gui=NONE guifg=#ff8bff guibg=NONE
hi Underlined gui=BOLD guifg=#df9f2d guibg=NONE
hi TaglistTagName gui=BOLD guifg=#808bed guibg=NONE
hi perlSpecialMatch gui=NONE guifg=#c080d0 guibg=#404040
hi perlSpecialString gui=NONE guifg=#c080d0 guibg=#404040
hi cSpecialCharacter gui=NONE guifg=#c080d0 guibg=#404040
hi cFormat gui=NONE guifg=#c080d0 guibg=#404040
hi doxygenBrief gui=NONE guifg=#fdab60 guibg=NONE
hi doxygenParam gui=NONE guifg=#fdd090 guibg=NONE
hi doxygenPrev gui=NONE guifg=#fdd090 guibg=NONE
hi doxygenSmallSpecial gui=NONE guifg=#fdd090 guibg=NONE
hi doxygenSpecial gui=NONE guifg=#fdd090 guibg=NONE
hi doxygenComment gui=NONE guifg=#ad7b20 guibg=NONE
hi doxygenSpecial gui=NONE guifg=#fdab60 guibg=NONE
hi doxygenSpecialMultilineDesc gui=NONE guifg=#ad600b guibg=NONE
hi doxygenSpecialOnelineDesc gui=NONE guifg=#ad600b guibg=NONE
if v:version >= 700
hi Pmenu gui=NONE guifg=#eeeeee guibg=#4e4e8f
hi PmenuSel gui=BOLD guifg=#eeeeee guibg=#2e2e3f
hi PmenuSbar gui=BOLD guifg=#eeeeee guibg=#6e6eaf
hi PmenuThumb gui=BOLD guifg=#eeeeee guibg=#6e6eaf
hi SpellBad gui=undercurl guisp=#cc6666
hi SpellRare gui=undercurl guisp=#cc66cc
hi SpellLocal gui=undercurl guisp=#cccc66
hi SpellCap gui=undercurl guisp=#66cccc
hi MatchParen gui=NONE guifg=#404040 guibg=#8fff8b
endif
else
if ! g:inkpot_black_background
exec "hi Normal cterm=NONE ctermfg=" . <SID>X(79) . " ctermbg=" . <SID>X(80)
else
exec "hi Normal cterm=NONE ctermfg=" . <SID>X(79) . " ctermbg=" . <SID>X(16)
endif
exec "hi IncSearch cterm=BOLD ctermfg=" . <SID>X(80) . " ctermbg=" . <SID>X(73)
exec "hi Search cterm=NONE ctermfg=" . <SID>X(80) . " ctermbg=" . <SID>X(73)
exec "hi ErrorMsg cterm=BOLD ctermfg=" . <SID>X(16) . " ctermbg=" . <SID>X(48)
exec "hi WarningMsg cterm=BOLD ctermfg=" . <SID>X(16) . " ctermbg=" . <SID>X(68)
exec "hi ModeMsg cterm=BOLD ctermfg=" . <SID>X(38) . " ctermbg=" . "NONE"
exec "hi MoreMsg cterm=BOLD ctermfg=" . <SID>X(38) . " ctermbg=" . "NONE"
exec "hi Question cterm=BOLD ctermfg=" . <SID>X(52) . " ctermbg=" . "NONE"
exec "hi StatusLine cterm=BOLD ctermfg=" . <SID>X(85) . " ctermbg=" . <SID>X(81)
exec "hi User1 cterm=BOLD ctermfg=" . <SID>X(28) . " ctermbg=" . <SID>X(81)
exec "hi User2 cterm=BOLD ctermfg=" . <SID>X(39) . " ctermbg=" . <SID>X(81)
exec "hi StatusLineNC cterm=NONE ctermfg=" . <SID>X(84) . " ctermbg=" . <SID>X(81)
exec "hi VertSplit cterm=NONE ctermfg=" . <SID>X(84) . " ctermbg=" . <SID>X(81)
exec "hi WildMenu cterm=BOLD ctermfg=" . <SID>X(87) . " ctermbg=" . <SID>X(38)
exec "hi MBENormal ctermfg=" . <SID>X(85) . " ctermbg=" . <SID>X(81)
exec "hi MBEChanged ctermfg=" . <SID>X(87) . " ctermbg=" . <SID>X(81)
exec "hi MBEVisibleNormal ctermfg=" . <SID>X(85) . " ctermbg=" . <SID>X(82)
exec "hi MBEVisibleChanged ctermfg=" . <SID>X(87) . " ctermbg=" . <SID>X(82)
exec "hi DiffText cterm=NONE ctermfg=" . <SID>X(79) . " ctermbg=" . <SID>X(34)
exec "hi DiffChange cterm=NONE ctermfg=" . <SID>X(79) . " ctermbg=" . <SID>X(17)
exec "hi DiffDelete cterm=NONE ctermfg=" . <SID>X(79) . " ctermbg=" . <SID>X(32)
exec "hi DiffAdd cterm=NONE ctermfg=" . <SID>X(79) . " ctermbg=" . <SID>X(20)
exec "hi Folded cterm=NONE ctermfg=" . <SID>X(79) . " ctermbg=" . <SID>X(35)
exec "hi FoldColumn cterm=NONE ctermfg=" . <SID>X(39) . " ctermbg=" . <SID>X(80)
exec "hi Directory cterm=NONE ctermfg=" . <SID>X(28) . " ctermbg=" . "NONE"
exec "hi LineNr cterm=NONE ctermfg=" . <SID>X(39) . " ctermbg=" . <SID>X(80)
exec "hi NonText cterm=BOLD ctermfg=" . <SID>X(39) . " ctermbg=" . "NONE"
exec "hi SpecialKey cterm=BOLD ctermfg=" . <SID>X(55) . " ctermbg=" . "NONE"
exec "hi Title cterm=BOLD ctermfg=" . <SID>X(48) . " ctermbg=" . "NONE"
exec "hi Visual cterm=NONE ctermfg=" . <SID>X(79) . " ctermbg=" . <SID>X(38)
exec "hi Comment cterm=NONE ctermfg=" . <SID>X(52) . " ctermbg=" . "NONE"
exec "hi Constant cterm=NONE ctermfg=" . <SID>X(73) . " ctermbg=" . "NONE"
exec "hi String cterm=NONE ctermfg=" . <SID>X(73) . " ctermbg=" . <SID>X(81)
exec "hi Error cterm=NONE ctermfg=" . <SID>X(79) . " ctermbg=" . <SID>X(32)
exec "hi Identifier cterm=NONE ctermfg=" . <SID>X(53) . " ctermbg=" . "NONE"
exec "hi Ignore cterm=NONE"
exec "hi Number cterm=NONE ctermfg=" . <SID>X(69) . " ctermbg=" . "NONE"
exec "hi PreProc cterm=NONE ctermfg=" . <SID>X(25) . " ctermbg=" . "NONE"
exec "hi Special cterm=NONE ctermfg=" . <SID>X(55) . " ctermbg=" . "NONE"
exec "hi SpecialChar cterm=NONE ctermfg=" . <SID>X(55) . " ctermbg=" . <SID>X(81)
exec "hi Statement cterm=NONE ctermfg=" . <SID>X(27) . " ctermbg=" . "NONE"
exec "hi Todo cterm=BOLD ctermfg=" . <SID>X(16) . " ctermbg=" . <SID>X(57)
exec "hi Type cterm=NONE ctermfg=" . <SID>X(71) . " ctermbg=" . "NONE"
exec "hi Underlined cterm=BOLD ctermfg=" . <SID>X(77) . " ctermbg=" . "NONE"
exec "hi TaglistTagName cterm=BOLD ctermfg=" . <SID>X(39) . " ctermbg=" . "NONE"
if v:version >= 700
exec "hi Pmenu cterm=NONE ctermfg=" . <SID>X(87) . " ctermbg=" . <SID>X(82)
exec "hi PmenuSel cterm=BOLD ctermfg=" . <SID>X(87) . " ctermbg=" . <SID>X(38)
exec "hi PmenuSbar cterm=BOLD ctermfg=" . <SID>X(87) . " ctermbg=" . <SID>X(39)
exec "hi PmenuThumb cterm=BOLD ctermfg=" . <SID>X(87) . " ctermbg=" . <SID>X(39)
exec "hi SpellBad cterm=NONE ctermbg=" . <SID>X(32)
exec "hi SpellRare cterm=NONE ctermbg=" . <SID>X(33)
exec "hi SpellLocal cterm=NONE ctermbg=" . <SID>X(36)
exec "hi SpellCap cterm=NONE ctermbg=" . <SID>X(21)
exec "hi MatchParen cterm=NONE ctermbg=" . <SID>X(14) . "ctermfg=" . <SID>X(25)
endif
endif
" vim: set et :

Some files were not shown because too many files have changed in this diff Show More