Skip to content

Instantly share code, notes, and snippets.

@joshuaclayton
Created October 6, 2010 01:07
Show Gist options
  • Save joshuaclayton/612630 to your computer and use it in GitHub Desktop.
Save joshuaclayton/612630 to your computer and use it in GitHub Desktop.
vim_colors "totallybogus" do
author "Josh Clayton <[email protected]>"
notes "This is something kinda crazy"
reset true
background :light
warn_on_column_count 80
normal "000", "F8F8FF"
cursor "F8F8FF", "445" do
line :bg => "D8D8DD"
column :bg => "E8E8EE"
end
cursor "F8F8FF", "445" do
line :bg => "D8D8DD"
column :bg => "E8E8EE"
end
diff do
add "030", "DFD"
text "DCC", "DFF"
delete "DCC", "FDD"
change :bg => "EEE"
end
link :xmlTag, :xmlTagName, :shDeref, :pythonFunction, :to => :Identifier
link :rubySharpBang, :perlSharpBang, :to => :Special
link :Character, :to => :Number
link :CursorIm, :to => :Cursor
link :VisualNos, :to => :Visual
WildMenu "7FBDFF", "425C78"
Pmenu "ffffff", "808080", :gui => :bold
PmenuSel "000000", "cdcdfd", :gui => :italic
PmenuSbar "444444", "000000"
PmenuThumb "aaaaaa", "aaaaaa"
end
" Vim color file
"
" Author: Josh Clayton <[email protected]>
"
" Notes: This is something kinda crazy
let g:colors_name="totallybogus"
hi clear
if version > 580
if exists("syntax_on")
syntax reset
endif
endif
set background=light
hi Normal guifg=#000000 guibg=#F8F8FF
hi Cursor guifg=#F8F8FF guibg=#444455
hi CursorLine guibg=#D8D8DD
hi CursorColumn guibg=#E8E8EE
hi DiffAdd guifg=#003300 guibg=#DDFFDD
hi DiffChange guibg=#EEEEEE
hi DiffText guifg=#DDCCCC guibg=#DDFFFF
hi DiffDelete guifg=#DDCCCC guibg=#FFDDDD
hi link xmlTag Identifier
hi link xmlTagName Identifier
hi link shDeref Identifier
hi link pythonFunction Identifier
hi link rubySharpBang Special
hi link perlSharpBang Special
hi link Character Number
hi link CursorIm Cursor
hi link VisualNos Visual
hi WildMenu guifg=#7FBDFF guibg=#425C78
hi Pmenu guifg=#FFFFFF guibg=#808080 gui=bold
hi PmenuSel guifg=#000000 guibg=#CDCDFD gui=italic
hi PmenuSbar guifg=#444444 guibg=#000000
hi PmenuThumb guifg=#AAAAAA guibg=#AAAAAA
match Error /%80.+/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment