/* PrismJS 1.30.0
https://prismjs.com/download#themes=prism&languages=markup+json+jsonp+xml-doc&plugins=jsonp-highlight */

:root {
    --prop-key: #991b1b;
    --prop-string: #1565c0;
    --prop-number: #ef4444;
    --prop-boolean: #6a1e8a;
}

    :root[data-bs-theme="dark"] {
        --prop-key: #dc8482;
        --prop-string: #92bae8;
        --prop-number: #ffa97a;
        --prop-boolean: #cc73f2;
    }

code[class*=language-], pre[class*=language-] {
    color: #000;
    background: 0 0;
    font-size: 14px;
    text-align: left;
    white-space: pre-wrap;
    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
}

.language-json {
    padding: 0px;
    margin: 0px;
    border: 0;
    border-radius: 0;
}

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

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

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

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

.token.cdata, .token.comment, .token.doctype, .token.prolog {
    color: #708090
}

.token.punctuation {
    color: #999
}

.token.namespace {
    opacity: .7
}

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

.token.attr-name, .token.builtin, .token.char, .token.inserted, .token.selector {
    color: #690
}

.language-css .token.string, .style .token.string, .token.entity, .token.operator, .token.url {
    color: #9a6e3a;
}

.token.atrule, .token.attr-value, .token.keyword {
    color: #07a
}

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

.token.important, .token.regex, .token.variable {
    color: #e90
}

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

.token.italic {
    font-style: italic
}

.token.entity {
    cursor: help
}

/* Custom */
.token.boolean {
    color: var(--prop-boolean);
    font-weight:bold;
}

.token.number {
    color: var(--prop-number);
}
.token.string {
    color: var(--prop-string);
}