summaryrefslogtreecommitdiffstats
path: root/colors
diff options
context:
space:
mode:
authorJérémy Zurcher <jeremy@asynk.ch>2012-04-14 11:37:11 +0200
committerJérémy Zurcher <jeremy@asynk.ch>2012-04-14 11:37:11 +0200
commitaf82a4774376c7a2d31294d5a4053dd409c37af5 (patch)
treec6cfcbfd7f18565224523cbbe107941282ef123d /colors
parent77942d2c2258f580a0e49ffce863ca55f433a017 (diff)
downloadvim-af82a4774376c7a2d31294d5a4053dd409c37af5.zip
vim-af82a4774376c7a2d31294d5a4053dd409c37af5.tar.gz
add adobe colorscheme
Diffstat (limited to 'colors')
-rw-r--r--colors/adobe.vim87
1 files changed, 87 insertions, 0 deletions
diff --git a/colors/adobe.vim b/colors/adobe.vim
new file mode 100644
index 0000000..e516fbc
--- /dev/null
+++ b/colors/adobe.vim
@@ -0,0 +1,87 @@
+" Vim color file
+" Maintainer: mdelliot
+" Last Change: $Date: 2005-09-23 08:53:22 -0700 (Fri, 23 Sep 2005) $
+" Revsision: $Revision: 38 $
+" Version: 0.2
+" Info: Adobe theme, easy on eyes.
+"
+""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
+" Philosophy:
+"
+" - Nothing should be bold unless it's very important and should stand
+" out above all other things. Functions/Classes are good for this.
+"
+" - Colors should be easy on eyes to stare at for many hours.
+"
+" - Todos should stand out just a little (underline looks nice).
+"
+" - Comments should be stand out less than anything else.
+"
+" - Strings should be a beautiful color since much documentation should
+" exist in source code as strings (think """ comments in python or /**
+" in java).
+"
+" - Normal text should be colored either black or white so it is obvious
+" if something is not recognized syntax.
+"
+" - No two used colors should be highly similar.
+
+set background=dark
+hi clear
+if exists("syntax_on")
+ syntax reset
+endif
+let g:colors_name = "adobe"
+
+"hi Normal guibg=#a0a087 ctermbg=black
+
+" Cursor
+hi Cursor guibg=Yellow guifg=NONE ctermfg=NONE ctermbg=yellow
+
+" Search
+hi Search guibg=green ctermfg=green
+
+" Fold
+hi Folded guibg=#a0a087
+
+" Split area
+hi StatusLine gui=reverse guibg=white
+
+" Messages
+hi ModeMsg gui=none
+hi MoreMsg gui=reverse
+hi Question gui=NONE guifg=#ffff60 guibg=NONE
+
+" Other
+hi Todo gui=underline guifg=white guibg=NONE cterm=bold,underline ctermbg=NONE
+hi NonText guifg=blue ctermfg=darkblue
+hi VisualNOS gui=underline
+hi Title gui=none
+
+" Diff
+hi DiffDelete gui=none
+hi DiffText gui=none
+
+" Html
+hi htmlBoldUnderline gui=underline
+hi htmlBold gui=none
+hi htmlBoldItalic gui=none
+hi htmlBoldUnderlineItalic gui=underline
+
+" Syntax group
+hi Comment guifg=darkgrey gui=reverse ctermfg=darkgrey
+hi Statement guifg=orange4 gui=none ctermfg=brown
+hi Type guifg=#22229a gui=none ctermfg=yellow
+hi String guifg=#005522 ctermfg=darkgreen
+hi PreProc guifg=#0066ff ctermfg=darkcyan
+hi Special guifg=purple3 ctermfg=darkmagenta
+hi Constant guifg=red4 ctermfg=darkred
+hi Identifier guifg=red ctermfg=red
+hi Function guifg=darkred gui=bold ctermfg=magenta
+hi Underlined guifg=yellow ctermfg=yellow
+
+" OLD ATTEMPTS
+"hi Normal guibg=#b0b097 ctermbg=black
+"hi String guifg=#0099aa ctermfg=brown
+"hi String guifg=#0055dd ctermfg=brown
+"hi Special guifg=darkblue ctermfg=none