/*
 * This file is based off of the neat.css file from codemirror. But it's been
 * modified to match our custom colors.
 */
.cm-s-neat span.cm-comment {
  color: #8e6c4a;
}

.cm-s-neat span.cm-keyword {
  line-height: 1em;
  font-weight: bold;
  color: blue;
}

.cm-s-neat span.cm-string {
  color: #b50c70;
}

.cm-s-neat span.cm-string-2 {
  color: #b50c70;
}

.cm-s-neat span.cm-builtin {
  line-height: 1em;
  font-weight: bold;
  color: #077;
}

.cm-s-neat span.cm-special {
  line-height: 1em;
  font-weight: bold;
  color: #0aa;
}

.cm-s-neat span.cm-variable {
  color: black;
}

.cm-s-neat span.cm-number, .cm-s-neat span.cm-atom {
  color: #007ba9;
}

.cm-s-neat span.cm-meta {
  color: #555;
}

.cm-s-neat span.cm-link {
  color: #3a3;
}

.cm-s-neat .CodeMirror-activeline-background {
  background: #e8f2ff !important;
}

div.CodeMirror span.CodeMirror-matchingbracket {
  background: #aec99d;
  color: black;
}

div.CodeMirror span.CodeMirror-nonmatchingbracket {
  background: #f1b5d3;
  color: black;
}