/**
 * Prism.js Islands Dark Theme
 * Based on PhpStorm's Islands Dark color scheme
 * Colors extracted from Islands_Dark.icls
 */

code[class*="language-"],
pre[class*="language-"] {
    color: #bcbec4;
    background: none;
    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;
}

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

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

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

/* Comments */
.token.comment,
.token.block-comment,
.token.prolog,
.token.doctype,
.token.cdata {
    color: #7a7e85;
    font-style: italic;
}

/* Punctuation */
.token.punctuation {
    color: #bcbec4;
}

/* HTML/XML Tags */
.token.tag,
.token.namespace {
    color: #d5b778;
}

.token.attr-name {
    color: #bcbec4;
}

.token.deleted {
    color: #e05561;
}

/* Function names and calls */
.token.function-name,
.token.function {
    color: #56a8f5;
}

/* Numbers and booleans */
.token.boolean,
.token.number {
    color: #2aacb8;
}

/* Properties, class names, constants */
.token.property {
    color: #c77dbb;
}

.token.class-name {
    color: #3592c4;
}

.token.constant,
.token.symbol {
    color: #c77dbb;
}

/* Selectors, keywords, built-ins */
.token.selector,
.token.important,
.token.atrule,
.token.keyword,
.token.builtin {
    color: #cf8e6d;
}

/* Strings and character literals */
.token.string,
.token.char,
.token.attr-value {
    color: #6aab73;
}

/* Regular expressions */
.token.regex {
    color: #42c3d4;
}

/* Variables */
.token.variable {
    color: #c77dbb;
}

/* Operators, entities, URLs */
.token.operator,
.token.entity,
.token.url {
    color: #bcbec4;
}

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

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

.token.entity {
    cursor: help;
}

.token.inserted {
    color: #6aab73;
}
