/*
 * A stylesheet designed to be used with the HTML output of the
 * Perl module Text::Highlight::Vim.
 *
 * This is designed to make the highlighting look like the default gvim
 * colour scheme, with 'background=light'.
 *
 * Geoff Richards (qef@laxan.com)
 *
 * This CSS file (light.css) is public domain.  Do what you want with it.
 * That doesn't mean that HTML with this CSS in is public domain.
 */

pre.vim {
  background: #222222 none;
  color: #ffffff;
  font-weight: bold;
}

.slide code {
  padding: 0px;
}

.synComment    { color: #80a0ff }
.synConstant   { color: #ffa0a0 }
.synIdentifier { color: #40ffff }
.synStatement  { color: #ffff60 }
.synPreProc    { color: #ff80ff }
.synType       { color: #60ff60 }
.synSpecial    { color: #ffa500 }
.synUnderlined { color: #ffff60 ; text-decoration: underline }
.synError      { color: #FFFFFF ; background: #FF0000 none }
.synTodo       { color: #0000FF ; background: #FFFF00 none }
