/* syntax highlighting colors based on the "One Dark" theme used in VS Code */

/* base colors for dark background (#282c34) */
.highlight { background-color: transparent; }
.highlight .hll { background-color: #3a3f4b; }

/* comments - gray italic */
.highlight .c { color: #5c6370; font-style: italic; }  /* Comment */
.highlight .cm { color: #5c6370; font-style: italic; } /* Comment.Multiline */
.highlight .cp { color: #5c6370; font-style: italic; } /* Comment.Preproc */
.highlight .c1 { color: #5c6370; font-style: italic; } /* Comment.Single */
.highlight .cs { color: #5c6370; font-style: italic; } /* Comment.Special */
.highlight .cd { color: #5c6370; font-style: italic; } /* Comment.Doc */

/* keywords - purple */
.highlight .k { color: #c678dd; }   /* Keyword */
.highlight .kc { color: #c678dd; }  /* Keyword.Constant */
.highlight .kd { color: #c678dd; }  /* Keyword.Declaration */
.highlight .kn { color: #c678dd; }  /* Keyword.Namespace */
.highlight .kp { color: #c678dd; }  /* Keyword.Pseudo */
.highlight .kr { color: #c678dd; }  /* Keyword.Reserved */
.highlight .kt { color: #d19a66; }  /* Keyword.Type */
.highlight .kv { color: #c678dd; }  /* Keyword.Variable */

/* strings - green */
.highlight .s { color: #98c379; }   /* String */
.highlight .sb { color: #98c379; }  /* String.Backtick */
.highlight .sc { color: #98c379; }  /* String.Char */
.highlight .sd { color: #98c379; }  /* String.Doc */
.highlight .s2 { color: #98c379; }  /* String.Double */
.highlight .se { color: #56b6c2; }  /* String.Escape */
.highlight .sh { color: #98c379; }  /* String.Heredoc */
.highlight .si { color: #56b6c2; }  /* String.Interpol */
.highlight .sx { color: #98c379; }  /* String.Other */
.highlight .sr { color: #98c379; }  /* String.Regex */
.highlight .s1 { color: #98c379; }  /* String.Single */
.highlight .ss { color: #98c379; }  /* String.Symbol */

/* numbers - orange */
.highlight .m { color: #d19a66; }   /* Number */
.highlight .mf { color: #d19a66; }  /* Number.Float */
.highlight .mh { color: #d19a66; }  /* Number.Hex */
.highlight .mi { color: #d19a66; }  /* Number.Integer */
.highlight .il { color: #d19a66; }  /* Number.Integer.Long */
.highlight .mo { color: #d19a66; }  /* Number.Oct */
.highlight .mb { color: #d19a66; }  /* Number.Bin */
.highlight .mx { color: #d19a66; }  /* Number.Other */

/* names/variables - red/pink */
.highlight .n { color: #e06c75; }   /* Name */
.highlight .na { color: #d19a66; }  /* Name.Attribute */
.highlight .nb { color: #e5c07b; }  /* Name.Builtin */
.highlight .bp { color: #e5c07b; }  /* Name.Builtin.Pseudo */
.highlight .nc { color: #e5c07b; }  /* Name.Class */
.highlight .no { color: #d19a66; }  /* Name.Constant */
.highlight .nd { color: #61afef; }  /* Name.Decorator */
.highlight .ni { color: #e06c75; }  /* Name.Entity */
.highlight .ne { color: #e06c75; }  /* Name.Exception */
.highlight .nf { color: #61afef; }  /* Name.Function */
.highlight .nl { color: #e06c75; }  /* Name.Label */
.highlight .nn { color: #e5c07b; }  /* Name.Namespace */
.highlight .nx { color: #61afef; }  /* Name.Other */
.highlight .py { color: #e06c75; }  /* Name.Property */
.highlight .nt { color: #e06c75; }  /* Name.Tag */
.highlight .nv { color: #e06c75; }  /* Name.Variable */
.highlight .vc { color: #e06c75; }  /* Name.Variable.Class */
.highlight .vg { color: #e06c75; }  /* Name.Variable.Global */
.highlight .vi { color: #e06c75; }  /* Name.Variable.Instance */
.highlight .vm { color: #e06c75; }  /* Name.Variable.Magic */

/* operators - cyan */
.highlight .o { color: #56b6c2; }   /* Operator */
.highlight .ow { color: #c678dd; }  /* Operator.Word (and, or, not, in) */

/* punctuation - light gray */
.highlight .p { color: #abb2bf; }   /* Punctuation */

/* generic - various */
.highlight .gd { color: #e06c75; background-color: #3a1f1f; } /* Generic.Deleted */
.highlight .ge { font-style: italic; }                         /* Generic.Emph */
.highlight .gr { color: #e06c75; }                            /* Generic.Error */
.highlight .gh { color: #61afef; font-weight: bold; }         /* Generic.Heading */
.highlight .gi { color: #98c379; background-color: #1f3a1f; } /* Generic.Inserted */
.highlight .go { color: #5c6370; }                            /* Generic.Output */
.highlight .gp { color: #5c6370; font-weight: bold; }         /* Generic.Prompt */
.highlight .gs { font-weight: bold; }                         /* Generic.Strong */
.highlight .gu { color: #56b6c2; font-weight: bold; }         /* Generic.Subheading */
.highlight .gt { color: #e06c75; }                            /* Generic.Traceback */

/* other */
.highlight .w { color: #abb2bf; }   /* Text.Whitespace */
.highlight .err { color: #e06c75; } /* Error - no background */

/* language-specific */
/* javascript */
.highlight .nx { color: #e06c75; }  /* JS variables/properties */
.highlight .nt { color: #e06c75; }  /* HTML tags */

/* CSS */
.highlight .nc { color: #d19a66; }  /* CSS class names */
.highlight .nn { color: #e06c75; }  /* CSS IDs */

/* make sure nothing has unwanted backgrounds */
.highlight * {
  background-color: transparent !important;
  border: none !important;
}