/*
	Standard-Stylesheet file for "Yet Another Cpp 2 HTML Tool"
	(c) by Benjamin Kaufmann
	This program is distributed	 WITHOUT ANY WARRANTY;
	without even the implied warranty of MERCHANTABILITY or
	FITNESS FOR A PARTICULAR PURPOSE.

	See Cpp2HtmlConf for more information about configuring the
	generated output.

*/

/*
	Used abbreviations:
	Key 	: keywords (e.g. class)
	Tspec	: type specifiers (e.g. int or const)
	Sspec	: storage class specifiers (e.g. static)
	Fspec	: function specifiers (e.g. virtual)
	Delim	: operators/punctators (e.g. {})
	Func	: functions
	Com		: Comments (single and multi-line)
	Str		: Strings (string and character literals)
	Num		: Numbers
	Id		: Identifiers
	Prep	: Preprocessor directives (e.g. #include)
	Imp		: Headernames (e.g. <iostream> or "foo.h")
	Oth		: All other characters
*/
.LineNr
{
	color: black;

}
.Key
{
	color: #3030F0;
	font-weight: bold;
}
.Tspec
{
	color: #3030F0;
	font-weight: bold;
}
.Sspec
{
	color: #3030F0;
}
.Fspec
{
	color: #3030F0;
}

.Delim
{
	color: black;
}
.Oth
{
	color: fuchsia;
}

.Func
{
	color: #3030F0;
	font-weight: bold;
}
.Com
{
	color: green;
}

.Str
{
	color: black;
	background-color: #E0E0F0;
}

.Imp
{
	color: #004040;
}
.Num
{
	color: #F03030;
}
.Id
{
	color: black;
}

.Prep
{
	color: #008000;
}

pre
{
	color: black;
	font-family: "Courier New", Courier, monospace;
	font-size: 10 pt;
}
.GenCode
{
	color: black;
	font-size: 10 pt;
	white-space: pre;
}

