/**
 * RedNight for Boomack red-night theme.
 * @author Tobias Kiertscher
 */

 code[class*="language-"],
 pre[class*="language-"] {
	 color: #B00000;
	 background: none;
	 font-family: "Roboto Mono", Consolas, Courier, monospace;
	 font-size: 1em;
	 text-align: left;
	 white-space: pre;
	 word-spacing: normal;
	 word-break: normal;
	 word-wrap: normal;
	 line-height: 1.5;
 
	 -moz-tab-size: 4;
	 -o-tab-size: 4;
	 tab-size: 4;
 
	 -webkit-hyphens: none;
	 -moz-hyphens: none;
	 -ms-hyphens: none;
	 hyphens: none;
 
 }
 
 /* Code blocks */
 pre[class*="language-"] {
	 padding: 1em;
	 margin: .5em 0;
	 overflow: auto;
 }
 
 :not(pre) > code[class*="language-"],
 pre[class*="language-"] {
	 background: #000000;
 }
 
 /* Inline code */
 :not(pre) > code[class*="language-"] {
	 padding: .1em;
	 border-radius: .3em;
	 white-space: normal;
 }
 
 .token.comment,
 .token.block-comment,
 .token.prolog,
 .token.doctype,
 .token.cdata {
	 color: #600000;
 }

 .token.comment,
 .token.block-comment {
	 font-style: italic;
 }
 
 .token.punctuation {
	 color: #D00000;
 }
 
 .token.tag,
 .token.attr-name,
 .token.namespace,
 .token.deleted {
	 color: #FF0000;
 }
 
 .token.function,
 .token.function-name {
	 color: #FF0000;
	 font-style: italic;
 }
 
 .token.boolean,
 .token.number {
	 color: #C00000;
 }
 
 .token.property,
 .token.class-name,
 .token.constant,
 .token.symbol {
	 color: #FF0000;
 }
 
 .token.selector,
 .token.important,
 .token.atrule,
 .token.keyword,
 .token.builtin {
	 color: #B80000;
	 font-weight: 700;
 }
 
 .token.string,
 .token.char,
 .token.attr-value,
 .token.regex,
 .token.variable {
	 color: #E00000;
 }
 
 .token.operator,
 .token.url {
	 color: #F00000;
 }
 
 .token.important,
 .token.bold {
	 font-weight: bold;
 }
 .token.italic {
	 font-style: italic;
 }
 
 .token.entity {
	 background: #300000;
	 color: #E00000;
	 font-style: italic;
	 cursor: help;
 }
 
 .token.inserted {
	 color: #FF4040;
 }
 