/* VS Code Dark+ Theme for Prism */

:root {
    --prism-code-bg: #1e1e1e;
    --prism-code-color: #d4d4d4;
}

code[class*="language-"],
pre[class*="language-"] {
    color: #d4d4d4;
    /* background: #1e1e1e; */
    font-family: Menlo, Monaco, Consolas, "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-"] {
    padding: 1em;
    margin: 0.5em 0;
    overflow: auto;
    border-radius: 0.3em;
}

:not(pre) > code[class*="language-"] {
    padding: 0.1em 0.3em;
    border-radius: 0.3em;
    background: #1e1e1e;
}

.token.comment,
.token.prolog,
.token.doctype {
    color: #6a9955;
}

.token.punctuation {
    color: #d4d4d4;
}

.token.property,
.token.tag,
.token.boolean,
.token.number,
.token.constant,
.token.symbol,
.token.deleted {
    color: #b5cea8;
}

.token.selector,
.token.attr-name,
.token.string,
.token.char,
.token.builtin,
.token.inserted {
    color: #ce9178;
}

.token.operator {
    color: #d4d4d4;
}

.token.keyword {
    color: #569cd6;
}

.token.class-name,
.token.function {
    color: #dcdcaa;
}

.token.variable {
    color: #9cdcfe;
}

.token.regex {
    color: #d16969;
}

.token.important {
    color: #569cd6;
}

/* Mine Language specific overrides (will be set by prism-mine.js) */
.token.modifier {
    color: #546ca5;
}

.token.builtin-type {
    color: #4ec9b0;
}

.token.control-flow {
    color: #c586c0;
}

.token.parameter {
    color: #9cdcfe;
}

.token.as-keyword {
    color: #569cd6;
}

.token.structure-l1,
.token.structure-l2,
.token.structure-l3 {
    color: #6d6d6d;
}
