/**
 * atom-dark theme for `prism.js`
 * Based on Atom's `atom-dark` theme: https://github.com/atom/atom-dark-syntax
 * @author Joe Gibson (@gibsjose)
 */

code[class*="language-"],
pre[class*="language-"] {
    color: #c5c8c6;
    text-shadow: none;
    font-family: "JetBrains Mono", "Fira Code", Inconsolata, Monaco, Consolas, "Courier New", monospace;
    direction: ltr;
    text-align: left;
    white-space: pre;
    word-spacing: normal;
    word-break: 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;
}

/* Code blocks */
pre[class*="language-"] {
    padding: 1em 1.25em;
    margin: 0.75em 0;
    overflow: auto;
    border-radius: 0.75em;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.15);
}

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

/* Inline code */
:not(pre) > code[class*="language-"] {
    padding: 0.15em 0.35em;
    border-radius: 0.4em;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

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

.token.punctuation {
    color: #c5c8c6;
}

.namespace {
    opacity: .7;
}

.token.property,
.token.keyword,
.token.tag {
    color: #b294bb;
}

.token.class-name {
    color: #81a2be;
    text-decoration: none;
}

.token.boolean,
.token.constant {
    color: #de935f;
}

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

.token.number {
    color: #de935f;
}

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

.token.variable {
    color: #f0c674;
}

.token.operator {
    color: #8abeb7;
}

.token.entity {
    color: #81a2be;
    cursor: help;
}

.token.url {
    color: #81a2be;
}

.language-css .token.string,
.style .token.string {
    color: #b5bd68;
}

.token.atrule,
.token.attr-value {
    color: #f0c674;
}

.token.function {
    color: #81a2be;
}

.token.regex {
    color: #f0c674;
}

.token.important {
    color: #fd971f;
}

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

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