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

@media (prefers-color-scheme: light) {
    body {
        --hl-color: #000;
        --hl-prop: #905;
        --hl-func: #dd4a68;
        --hl-keyword: #07a;
        --hl-op: #9a6e3a;
		--hl-comment: slategray;
		--hl-imp: #333;
		--hl-string: #690;
    }
}
@media (prefers-color-scheme: dark) {
    body {
        --hl-color: #e5e5e5;
        --hl-prop: #e5e5e5;
        --hl-func: #36b30c;
        --hl-keyword: #139dcb;
        --hl-op: #e7b17c;
		--hl-comment: #8998a7;
		--hl-imp: #e90;
		--hl-string: #36b30c;
    }
}

code[class*="language-"],
pre[class*="language-"] {
    color: var(--hl-color);
    background: none;
    /* text-shadow: 0 1px white; */
    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-"]::-moz-selection,
pre[class*="language-"] ::-moz-selection,
code[class*="language-"]::-moz-selection,
code[class*="language-"] ::-moz-selection {
    text-shadow: none;
    background: #b3d4fc;
}

pre[class*="language-"]::selection,
pre[class*="language-"] ::selection,
code[class*="language-"]::selection,
code[class*="language-"] ::selection {
    text-shadow: none;
    background: #b3d4fc;
}

@media print {
    code[class*="language-"],
    pre[class*="language-"] {
        text-shadow: none;
    }
}

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

/* 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(--hl-comment);
}

.token.punctuation {
    color: #999;
}

.token.namespace {
    opacity: 0.7;
}

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

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

.token.operator,
.token.entity,
.token.url,
.language-css .token.string,
.style .token.string {
    color: var(--hl-op);
    /* 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(--hl-keyword);
}

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

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

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

.token.entity {
    cursor: help;
}
