1/*
2
3Orginal Style from ethanschoonover.com/solarized (c) Jeremy Hull <sourdrums@gmail.com>
4
5*/
6
7.hljs {
8 display: block;
9 overflow-x: auto;
10 padding: 0.5em;
11 background: #fdf6e3;
12 color: #657b83;
13 -webkit-text-size-adjust: none;
14}
15
16.hljs-comment,
17.diff .hljs-header,
18.hljs-doctype,
19.hljs-pi,
20.lisp .hljs-string {
21 color: #93a1a1;
22}
23
24/* Solarized Green */
25.hljs-keyword,
26.hljs-winutils,
27.method,
28.hljs-addition,
29.css .hljs-tag,
30.hljs-request,
31.hljs-status,
32.nginx .hljs-title {
33 color: #859900;
34}
35
36/* Solarized Cyan */
37.hljs-number,
38.hljs-command,
39.hljs-string,
40.hljs-tag .hljs-value,
41.hljs-rule .hljs-value,
42.hljs-doctag,
43.tex .hljs-formula,
44.hljs-regexp,
45.hljs-hexcolor,
46.hljs-link_url {
47 color: #2aa198;
48}
49
50/* Solarized Blue */
51.hljs-title,
52.hljs-localvars,
53.hljs-chunk,
54.hljs-decorator,
55.hljs-built_in,
56.hljs-identifier,
57.vhdl .hljs-literal,
58.hljs-id,
59.css .hljs-function,
60.hljs-name {
61 color: #268bd2;
62}
63
64/* Solarized Yellow */
65.hljs-attribute,
66.hljs-variable,
67.lisp .hljs-body,
68.smalltalk .hljs-number,
69.hljs-constant,
70.hljs-class .hljs-title,
71.hljs-parent,
72.hljs-type,
73.hljs-link_reference {
74 color: #b58900;
75}
76
77/* Solarized Orange */
78.hljs-preprocessor,
79.hljs-preprocessor .hljs-keyword,
80.hljs-pragma,
81.hljs-shebang,
82.hljs-symbol,
83.hljs-symbol .hljs-string,
84.diff .hljs-change,
85.hljs-special,
86.hljs-attr_selector,
87.hljs-subst,
88.hljs-cdata,
89.css .hljs-pseudo,
90.hljs-header {
91 color: #cb4b16;
92}
93
94/* Solarized Red */
95.hljs-deletion,
96.hljs-important {
97 color: #dc322f;
98}
99
100/* Solarized Violet */
101.hljs-link_label {
102 color: #6c71c4;
103}
104
105.tex .hljs-formula {
106 background: #eee8d5;
107}