/**
* GreenNight for Boomack green-night theme.
* @author Tobias Kiertscher
*/

code[class*="language-"],
pre[class*="language-"] {
	 color: #00C000;
	 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: #006000;
}

.token.comment,
.token.block-comment {
	 font-style: italic;
}

.token.punctuation {
	 color: #00D000;
}

.token.tag,
.token.attr-name,
.token.namespace,
.token.deleted {
	 color: #00FF00;
}

.token.function,
.token.function-name {
	 color: #00FF00;
	 font-style: italic;
}

.token.boolean,
.token.number {
	 color: #00C000;
}

.token.property,
.token.class-name,
.token.constant,
.token.symbol {
	 color: #00FF00;
}

.token.selector,
.token.important,
.token.atrule,
.token.keyword,
.token.builtin {
	 color: #00B800;
	 font-weight: 700;
}

.token.string,
.token.char,
.token.attr-value,
.token.regex,
.token.variable {
	 color: #00E000;
}

.token.operator,
.token.url {
	 color: #00F000;
}

.token.important,
.token.bold {
	 font-weight: bold;
}
.token.italic {
	 font-style: italic;
}

.token.entity {
	 background: #004000;
	 color: #00E000;
	 font-style: italic;
	 cursor: help;
}

.token.inserted {
	 color: #50FF50;
}
