Skip to content

Instantly share code, notes, and snippets.

@GarySmith
Created July 11, 2018 21:38
Show Gist options
  • Save GarySmith/3261eef8d660fc4792ecc26514a39cc0 to your computer and use it in GitHub Desktop.
Save GarySmith/3261eef8d660fc4792ecc26514a39cc0 to your computer and use it in GitHub Desktop.
" Vim colour scheme
"
" Based on the beauty256 color scheme
hi clear
set background=light
if exists("syntax_on")
syntax reset
endif
let g:colors_name = 'gary'
hi Normal gui=none guifg=Black guibg=White ctermfg=0 cterm=none
" Avoid setting ctermbg, so that it does not override the actual color of the
" background terminal, in case I want to set it to something other than white
" (such as partially transparent)
" hi Normal gui=none guifg=Black guibg=White ctermfg=0 ctermbg=231
" hi Ignore ctermfg=bg guifg=bg
hi Cursor guifg=White guibg=Black ctermfg=231 ctermbg=16
hi LineNr guifg=#828c95 guibg=#d8d8d8 ctermfg=131 ctermbg=255
hi NonText gui=bold guifg=DarkGray guibg=#bbbbbb ctermfg=7 ctermbg=7
hi SpecialKey ctermfg=4 term=bold
hi Title guifg=RoyalBlue4 ctermfg=5 term=bold
hi Visual guibg=#d8d8d8 ctermbg=7 term=reverse
hi FoldColumn guifg=Black guibg=#979797 ctermfg=4 ctermbg=7
hi Folded guifg=Black guibg=#bbbbbb ctermfg=244 ctermbg=7
hi StatusLine guifg=ForestGreen guibg=white ctermfg=28 ctermbg=231
hi StatusLineNC guifg=#829db9 guibg=Black ctermfg=8 ctermbg=188
hi VertSplit gui=bold guifg=#9ca6af guibg=Black cterm=bold ctermfg=231 ctermbg=8
hi Wildmenu guifg=Black guibg=White ctermfg=0 ctermbg=11
hi CursorLine cterm=None ctermbg=255 " Do not underline it
hi Pmenu gui=none guifg=Black guibg=Grey65 ctermfg=0 ctermbg=253
hi PmenuSbar gui=none guifg=fg guibg=Grey50 ctermbg=214
hi PmenuThumb gui=none guifg=fg guibg=Grey75 cterm=reverse
hi PmenuSel ctermbg=214 ctermfg=16
hi IncSearch gui=none guifg=White guibg=Black cterm=reverse
hi Search gui=none guifg=Black guibg=Yellow ctermbg=11
hi MoreMsg gui=bold guifg=ForestGreen
hi Question gui=bold guifg=ForestGreen
hi WarningMsg gui=bold guifg=Red
hi Comment cterm=none
hi Comment gui=italic guifg=#999999 cterm=italic ctermfg=248 term=None
hi Error gui=none guifg=White guibg=Red cterm=bold ctermfg=0 ctermbg=197
hi Identifier gui=none guifg=Sienna4 ctermfg=94
hi Special gui=none guifg=RoyalBlue4 ctermfg=69
hi PreProc gui=none guifg=RoyalBlue3 ctermfg=12
hi Todo gui=bold guifg=Black guibg=Yellow ctermfg=232 ctermbg=214
hi Type gui=NONE guifg=RoyalBlue4 ctermfg=62
hi Underlined gui=underline guifg=Blue
hi Directory ctermfg=132
hi Boolean gui=bold guifg=ForestGreen
hi Constant gui=none guifg=ForestGreen
hi Number gui=bold guifg=ForestGreen
hi String gui=none guifg=ForestGreen ctermfg=2
hi helpNote ctermfg=16 ctermbg=220
hi Label gui=bold,underline guifg=Sienna4
hi Statement gui=bold guifg=#bb88bb cterm=bold ctermfg=132
hi htmlStatement ctermfg=132
hi htmlBold gui=bold cterm=bold
hi htmlItalic gui=italic cterm=italic
hi htmlUnderline gui=underline cterm=underline
hi htmlBoldItalic gui=bold,italic
hi htmlBoldUnderline gui=bold,underline
hi htmlBoldUnderlineItalic gui=bold,underline,italic
hi htmlUnderlineItalic gui=underline,italic
hi djangoStatement guibg=#ddffaa ctermfg=22 ctermbg=150
hi docSpecial guifg=RoyalBlue1
hi docTrans guifg=White guibg=White
hi docCode guifg=#00aa00
hi DiffAdd guibg=LightGreen ctermbg=LightGreen
hi DiffChange guibg=LightCyan ctermbg=LightCyan
hi DiffDelete guifg=lightgreen ctermfg=lightgreen ctermbg=None
" guibg=None
hi DiffText guifg=red guibg=LightBlue cterm=None ctermfg=red ctermbg=lightblue
" hi DiffText cterm=None ctermbg=lightblue ctermfg=red gui=None guibg=LightBlue guifg=red
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment