many small updates
[pharext/pharext.org] / public / highlight / styles / rainbow.css
1 /*
2
3 Style with support for rainbow parens
4
5 */
6
7 .hljs {
8 display: block;
9 overflow-x: auto;
10 padding: 0.5em;
11 background: #474949;
12 color: #d1d9e1;
13 -webkit-text-size-adjust: none;
14 }
15
16
17 .hljs-body,
18 .hljs-collection {
19 color: #d1d9e1;
20 }
21
22 .hljs-comment,
23 .diff .hljs-header,
24 .hljs-doctype,
25 .lisp .hljs-string,
26 .hljs-javadoc {
27 color: #969896;
28 font-style: italic;
29 }
30
31 .hljs-keyword,
32 .clojure .hljs-attribute,
33 .hljs-winutils,
34 .javascript .hljs-title,
35 .hljs-addition,
36 .css .hljs-tag {
37 color: #cc99cc;
38 }
39
40 .hljs-number { color: #f99157; }
41
42 .hljs-command,
43 .hljs-string,
44 .hljs-tag .hljs-value,
45 .hljs-phpdoc,
46 .hljs-dartdoc,
47 .tex .hljs-formula,
48 .hljs-regexp,
49 .hljs-hexcolor {
50 color: #8abeb7;
51 }
52
53 .hljs-title,
54 .hljs-localvars,
55 .hljs-function .hljs-title,
56 .hljs-chunk,
57 .hljs-decorator,
58 .hljs-built_in,
59 .hljs-identifier {
60 color: #b5bd68;
61 }
62
63 .hljs-class .hljs-keyword {
64 color: #f2777a;
65 }
66
67 .hljs-variable,
68 .smalltalk .hljs-number,
69 .hljs-constant,
70 .hljs-class .hljs-title,
71 .hljs-parent,
72 .haskell .hljs-label,
73 .hljs-id,
74 .hljs-name {
75 color: #ffcc66;
76 }
77
78 .hljs-tag .hljs-title,
79 .hljs-rule .hljs-property,
80 .django .hljs-tag .hljs-keyword {
81 font-weight: bold;
82 }
83
84 .hljs-attribute {
85 color: #81a2be;
86 }
87
88 .hljs-preprocessor,
89 .hljs-pragma,
90 .hljs-pi,
91 .hljs-shebang,
92 .hljs-symbol,
93 .hljs-symbol .hljs-string,
94 .diff .hljs-change,
95 .hljs-special,
96 .hljs-attr_selector,
97 .hljs-important,
98 .hljs-subst,
99 .hljs-cdata {
100 color: #f99157;
101 }
102
103 .hljs-deletion {
104 color: #dc322f;
105 }
106
107 .tex .hljs-formula {
108 background: #eee8d5;
109 }