many small updates
[pharext/pharext.org] / public / highlight / styles / solarized_light.css
1 /*
2
3 Orginal 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 .hljs-javadoc {
22 color: #93a1a1;
23 }
24
25 /* Solarized Green */
26 .hljs-keyword,
27 .hljs-winutils,
28 .method,
29 .hljs-addition,
30 .css .hljs-tag,
31 .hljs-request,
32 .hljs-status,
33 .nginx .hljs-title {
34 color: #859900;
35 }
36
37 /* Solarized Cyan */
38 .hljs-number,
39 .hljs-command,
40 .hljs-string,
41 .hljs-tag .hljs-value,
42 .hljs-rule .hljs-value,
43 .hljs-phpdoc,
44 .hljs-dartdoc,
45 .tex .hljs-formula,
46 .hljs-regexp,
47 .hljs-hexcolor,
48 .hljs-link_url {
49 color: #2aa198;
50 }
51
52 /* Solarized Blue */
53 .hljs-title,
54 .hljs-localvars,
55 .hljs-chunk,
56 .hljs-decorator,
57 .hljs-built_in,
58 .hljs-identifier,
59 .vhdl .hljs-literal,
60 .hljs-id,
61 .css .hljs-function,
62 .hljs-name {
63 color: #268bd2;
64 }
65
66 /* Solarized Yellow */
67 .hljs-attribute,
68 .hljs-variable,
69 .lisp .hljs-body,
70 .smalltalk .hljs-number,
71 .hljs-constant,
72 .hljs-class .hljs-title,
73 .hljs-parent,
74 .hljs-type,
75 .hljs-link_reference {
76 color: #b58900;
77 }
78
79 /* Solarized Orange */
80 .hljs-preprocessor,
81 .hljs-preprocessor .hljs-keyword,
82 .hljs-pragma,
83 .hljs-shebang,
84 .hljs-symbol,
85 .hljs-symbol .hljs-string,
86 .diff .hljs-change,
87 .hljs-special,
88 .hljs-attr_selector,
89 .hljs-subst,
90 .hljs-cdata,
91 .css .hljs-pseudo,
92 .hljs-header {
93 color: #cb4b16;
94 }
95
96 /* Solarized Red */
97 .hljs-deletion,
98 .hljs-important {
99 color: #dc322f;
100 }
101
102 /* Solarized Violet */
103 .hljs-link_label {
104 color: #6c71c4;
105 }
106
107 .tex .hljs-formula {
108 background: #eee8d5;
109 }