/*
 * This style controls the colors output by 2html.vim, which
 * comes with the Vim7 distribution and can be used to
 * htmlize highlighted Vim buffers.
 */

/*
 * ### NON-BRIGHT
 *
 * #000000	black	0	0	0	
 * #800000	red	128	0	0
 * #008000	green	0	128	0
 * #808000	yellow	128	128	0
 * #000080	blue	0	0	128
 * #800080	magenta	128	0	128
 * #008080	cyan	0	128	128
 * #c0c0c0	white	192	192	192
 *
 * ### BRIGHT
 *
 * #808080	black	128	128	128
 * #ff0000	red	255	0	0
 * #00ff00	green	0	255	0
 * #ffff00	yellow	255	255	0
 * #0000ff	blue	0	0	255
 * #ff00ff	magenta	255	0	255
 * #00ffff	cyan	0	255	255
 * #ffffff	white	255	255	255
 */

pre {
	background:	black;
	color:		#c0c0c0;
	font-weight:	bold;
}

.Comment	{ color: #00ffff;					       }
.Constant	{ color: #ff00ff;					       }
.Identifier	{ color: #00ffff;					       }
.Statement	{ color: #ffff00;					       }
.PreProc	{ color: #000080;					       }
.Type		{ color: #ffff00;					       }
.Special	{ color: #ff0000;					       }
.Underlined	{ color: #ffffff;					       }
.Error		{ color: #ffffff; background: #ff0000; text-decoration: none;  }
.Todo		{ color: #000000; background: #808000; text-decoration: none;  }
