/**
 * -- this version modified beyond recognition for pastebin; but details of original / inspiration theme below:
 * Coldark Theme for Prism.js
 * Theme variation: Dark
 * Tested with HTML, CSS, JS, JSON, PHP, YAML, Bash script
 * @author Armand Philippot <contact@armandphilippot.com>
 * @homepage https://github.com/ArmandPhilippot/coldark-prism
 * @license MIT
 */
code[class*="language-"],
pre[class*="language-"] {
	color: #bbb;
	background: #202020;
	font-family: Consolas, Monaco, "Andale Mono", "Ubuntu Mono", monospace;
	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 {
	background: #2d3d50;
}

.line-numbers-rows {
	border-right: 1px solid #555 !important;
}

/* overrides color-values for the Line Highlight plugin
 * http://prismjs.com/plugins/line-highlight/
 */
.line-highlight.line-highlight {
	background: #8da1b92f;
	background: linear-gradient(to right, hsl(192 20% 30% / 20%) 70%, rgba(153, 122, 102, 0));
}

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

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

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

.token.prolog,
.token.doctype,
.token.cdata {
	color: #8da1b9;
}

.token.comment {
	color: #616161;
}

.token.punctuation {
	color: #b2b2b2;
}

.token.delimiter.important,
.token.selector .parent,
.token.tag,
.token.tag .token.punctuation {
	color: #42a3a3;
}

.token.attr-name,
.token.boolean,
.token.boolean.important,
.token.number,
.token.constant,
.token.selector .token.attribute {
	color: #b2a238;
}

.token.class-name,
.token.key,
.token.parameter,
.token.property,
.token.property-access,
.token.variable {
	color: #4b90ba;
}

.token.attr-value,
.token.color,
.token.selector .token.value,
.token.string,
.token.string .token.url-link {
	color: #66a14d;
}

.token.builtin,
.token.keyword-array,
.token.package,
.token.regex {
	color: #4c7adb;
}

.token.function,
.token.selector .token.class,
.token.selector .token.id {
	color: #a45fa4;
}

.token.atrule .token.rule,
.token.combinator,
.token.keyword,
.token.operator,
.token.pseudo-class,
.token.pseudo-element,
.token.selector,
.token.unit {
	color: #bf895c;
}

.token.important {
	color: #ca5049;
}

.token.keyword-this,
.token.this {
	color: #4b90ba;
}

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

.token.delimiter.important {
	font-weight: inherit;
}

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

.token.entity {
	cursor: help;
}

.language-markdown .token.title,
.language-markdown .token.title .token.punctuation {
	color: #4b90ba;
	font-weight: bold;
}

.language-markdown .token.blockquote.punctuation {
	color: #4c7adb;
}

.language-markdown .token.code {
	color: #42a3a3;
}

.language-markdown .token.hr.punctuation {
	color: #4b90ba;
}

.language-markdown .token.url .token.content {
	color: #66a14d;
}

.language-markdown .token.url-link {
	color: #b2a238;
}

.language-markdown .token.list.punctuation {
	color: #4c7adb;
}

.language-markdown .token.table-header {
	color: #b2b2b2;
}

.language-json .token.operator {
	color: #b2b2b2;
}

.language-scss .token.variable {
	color: #42a3a3;
}

/* Diff Highlight plugin overrides */
.token.deleted {
	color: #9c3b22;
}
.token.inserted {
    color: #507f3c;
}

pre.diff-highlight > code .token.deleted:not(.prefix),
pre > code.diff-highlight .token.deleted:not(.prefix) {
    background-color: lch(14 14 23);
}

pre.diff-highlight > code .token.deleted:not(.prefix)::selection,
pre.diff-highlight > code .token.deleted:not(.prefix) *::selection,
pre > code.diff-highlight .token.deleted:not(.prefix)::selection,
pre > code.diff-highlight .token.deleted:not(.prefix) *::selection {
    background-color: lch(20 14 23);
}

pre.diff-highlight > code .token.inserted:not(.prefix),
pre > code.diff-highlight .token.inserted:not(.prefix) {
    background-color: lch(17 18 142);
}

pre.diff-highlight > code .token.inserted:not(.prefix)::selection,
pre.diff-highlight > code .token.inserted:not(.prefix) *::selection,
pre > code.diff-highlight .token.inserted:not(.prefix)::selection,
pre > code.diff-highlight .token.inserted:not(.prefix) *::selection {
    background-color: lch(23 18 142);
}

