/* PrismJS 1.25.0
https://prismjs.com/download.html#themes=prism&languages=markup+css+clike+javascript+bash+markup-templating+perl+php */
/**
 * prism.js default theme for JavaScript, CSS and HTML
 * Based on dabblet (http://dabblet.com)
 * @author Lea Verou
 * @author tonton.couillon
 */

:root
{
	--code-bg: hsl(0 0% var(--l-70));/* #333;*/
	--code-sel-bg: #111;
	--token-comment-fg: hsl(0 0% var(--l-40));/* #888;*/
	--token-operator-fg: hsl(0 0% var(--l-20));/* #bbb;*/
	--token-number-fg: #905;
	--token-char-fg: #690;
	--token-url-fg: #ab7f4b;
	--token-keyword-fg: #29c;
	--token-function-fg: #DD4A68;
	--token-variable-fg: hsl(35 100% var(--l-45));/* #e90;*/
}

code[class*="language-"],
pre[class*="language-"] {
	color: dodgerblue;
	background: var(--code-bg);
	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;
}

pre[class*="language-"]::selection, pre[class*="language-"] ::selection,
code[class*="language-"]::selection, code[class*="language-"] ::selection,
pre[class*="language-"]::-moz-selection, pre[class*="language-"] ::-moz-selection,
code[class*="language-"]::-moz-selection, code[class*="language-"] ::-moz-selection {
	background: var(--code-sel-bg);
}

/* Code blocks */
pre[class*="language-"] {
	padding: 1em;
	margin: .5em 0;
	overflow: auto;
}

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

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

.token.operator,
.token.punctuation {
	color: var(--token-operator-fg);
}

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

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

.token.entity,
.token.url,
.language-css .token.string,
.style .token.string {
	color: var(--token-url-fg);
	/* This background color was intended by the author of this theme.  background: hsla(0, 0%, 100%, .5); */
}

.token.atrule,
.token.attr-value,
.token.keyword {
	color: var(--token-keyword-fg);
}

.token.function,
.token.class-name {
	color: var(--token-function-fg);
}

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

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

.token.entity {
	cursor: help;
}

/* vim: set ts=2 sw=2 : */
