/* PrismJS 1.22.0
https://prismjs.com/download.html#themes=prism-dark&languages=markup+css+clike+javascript+abap+abnf+actionscript+ada+agda+al+antlr4+apacheconf+apex+apl+applescript+aql+arduino+arff+asciidoc+aspnet+asm6502+autohotkey+autoit+bash+basic+batch+bbcode+birb+bison+bnf+brainfuck+brightscript+bro+bsl+c+csharp+cpp+cil+clojure+cmake+coffeescript+concurnas+csp+crystal+css-extras+cypher+d+dart+dataweave+dax+dhall+diff+django+dns-zone-file+docker+ebnf+editorconfig+eiffel+ejs+elixir+elm+etlua+erb+erlang+excel-formula+fsharp+factor+firestore-security-rules+flow+fortran+ftl+gml+gcode+gdscript+gedcom+gherkin+git+glsl+go+graphql+groovy+haml+handlebars+haskell+haxe+hcl+hlsl+http+hpkp+hsts+ichigojam+icon+ignore+inform7+ini+io+j+java+javadoc+javadoclike+javastacktrace+jolie+jq+jsdoc+js-extras+json+json5+jsonp+jsstacktrace+js-templates+julia+keyman+kotlin+latex+latte+less+lilypond+liquid+lisp+livescript+llvm+lolcode+lua+makefile+markdown+markup-templating+matlab+mel+mizar+mongodb+monkey+moonscript+n1ql+n4js+nand2tetris-hdl+naniscript+nasm+neon+nginx+nim+nix+nsis+objectivec+ocaml+opencl+oz+parigp+parser+pascal+pascaligo+pcaxis+peoplecode+perl+php+phpdoc+php-extras+plsql+powerquery+powershell+processing+prolog+promql+properties+protobuf+pug+puppet+pure+purebasic+purescript+python+q+qml+qore+r+racket+jsx+tsx+reason+regex+renpy+rest+rip+roboconf+robotframework+ruby+rust+sas+sass+scss+scala+scheme+shell-session+smali+smalltalk+smarty+sml+solidity+solution-file+soy+sparql+splunk-spl+sqf+sql+stan+iecst+stylus+swift+t4-templating+t4-cs+t4-vb+tap+tcl+tt2+textile+toml+turtle+twig+typescript+typoscript+unrealscript+vala+vbnet+velocity+verilog+vhdl+vim+visual-basic+warpscript+wasm+wiki+xeora+xml-doc+xojo+xquery+yaml+yang+zig&plugins=line-numbers */
/**
 * prism.js Dark theme for JavaScript, CSS and HTML
 * Based on the slides of the talk “/Reg(exp){2}lained/”
 * @author Lea Verou
 */

pre.theme-dark code[class*="language-"],
pre[class*="language-"].theme-dark {
	color: white;
	background: none;
	text-shadow: 0 -.1em .2em black;
	font-family: Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', 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;
}

@media print {
	pre.theme-dark code[class*="language-"],
	pre[class*="language-"].theme-dark {
		text-shadow: none;
	}
}

pre[class*="language-"].theme-dark {
	background: hsl(30, 20%, 25%);
}

/* Code blocks */
pre[class*="language-"].theme-dark {
	padding: 1em;
	margin: .5em 0;
	overflow: auto;
	border: .3em solid hsl(30, 20%, 40%);
	border-radius: .5em;
	box-shadow: 1px 1px .5em black inset;
}

pre.theme-dark .token.comment,
pre.theme-dark .token.prolog,
pre.theme-dark .token.doctype,
pre.theme-dark .token.cdata {
	color: hsl(30, 20%, 50%);
}

pre.theme-dark .token.punctuation {
	opacity: .7;
}

pre.theme-dark .token.namespace {
	opacity: .7;
}

pre.theme-dark .token.property,
pre.theme-dark .token.tag,
pre.theme-dark .token.boolean,
pre.theme-dark .token.number,
pre.theme-dark .token.constant,
pre.theme-dark .token.symbol {
	color: hsl(350, 40%, 70%);
}

pre.theme-dark .token.selector,
pre.theme-dark .token.attr-name,
pre.theme-dark .token.string,
pre.theme-dark .token.char,
pre.theme-dark .token.builtin,
pre.theme-dark .token.inserted {
	color: hsl(75, 70%, 60%);
}

pre.theme-dark .token.operator,
pre.theme-dark .token.entity,
pre.theme-dark .token.url,
pre.theme-dark .language-css .token.string,
pre.theme-dark .style .token.string,
pre.theme-dark .token.variable {
	color: hsl(40, 90%, 60%);
}

pre.theme-dark .token.atrule,
pre.theme-dark .token.attr-value,
pre.theme-dark .token.keyword {
	color: hsl(350, 40%, 70%);
}

pre.theme-dark .token.regex,
pre.theme-dark .token.important {
	color: #e90;
}

pre.theme-dark .token.important,
pre.theme-dark .token.bold {
	font-weight: bold;
}
pre.theme-dark .token.italic {
	font-style: italic;
}

pre.theme-dark .token.entity {
	cursor: help;
}

pre.theme-dark .token.deleted {
	color: red;
}

pre[class*="language-"].theme-dark.line-numbers {
	position: relative;
	padding-left: 3.8em;
	counter-reset: linenumber;
}

pre[class*="language-"].theme-dark.line-numbers > code {
	position: relative;
	white-space: inherit;
}

pre.theme-dark.line-numbers .line-numbers-rows {
	position: absolute;
	pointer-events: none;
	top: 0;
	font-size: 100%;
	left: -3.8em;
	width: 3em; /* works for line-numbers below 1000 lines */
	letter-spacing: -1px;
	border-right: 1px solid #999;

	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;

}

pre.theme-dark .line-numbers-rows > span {
	display: block;
	counter-increment: linenumber;
}

pre.theme-dark .line-numbers-rows > span:before {
	content: counter(linenumber);
	color: #999;
	display: block;
	padding-right: 0.8em;
	text-align: right;
}

