/*
 * Colours taken from Tim Pope's Vivid Chalk theme for Vim.
 * (Vivid Chalk is a port of TextMate's Vibrant Ink theme).
 *
 * Andy Stewart, AirBlade Software Ltd.
 * May 2007
 */
pre {
	background-color: #000000;
	border: 2px solid #CCCCCC;
}
code {
	color: white;
}

code.ruby span.comment {
	color: #9933cc;  /* Vivid Chalk: Comment */
}
code.ruby span.brackets {
}
code.ruby span.string {
	color: #66ff00;  /* Vivid Chalk: String */
}
code.ruby span.keywords {
	color: #ff6600;  /* Vivid Chalk: Statement */
}
code.ruby span.constants {
	color: #339999;  /* Vivid Chalk: Constant */
}
code.ruby span.symbol {
	color: #339999;  /* Vivid Chalk: Constant */
}
code.ruby span.instance {
	color: #ffcc00;  /* Vivid Chalk: Identifier */
}
code.ruby span.method {
	color: #dde93d;  /* Vivid Chalk: rubyMethod */
}

code.css span.comment {
	color: #9933cc;  /* Vivid Chalk: Comment */
}
code.css span.keywords {
	color: #aaaaaa;  /* Vivid Chalk: Special */
}
code.css span.selectors {
	color: #ff6600;  /* Vivid Chalk: Statement */
}
code.css span.properties {
  color: #dde93d;  /* guess at value for Vivid Chalk: Function */
}
code.css span.units {
	color: #339999;  /* guess at value for Vivid Chalk: Number */
}
code.css span.urls {
	color: #66ff00;  /* Vivid Chalk: String */
}

code.html span.comment {
	color: #9933cc;  /* Vivid Chalk: Comment */
}
code.html span.tag {
  color: #dde93d;  /* guess at value for Vivid Chalk: Function */
}
code.html span.string {
	color: #66ff00;  /* Vivid Chalk: String */
}
code.html span.attribute {
	color: #999966;  /* Vivid Chalk: Type */
}
code.html span.doctype {
	color: #aaaaaa;  /* Vivid Chalk: Special */
}

code.javascript span.comment {
	color: #9933cc;  /* Vivid Chalk: Comment */
}
code.javascript span.brackets {
}
code.javascript span.string {
	color: #66ff00;  /* Vivid Chalk: String */
}
code.javascript span.keywords {
	color: #ff6600;  /* Vivid Chalk: Statement */
}
code.javascript span.global {
	color: #ff6600;  /* Vivid Chalk: Statement */
}
