|
|
|
@ -3,79 +3,85 @@
|
|
|
|
|
original base16 by Chris Kempson (https://github.com/chriskempson/base16)
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
.highlight table td { padding: 5px; }
|
|
|
|
|
.highlight table pre { margin: 0; }
|
|
|
|
|
.highlight, .highlight .w {
|
|
|
|
|
color: #d0d0d0;
|
|
|
|
|
}
|
|
|
|
|
.highlight .err {
|
|
|
|
|
color: #151515;
|
|
|
|
|
background-color: #ac4142;
|
|
|
|
|
}
|
|
|
|
|
.highlight .c, .highlight .cd, .highlight .cm, .highlight .c1, .highlight .cs {
|
|
|
|
|
color: #888;
|
|
|
|
|
}
|
|
|
|
|
.highlight .cp {
|
|
|
|
|
color: #f4bf75;
|
|
|
|
|
}
|
|
|
|
|
.highlight .nt {
|
|
|
|
|
color: #f4bf75;
|
|
|
|
|
}
|
|
|
|
|
.highlight .o, .highlight .ow {
|
|
|
|
|
color: #d0d0d0;
|
|
|
|
|
}
|
|
|
|
|
.highlight .p, .highlight .pi {
|
|
|
|
|
color: #d0d0d0;
|
|
|
|
|
}
|
|
|
|
|
.highlight .gi {
|
|
|
|
|
color: #90a959;
|
|
|
|
|
}
|
|
|
|
|
.highlight .gd {
|
|
|
|
|
color: #ac4142;
|
|
|
|
|
}
|
|
|
|
|
.highlight .gh {
|
|
|
|
|
color: #6a9fb5;
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
}
|
|
|
|
|
.highlight .k, .highlight .kn, .highlight .kp, .highlight .kr, .highlight .kv {
|
|
|
|
|
color: #aa759f;
|
|
|
|
|
}
|
|
|
|
|
.highlight .kc {
|
|
|
|
|
color: #d28445;
|
|
|
|
|
}
|
|
|
|
|
.highlight .kt {
|
|
|
|
|
color: #d28445;
|
|
|
|
|
}
|
|
|
|
|
.highlight .kd {
|
|
|
|
|
color: #d28445;
|
|
|
|
|
}
|
|
|
|
|
.highlight .s, .highlight .sb, .highlight .sc, .highlight .sd, .highlight .s2, .highlight .sh, .highlight .sx, .highlight .s1 {
|
|
|
|
|
color: #90a959;
|
|
|
|
|
}
|
|
|
|
|
.highlight .sr {
|
|
|
|
|
color: #75b5aa;
|
|
|
|
|
}
|
|
|
|
|
.highlight .si {
|
|
|
|
|
color: #8f5536;
|
|
|
|
|
}
|
|
|
|
|
.highlight .se {
|
|
|
|
|
color: #8f5536;
|
|
|
|
|
}
|
|
|
|
|
.highlight .nn {
|
|
|
|
|
color: #f4bf75;
|
|
|
|
|
}
|
|
|
|
|
.highlight .nc {
|
|
|
|
|
color: #f4bf75;
|
|
|
|
|
}
|
|
|
|
|
.highlight .no {
|
|
|
|
|
color: #f4bf75;
|
|
|
|
|
}
|
|
|
|
|
.highlight .na {
|
|
|
|
|
color: #6a9fb5;
|
|
|
|
|
}
|
|
|
|
|
.highlight .m, .highlight .mf, .highlight .mh, .highlight .mi, .highlight .il, .highlight .mo, .highlight .mb, .highlight .mx {
|
|
|
|
|
color: #90a959;
|
|
|
|
|
}
|
|
|
|
|
.highlight .ss {
|
|
|
|
|
color: #90a959;
|
|
|
|
|
@import "default_colors";
|
|
|
|
|
|
|
|
|
|
.highlight {
|
|
|
|
|
|
|
|
|
|
$plaintext: $alto !default;
|
|
|
|
|
$string: $chelsea-cucumber !default;
|
|
|
|
|
$literal: $chelsea-cucumber !default;
|
|
|
|
|
$keyword: $bouquet !default;
|
|
|
|
|
$error-foreground: $cod-grey !default;
|
|
|
|
|
$error-background: $apple-blossom !default;
|
|
|
|
|
$comment: $grey !default;
|
|
|
|
|
$preprocessor: $rajah !default;
|
|
|
|
|
$name-space: $rajah !default;
|
|
|
|
|
$name-attribute: $hippie-blue !default;
|
|
|
|
|
$operator: $rajah !default;
|
|
|
|
|
$keyword-type: $raw-sienna !default;
|
|
|
|
|
$regex: $gulf-stream !default;
|
|
|
|
|
$string-escape: $potters-clay !default;
|
|
|
|
|
$deleted: $apple-blossom !default;
|
|
|
|
|
$header: $hippie-blue !default;
|
|
|
|
|
|
|
|
|
|
color: $plaintext;
|
|
|
|
|
|
|
|
|
|
table td { padding: 5px; }
|
|
|
|
|
table pre { margin: 0; }
|
|
|
|
|
.w {
|
|
|
|
|
color: $plaintext;
|
|
|
|
|
}
|
|
|
|
|
.err {
|
|
|
|
|
color: $error-foreground;
|
|
|
|
|
background-color: $error-background;
|
|
|
|
|
}
|
|
|
|
|
.c, .cd, .cm, .c1, .cs {
|
|
|
|
|
color: $comment;
|
|
|
|
|
}
|
|
|
|
|
.cp {
|
|
|
|
|
color: $preprocessor;
|
|
|
|
|
}
|
|
|
|
|
.o, .ow {
|
|
|
|
|
color: $operator;
|
|
|
|
|
}
|
|
|
|
|
.p, .pi {
|
|
|
|
|
color: $plaintext;
|
|
|
|
|
}
|
|
|
|
|
.gi {
|
|
|
|
|
color: $string;
|
|
|
|
|
}
|
|
|
|
|
.gd {
|
|
|
|
|
color: $deleted;
|
|
|
|
|
}
|
|
|
|
|
.gh {
|
|
|
|
|
color: $header;
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
}
|
|
|
|
|
.k, .kn, .kp, .kr, .kv {
|
|
|
|
|
color: $keyword;
|
|
|
|
|
}
|
|
|
|
|
.kc, .kt, .kd {
|
|
|
|
|
color: $keyword-type;
|
|
|
|
|
}
|
|
|
|
|
.s, .sb, .sc, .sd, .s2, .sh, .sx, .s1 {
|
|
|
|
|
color: $string;
|
|
|
|
|
}
|
|
|
|
|
.sr {
|
|
|
|
|
color: $regex;
|
|
|
|
|
}
|
|
|
|
|
.si, .se {
|
|
|
|
|
color: $string-escape;
|
|
|
|
|
}
|
|
|
|
|
.nt, .nn, .nc, .no{
|
|
|
|
|
color: $name-space;
|
|
|
|
|
}
|
|
|
|
|
.na {
|
|
|
|
|
color: $name-attribute;
|
|
|
|
|
}
|
|
|
|
|
.m, .mf, .mh, .mi, .il, .mo, .mb, .mx {
|
|
|
|
|
color: $literal;
|
|
|
|
|
}
|
|
|
|
|
.ss {
|
|
|
|
|
color: $string;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|