|
| 1 | +/* https://gist.github.com/qguv/7936275 */ |
| 2 | + |
| 3 | +/* Solarized Dark |
| 4 | +
|
| 5 | +For use with Jekyll and Pygments |
| 6 | +
|
| 7 | +http://ethanschoonover.com/solarized |
| 8 | +
|
| 9 | +SOLARIZED HEX ROLE |
| 10 | +--------- -------- ------------------------------------------ |
| 11 | +base03 #002b36 background |
| 12 | +base01 #586e75 comments / secondary content |
| 13 | +base1 #93a1a1 body text / default code / primary content |
| 14 | +orange #cb4b16 constants |
| 15 | +red #dc322f regex, special keywords |
| 16 | +blue #268bd2 reserved keywords |
| 17 | +cyan #2aa198 strings, numbers |
| 18 | +green #859900 operators, other keywords |
| 19 | +*/ |
| 20 | + |
| 21 | +.highlight { |
| 22 | + background-color: #002b36; |
| 23 | + color: #93a1a1; |
| 24 | +} |
| 25 | +.highlight .lineno { |
| 26 | + color: #586e75; |
| 27 | +} /* Line Numbers */ |
| 28 | +.highlight .c { |
| 29 | + color: #586e75; |
| 30 | +} /* Comment */ |
| 31 | +.highlight .err { |
| 32 | + color: #93a1a1; |
| 33 | +} /* Error */ |
| 34 | +.highlight .g { |
| 35 | + color: #93a1a1; |
| 36 | +} /* Generic */ |
| 37 | +.highlight .k { |
| 38 | + color: #859900; |
| 39 | +} /* Keyword */ |
| 40 | +.highlight .l { |
| 41 | + color: #93a1a1; |
| 42 | +} /* Literal */ |
| 43 | +.highlight .n { |
| 44 | + color: #93a1a1; |
| 45 | +} /* Name */ |
| 46 | +.highlight .o { |
| 47 | + color: #859900; |
| 48 | +} /* Operator */ |
| 49 | +.highlight .x { |
| 50 | + color: #cb4b16; |
| 51 | +} /* Other */ |
| 52 | +.highlight .p { |
| 53 | + color: #93a1a1; |
| 54 | +} /* Punctuation */ |
| 55 | +.highlight .cm { |
| 56 | + color: #586e75; |
| 57 | +} /* Comment.Multiline */ |
| 58 | +.highlight .cp { |
| 59 | + color: #859900; |
| 60 | +} /* Comment.Preproc */ |
| 61 | +.highlight .c1 { |
| 62 | + color: #586e75; |
| 63 | +} /* Comment.Single */ |
| 64 | +.highlight .cs { |
| 65 | + color: #859900; |
| 66 | +} /* Comment.Special */ |
| 67 | +.highlight .gd { |
| 68 | + color: #2aa198; |
| 69 | +} /* Generic.Deleted */ |
| 70 | +.highlight .ge { |
| 71 | + color: #93a1a1; |
| 72 | + font-style: italic; |
| 73 | +} /* Generic.Emph */ |
| 74 | +.highlight .gr { |
| 75 | + color: #dc322f; |
| 76 | +} /* Generic.Error */ |
| 77 | +.highlight .gh { |
| 78 | + color: #cb4b16; |
| 79 | +} /* Generic.Heading */ |
| 80 | +.highlight .gi { |
| 81 | + color: #859900; |
| 82 | +} /* Generic.Inserted */ |
| 83 | +.highlight .go { |
| 84 | + color: #93a1a1; |
| 85 | +} /* Generic.Output */ |
| 86 | +.highlight .gp { |
| 87 | + color: #93a1a1; |
| 88 | +} /* Generic.Prompt */ |
| 89 | +.highlight .gs { |
| 90 | + color: #93a1a1; |
| 91 | + font-weight: bold; |
| 92 | +} /* Generic.Strong */ |
| 93 | +.highlight .gu { |
| 94 | + color: #cb4b16; |
| 95 | +} /* Generic.Subheading */ |
| 96 | +.highlight .gt { |
| 97 | + color: #93a1a1; |
| 98 | +} /* Generic.Traceback */ |
| 99 | +.highlight .kc { |
| 100 | + color: #cb4b16; |
| 101 | +} /* Keyword.Constant */ |
| 102 | +.highlight .kd { |
| 103 | + color: #268bd2; |
| 104 | +} /* Keyword.Declaration */ |
| 105 | +.highlight .kn { |
| 106 | + color: #859900; |
| 107 | +} /* Keyword.Namespace */ |
| 108 | +.highlight .kp { |
| 109 | + color: #859900; |
| 110 | +} /* Keyword.Pseudo */ |
| 111 | +.highlight .kr { |
| 112 | + color: #268bd2; |
| 113 | +} /* Keyword.Reserved */ |
| 114 | +.highlight .kt { |
| 115 | + color: #dc322f; |
| 116 | +} /* Keyword.Type */ |
| 117 | +.highlight .ld { |
| 118 | + color: #93a1a1; |
| 119 | +} /* Literal.Date */ |
| 120 | +.highlight .m { |
| 121 | + color: #2aa198; |
| 122 | +} /* Literal.Number */ |
| 123 | +.highlight .s { |
| 124 | + color: #2aa198; |
| 125 | +} /* Literal.String */ |
| 126 | +.highlight .na { |
| 127 | + color: #93a1a1; |
| 128 | +} /* Name.Attribute */ |
| 129 | +.highlight .nb { |
| 130 | + color: #b58900; |
| 131 | +} /* Name.Builtin */ |
| 132 | +.highlight .nc { |
| 133 | + color: #268bd2; |
| 134 | +} /* Name.Class */ |
| 135 | +.highlight .no { |
| 136 | + color: #cb4b16; |
| 137 | +} /* Name.Constant */ |
| 138 | +.highlight .nd { |
| 139 | + color: #268bd2; |
| 140 | +} /* Name.Decorator */ |
| 141 | +.highlight .ni { |
| 142 | + color: #cb4b16; |
| 143 | +} /* Name.Entity */ |
| 144 | +.highlight .ne { |
| 145 | + color: #cb4b16; |
| 146 | +} /* Name.Exception */ |
| 147 | +.highlight .nf { |
| 148 | + color: #268bd2; |
| 149 | +} /* Name.Function */ |
| 150 | +.highlight .nl { |
| 151 | + color: #93a1a1; |
| 152 | +} /* Name.Label */ |
| 153 | +.highlight .nn { |
| 154 | + color: #93a1a1; |
| 155 | +} /* Name.Namespace */ |
| 156 | +.highlight .nx { |
| 157 | + color: #93a1a1; |
| 158 | +} /* Name.Other */ |
| 159 | +.highlight .py { |
| 160 | + color: #93a1a1; |
| 161 | +} /* Name.Property */ |
| 162 | +.highlight .nt { |
| 163 | + color: #268bd2; |
| 164 | +} /* Name.Tag */ |
| 165 | +.highlight .nv { |
| 166 | + color: #268bd2; |
| 167 | +} /* Name.Variable */ |
| 168 | +.highlight .ow { |
| 169 | + color: #859900; |
| 170 | +} /* Operator.Word */ |
| 171 | +.highlight .w { |
| 172 | + color: #93a1a1; |
| 173 | +} /* Text.Whitespace */ |
| 174 | +.highlight .mf { |
| 175 | + color: #2aa198; |
| 176 | +} /* Literal.Number.Float */ |
| 177 | +.highlight .mh { |
| 178 | + color: #2aa198; |
| 179 | +} /* Literal.Number.Hex */ |
| 180 | +.highlight .mi { |
| 181 | + color: #2aa198; |
| 182 | +} /* Literal.Number.Integer */ |
| 183 | +.highlight .mo { |
| 184 | + color: #2aa198; |
| 185 | +} /* Literal.Number.Oct */ |
| 186 | +.highlight .sb { |
| 187 | + color: #586e75; |
| 188 | +} /* Literal.String.Backtick */ |
| 189 | +.highlight .sc { |
| 190 | + color: #2aa198; |
| 191 | +} /* Literal.String.Char */ |
| 192 | +.highlight .sd { |
| 193 | + color: #93a1a1; |
| 194 | +} /* Literal.String.Doc */ |
| 195 | +.highlight .s2 { |
| 196 | + color: #2aa198; |
| 197 | +} /* Literal.String.Double */ |
| 198 | +.highlight .se { |
| 199 | + color: #cb4b16; |
| 200 | +} /* Literal.String.Escape */ |
| 201 | +.highlight .sh { |
| 202 | + color: #93a1a1; |
| 203 | +} /* Literal.String.Heredoc */ |
| 204 | +.highlight .si { |
| 205 | + color: #2aa198; |
| 206 | +} /* Literal.String.Interpol */ |
| 207 | +.highlight .sx { |
| 208 | + color: #2aa198; |
| 209 | +} /* Literal.String.Other */ |
| 210 | +.highlight .sr { |
| 211 | + color: #dc322f; |
| 212 | +} /* Literal.String.Regex */ |
| 213 | +.highlight .s1 { |
| 214 | + color: #2aa198; |
| 215 | +} /* Literal.String.Single */ |
| 216 | +.highlight .ss { |
| 217 | + color: #2aa198; |
| 218 | +} /* Literal.String.Symbol */ |
| 219 | +.highlight .bp { |
| 220 | + color: #268bd2; |
| 221 | +} /* Name.Builtin.Pseudo */ |
| 222 | +.highlight .vc { |
| 223 | + color: #268bd2; |
| 224 | +} /* Name.Variable.Class */ |
| 225 | +.highlight .vg { |
| 226 | + color: #268bd2; |
| 227 | +} /* Name.Variable.Global */ |
| 228 | +.highlight .vi { |
| 229 | + color: #268bd2; |
| 230 | +} /* Name.Variable.Instance */ |
| 231 | +.highlight .il { |
| 232 | + color: #2aa198; |
| 233 | +} /* Literal.Number.Integer.Long */ |
0 commit comments