/* PrismJS 1.30.0
https://prismjs.com/download#themes=prism-tomorrow&languages=markup+css+clike+javascript+c+cpp+glsl+markdown+rust+wgsl+zig */
/**
 * prism.js tomorrow night eighties for JavaScript, CoffeeScript, CSS and HTML
 * Based on https://github.com/chriskempson/tomorrow-theme
 * @author Rose Pritchard
 */

code,
pre {
	color: #ccc;
	background: none;
	font-family: Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace;
	font-size: 0.9em;
	text-align: left;
	white-space: pre;
	word-spacing: normal;
	word-break: normal;
	word-wrap: normal;
	line-height: 1.25;

	-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 {
	padding: 1em;
	margin: .5em 0;
	overflow: auto;
}

:not(pre) > code,
pre {
	background: #112;
	border-radius: 5px;
}

/* Inline code */
:not(pre) > code {
	padding: .25em;
	border-radius: .3em;
	white-space: normal;
}

.comment,
.block-comment,
.prolog,
.doctype,
.cdata {
	color: #999;
}

.punctuation {
	color: #ccc;
}

.variable {
	color: #cc99cd;
}

.tag,
.attr-name,
.namespace,
.deleted {
	color: #e2777a;
}

.boolean,
.number {
	color: #f08d49;
}

.class-name,
.constant,
.symbol {
	color: #f8c555;
}

.property {
	color: #f68;
}

.selector,
.important,
.atrule,
.keyword,
.builtin {
	color: #cc99cd;
}

.type {
	color: #aaf;
}

.string,
.char,
.function,
.attr-value,
.regex {
	color: #7ec699;
}

.operator,
.entity,
.url {
	color: #67cdcc;
}

.important,
.bold {
	font-weight: bold;
}
.italic {
	font-style: italic;
}

.entity {
	cursor: help;
}

.inserted {
	color: green;
}

