Skip to content

Instantly share code, notes, and snippets.

Created October 16, 2012 12:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anonymous/3899006 to your computer and use it in GitHub Desktop.
Save anonymous/3899006 to your computer and use it in GitHub Desktop.
vim colorscheme "blueshifted.vim"
" Blueshift-edited
" Based upon the Blueshift color scheme
" by Jan Zwiener, mail: jan@zwiener.org
" Based upon the pyte color scheme by Henning Hasemann
"
" 2010/11/16: Version 1.0
"
set background=light
hi clear
if exists("syntax_on")
syntax reset
endif
let colors_name = "blueshift"
" Taglist colors
hi MyTagListFileName guifg=black guibg=#c0d0e0
hi MyTagListTagName guifg=black guibg=#ffbc29
if version >= 700
hi CursorLine guibg=#f6f6f6
hi CursorColumn guibg=#f6f6f6
hi MatchParen guifg=black guibg=#afbfdf
hi TabLine guifg=black guibg=#b0b8c0
hi TabLineFill guifg=#9098a0
hi TabLineSel guifg=black guibg=#f0f0f0 gui=bold
hi Pmenu guifg=white guibg=#808080
hi PmenuSel guifg=black guibg=#ffbc29
endif
hi Title guifg=#202020 gui=none
hi Underlined guifg=#202020 gui=underline
hi Normal guifg=black guibg=#f0f0f0
hi ModeMsg guifg=black guibg=white
hi Cursor guifg=#f0f0f0 guibg=#105080
hi LineNr guifg=#ffffff guibg=#b0c0d0
hi Visual guifg=white guibg=#5381bc
hi WildMenu guifg=black guibg=#ffbc29
hi IncSearch guibg=black guifg=#ffbc29
hi Question guifg=black guibg=#ffbc29
hi StatusLine guifg=white guibg=#8090a0 gui=bold
hi StatusLineNC guifg=#708090 guibg=#ced5db gui=none
hi VertSplit guifg=#a0b0c0 guibg=#a0b0c0 gui=none
hi NonText guifg=#bebebe guibg=#f2f2f2
hi Comment guifg=#8090a0 gui=none
hi Folded guifg=#708090 guibg=#c0d0e0
hi Folded guifg=#708090 guibg=#c0d0e0
hi FoldColumn guifg=#708090 guibg=#c0d0e0
hi Constant guifg=black
hi Number guifg=#208000 gui=none
hi Float guifg=black
hi Boolean guifg=#0048ff
hi String guifg=#a00000 gui=none
hi Statement guifg=#0048ff gui=bold
hi Type guifg=#0048ff gui=bold
hi Structure guifg=#0048ff gui=bold
hi Identifier guifg=#000060 gui=bold
hi Function guifg=#001080 gui=bold
hi Repeat guifg=#0048ff gui=bold
hi Conditional guifg=#0048ff gui=bold
hi Operator guifg=black
hi PreProc guifg=#1060a0 gui=none
hi Define guifg=#1060a0 gui=bold
hi Include guifg=#1060a0 gui=bold
hi Error guifg=black guibg=red gui=bold,underline
hi Todo guifg=red guibg=#f0c000 gui=bold
hi SpecialKey guifg=#1060a0 guibg=yellow
hi Special guifg=black
" Diff
hi DiffChange guifg=NONE guibg=#e0e0e0 gui=bold
hi DiffText guifg=NONE guibg=#f0c8c8 gui=bold
hi DiffAdd guifg=NONE guibg=#c0e0d0 gui=bold
hi DiffDelete guifg=NONE guibg=#f0e0b0 gui=bold
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment