diff options
Diffstat (limited to 'src/scss/custom/_hilite.scss')
-rw-r--r-- | src/scss/custom/_hilite.scss | 192 |
1 files changed, 192 insertions, 0 deletions
diff --git a/src/scss/custom/_hilite.scss b/src/scss/custom/_hilite.scss new file mode 100644 index 0000000..2b4fcd7 --- /dev/null +++ b/src/scss/custom/_hilite.scss @@ -0,0 +1,192 @@ +/* Colors Code */ + +.highlight { + pre { + font-size: 75%; + } + .hll { + background-color: #222222; + } + background: #000000; + color: #cccccc; + // Comments + .c { + color: #4E4F8E; + } + // Error + .err { + color: #cccccc; + border: 1px solid #FF0000; + } + // Escape and Generic + .esc, .g { + color: #cccccc; + } + // Keyword + .k { + color: #cdcd00; + } + // Literal and Name + .l, .n { + color: #cccccc; + } + // Operator + .o { + color: #3399cc; + } + // Other + .x { + color: #cccccc; + } + // Punctuation + .p { + color: #fac0ba; + } + // Comment: Hashbang, Multiline, Preproc, PreprocFile, Line + .ch, .cm, .cp, .cpf, .c1 { + color: #4E4F8E; + } + // Comments: Special + .cs { + color: #cd0000; + font-weight: bold; + } + // Generic Deleted + .gd { + color: #cd0000; + } + // Generic Emph + .ge { + color: #cccccc; + font-style: italic; + } + // Generic Error + .gr { + color: #FF0000; + } + // Generic Heading + .gh { + color: #4E4F8E; + font-weight: bold; + } + // Generic Inserted + .gi { + color: #00cd00; + } + // Generic Output + .go { + color: #888888; + } + // Generic Prompt + .gp { + color: #4E4F8E; + font-weight: bold; + } + // Generic Strong + .gs { + color: #cccccc; + font-weight: bold; + } + // Generic Subheading + .gu { + color: #800080; + font-weight: bold; + } + // Generic Traceback + .gt { + color: #0044DD; + } + // Keyword Constant + .kc { + color: #cdcd00; + } + // Keyword Declaration + .kd { + color: #00cd00; + } + // Keyword Namespace + .kn { + color: #cd00cd; + } + // Keyword: Pseudo, Reserved + .kp, .kr { + color: #cdcd00; + } + // Keyword Type + .kt { + color: #00cd00; + } + // Literal Date + .ld { + color: #cccccc; + } + // Literal Number + .m { + color: #cd00cd; + } + // Literal String + .s { + color: #cd0000; + } + // Name Attribute + .na { + color: #cccccc; + } + // Name Builtin + .nb { + color: #cd00cd; + } + // Name Class + .nc { + color: #00cdcd; + } + // Name: Constant, Decorator, Entity + .no, .nd, .ni { + color: #cccccc; + } + // Name Exception + .ne { + color: #666699; + font-weight: bold; + } + // Name: Function, Label, Namespace, Other, Property + .nf, .nl, .nn, .nx, .py { + color: #cccccc; + } + // Name Tag + .nt { + color: orange; + } + // Name Variable + .nv { + color: #00cdcd; + } + // Operator Word + .ow { + color: #cdcd00; + } + // Text Whitespace + .w { + color: #cccccc; + } + // Literal Number: Bin, Float, Hex, Integer, Oct + .mb, .mf, .mh, .mi, .mo { + color: #cd00cd; + } + // Literal String: Backtick, Char, Doc, Double, Escape, Heredoc, Interpol, Other, Regex, Single, Symbol + .sb, .sc, .sd, .s2, .se, .sh, .si, .sx, .sr, .s1, .ss { + color: #cd0000; + } + // Name Builtin Pseudo + .bp { + color: #cd00cd; + } + // Name Variable: Class, Global, Instance + .vc, .vg, .vi { + color: #00cdcd; + } + // Literal Number Integer Long + .il { + color: #cd00cd; + } +} |