bigbiff | d006b30 | 2015-03-06 18:36:03 -0500 | [diff] [blame] | 1 | /** |
| 2 | * Syntax highlighting styles |
| 3 | */ |
| 4 | .highlight { |
| 5 | background: #fff; |
| 6 | @extend %vertical-rhythm; |
| 7 | |
| 8 | .c { color: #998; font-style: italic } // Comment |
| 9 | .err { color: #a61717; background-color: #e3d2d2 } // Error |
| 10 | .k { font-weight: bold } // Keyword |
| 11 | .o { font-weight: bold } // Operator |
| 12 | .cm { color: #998; font-style: italic } // Comment.Multiline |
| 13 | .cp { color: #999; font-weight: bold } // Comment.Preproc |
| 14 | .c1 { color: #998; font-style: italic } // Comment.Single |
| 15 | .cs { color: #999; font-weight: bold; font-style: italic } // Comment.Special |
| 16 | .gd { color: #000; background-color: #fdd } // Generic.Deleted |
| 17 | .gd .x { color: #000; background-color: #faa } // Generic.Deleted.Specific |
| 18 | .ge { font-style: italic } // Generic.Emph |
| 19 | .gr { color: #a00 } // Generic.Error |
| 20 | .gh { color: #999 } // Generic.Heading |
| 21 | .gi { color: #000; background-color: #dfd } // Generic.Inserted |
| 22 | .gi .x { color: #000; background-color: #afa } // Generic.Inserted.Specific |
| 23 | .go { color: #888 } // Generic.Output |
| 24 | .gp { color: #555 } // Generic.Prompt |
| 25 | .gs { font-weight: bold } // Generic.Strong |
| 26 | .gu { color: #aaa } // Generic.Subheading |
| 27 | .gt { color: #a00 } // Generic.Traceback |
| 28 | .kc { font-weight: bold } // Keyword.Constant |
| 29 | .kd { font-weight: bold } // Keyword.Declaration |
| 30 | .kp { font-weight: bold } // Keyword.Pseudo |
| 31 | .kr { font-weight: bold } // Keyword.Reserved |
| 32 | .kt { color: #458; font-weight: bold } // Keyword.Type |
| 33 | .m { color: #099 } // Literal.Number |
| 34 | .s { color: #d14 } // Literal.String |
| 35 | .na { color: #008080 } // Name.Attribute |
| 36 | .nb { color: #0086B3 } // Name.Builtin |
| 37 | .nc { color: #458; font-weight: bold } // Name.Class |
| 38 | .no { color: #008080 } // Name.Constant |
| 39 | .ni { color: #800080 } // Name.Entity |
| 40 | .ne { color: #900; font-weight: bold } // Name.Exception |
| 41 | .nf { color: #900; font-weight: bold } // Name.Function |
| 42 | .nn { color: #555 } // Name.Namespace |
| 43 | .nt { color: #000080 } // Name.Tag |
| 44 | .nv { color: #008080 } // Name.Variable |
| 45 | .ow { font-weight: bold } // Operator.Word |
| 46 | .w { color: #bbb } // Text.Whitespace |
| 47 | .mf { color: #099 } // Literal.Number.Float |
| 48 | .mh { color: #099 } // Literal.Number.Hex |
| 49 | .mi { color: #099 } // Literal.Number.Integer |
| 50 | .mo { color: #099 } // Literal.Number.Oct |
| 51 | .sb { color: #d14 } // Literal.String.Backtick |
| 52 | .sc { color: #d14 } // Literal.String.Char |
| 53 | .sd { color: #d14 } // Literal.String.Doc |
| 54 | .s2 { color: #d14 } // Literal.String.Double |
| 55 | .se { color: #d14 } // Literal.String.Escape |
| 56 | .sh { color: #d14 } // Literal.String.Heredoc |
| 57 | .si { color: #d14 } // Literal.String.Interpol |
| 58 | .sx { color: #d14 } // Literal.String.Other |
| 59 | .sr { color: #009926 } // Literal.String.Regex |
| 60 | .s1 { color: #d14 } // Literal.String.Single |
| 61 | .ss { color: #990073 } // Literal.String.Symbol |
| 62 | .bp { color: #999 } // Name.Builtin.Pseudo |
| 63 | .vc { color: #008080 } // Name.Variable.Class |
| 64 | .vg { color: #008080 } // Name.Variable.Global |
| 65 | .vi { color: #008080 } // Name.Variable.Instance |
| 66 | .il { color: #099 } // Literal.Number.Integer.Long |
| 67 | } |