/**
 * Aimeos Theme - PrismJS token colours for the dark code blocks
 * @license MIT, https://opensource.org/license/MIT
 */

code[class*="language-"],
pre[class*="language-"] {
    color: var(--pico-contrast-hover-background);
    font-family: var(--pico-font-family-monospace);
    text-align: left;
    white-space: pre;
    word-spacing: normal;
    word-break: normal;
    overflow-wrap: normal;
    line-height: 1.5;
    tab-size: 4;
    -webkit-hyphens: none;
    hyphens: none;
}

pre[class*="language-"] {
    overflow: auto;
}

.token.comment,
.token.prolog,
.token.doctype,
.token.cdata {
    color: #7E96AC;
}

.token.punctuation,
.token.variable,
.token.property {
    color: #C7D4DF;
}

.token.keyword,
.token.operator,
.token.tag,
.token.selector {
    color: #8FD0F5;
}

.token.string,
.token.attr-value,
.token.char {
    color: #E2C48C;
}

.token.number,
.token.boolean,
.token.constant {
    color: #B6D7A8;
}

.token.function,
.token.class-name {
    color: var(--pico-contrast-inverse);
}

/* Okaidia colours of the remaining tokens */

.token.attr-name,
.token.builtin,
.token.inserted {
    color: #A6E22E;
}

.token.deleted,
.token.symbol {
    color: #F92672;
}

.token.atrule {
    color: #E6DB74;
}

.token.important,
.token.regex {
    color: #FD971F;
}

.token.entity,
.token.url {
    color: #F8F8F2;
}

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

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

.token.namespace {
    opacity: 0.7;
}

.token.entity {
    cursor: help;
}
