:where(code, pre):where([class*="language-"]) {
	--_prism-bg: var(--prism-bg, #2b2b2b);
	--_prism-fg: var(--prism-fg, #f8f8f2);
	--_prism-comment: var(--prism-comment, #d4d0ab);
	--_prism-punctuation: var(--prism-punctuation, #fefefe);
	--_prism-property: var(--prism-property, #ffa07a);
	--_prism-boolean: var(--prism-boolean, #00e0e0);
	--_prism-selector: var(--prism-selector, #abe338);
	--_prism-operator: var(--prism-operator, #00e0e0);
	--_prism-atrule: var(--prism-atrule, #ffd700);
	--_prism-keyword: var(--prism-keyword, #00e0e0);
	--_prism-regex: var(--prism-regex, ##ffd700);
}

code[class*="language-"],
pre[class*="language-"] {
	background: none;
	color: var(--_prism-fg);
	font-family: Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace;
	line-height: 1.5;
	text-align: left;
	white-space: pre;
	word-break: normal;
	word-spacing: normal;
	word-wrap: normal;

	-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-"] {
	overflow: auto;
	padding: 1em;
	border-radius: 0.3em;
}

:not(pre) > code[class*="language-"],
pre[class*="language-"] {
	background: var(--_prism-bg);
}

/* Inline code */
:not(pre) > code[class*="language-"] {
	padding: 0.1em;
	border-radius: 0.3em;
	white-space: normal;
}

.token.comment,
.token.prolog,
.token.doctype,
.token.cdata {
	color: var(--_prism-comment);
}

.token.punctuation {
	color: var(--_prism-punctuation);
}

.token.property,
.token.tag,
.token.constant,
.token.symbol,
.token.deleted {
	color: var(--_prism-property);
}

.token.boolean,
.token.number {
	color: var(--_prism-boolean);
}

.token.selector,
.token.attr-name,
.token.string,
.token.char,
.token.builtin,
.token.inserted {
	color: var(--_prism-selector);
}

.token.operator,
.token.entity,
.token.url,
.language-css .token.string,
.style .token.string,
.token.variable {
	color: var(--_prism-operator);
}

.token.atrule,
.token.attr-value,
.token.function {
	color: var(--_prism-atrule);
}

.token.keyword {
	color: var(--_prism-keyword);
}

.token.regex,
.token.important {
	color: var(--_prism-regex);
}

.token.important,
.token.bold {
	font-weight: bold;
}

.token.italic {
	font-style: italic;
}

.token.entity {
	cursor: help;
}

@media screen and (-ms-high-contrast: active) {
	code[class*="language-"],
	pre[class*="language-"] {
		color: windowText;
		background: window;
	}

	:not(pre) > code[class*="language-"],
	pre[class*="language-"] {
		background: window;
	}

	.token.important {
		background: highlight;
		color: window;
		font-weight: normal;
	}

	.token.atrule,
	.token.attr-value,
	.token.function,
	.token.keyword,
	.token.operator,
	.token.selector {
		font-weight: bold;
	}

	.token.attr-value,
	.token.comment,
	.token.doctype,
	.token.function,
	.token.keyword,
	.token.operator,
	.token.property,
	.token.string {
		color: highlight;
	}

	.token.attr-value,
	.token.url {
		font-weight: normal;
	}
}