/**
 * Monokai theme
 *
 * Adapted from Wimer Hazenberg's TextMate theme of the same name
 *
 * @author Wimer Hazenberg
 * @author Michael Fasani
 * @author Craig Campbell
 * @version 1.0.0
 */
pre {
    background: #272822;
    word-wrap: break-word;
    margin: 0px;
    padding: 10px;
    font-size: 16px;
    color: #ddd;
    margin-bottom: 20px;
}

@font-face {
  font-family: 'Bitstream Vera Sans Mono';
  src: url('../../../fonts/VeraMono.ttf');
}

pre, code {
    font-family: "Bitstream Vera Sans Mono", "Lucida Grande", monospace;
}

pre .comment {
    color: #616161;
}

pre .constant {
    color: #FFA31F;
}

pre .storage {
    color: #B2D2FF;
}

pre .string, pre .comment.docstring {
    color: #11A810;
}

pre .support.tag {
    color: #11A810;
}

pre .keyword {
    /* @todo some keywords use this light blue, most use the pink */
    /*color: #66D9EF;*/
    color: #B2D2FF;
}

pre .selector {
    color: #000;
}

pre .inherited-class {
    font-style: italic;
}

pre .operator, pre .support.tag-name , pre .entity.tag {
    color: #C7AB70;
}

pre .entity, pre .support.attribute, pre .entity.attribute {
    color: #C7AB70;
}

pre .support, *[data-language="c"] .function.call {
    color: #6ac;
}

*[data-language="html"] .support.operator {
    color: #11A810;
}

pre .css-property, pre .storage.function {
    font-style: italic;
}

pre .variable.global, pre .variable.class, pre .variable.instance {
    color: #A6E22E;
}

pre .static {
    color: #C7AB70;
}
