
/*
heavily modified version of
https://github.com/google/code-prettify/blob/master/styles/desert.css
*/


pre.prettyprint
{
 display: block;
 background-color:  black;
 color: white;

	font-size: 16px;
 	padding: 20 !important; 
}



pre .nocode 	{ color: white; font-weight: bold  }

pre .pln 	{ color: white }    				/* plaintext */
pre .pun 	{ color: white }    				/* punctuation */

pre .kwd 	{ color: lightgreen; font-weight: bold }
pre .typ 	{ color: lightgreen; font-weight: bold } 	/* type    */

pre .com 	{ color: lightblue } 				/* comment */


pre .tag 	{ color: lightgreen; font-weight: bold } 		/* html/xml tag    */
pre .atn 	{ color: lightgreen; font-weight: bold } 		/* attribute name  */

pre .str 	{ color: yellow } 				/* string */
pre .atv 	{ color: yellow } 				/* attribute value */

pre .lit 	{ color: pink; font-weight: bold; } 				/* literal */
pre .dec 	{ color: pink; font-weight: bold; } 				/* decimal */

 

/* LISP brackets */ 
/* pre in front of them does not work */

.opn	{ color: white !important; } 
.clo 	{ color: white !important; } 
 
