1/*
2
3Google Code style (c) Aahan Krish <geekpanth3r@gmail.com>
4
5*/
6
7.hljs {
8 display: block;
9 overflow-x: auto;
10 padding: 0.5em;
11 background: white;
12 color: black;
13 -webkit-text-size-adjust: none;
14}
15
16.hljs-comment {
17 color: #800;
18}
19
20.hljs-keyword,
21.method,
22.hljs-list .hljs-keyword,
23.nginx .hljs-title,
24.hljs-tag .hljs-title,
25.setting .hljs-value,
26.hljs-winutils,
27.tex .hljs-command,
28.http .hljs-title,
29.hljs-request,
30.hljs-status {
31 color: #008;
32}
33
34.hljs-envvar,
35.tex .hljs-special {
36 color: #660;
37}
38
39.hljs-string,
40.hljs-tag .hljs-value,
41.hljs-cdata,
42.hljs-filter .hljs-argument,
43.hljs-attr_selector,
44.apache .hljs-cbracket,
45.hljs-date,
46.hljs-regexp,
47.coffeescript .hljs-attribute {
48 color: #080;
49}
50
51.hljs-sub .hljs-identifier,
52.hljs-pi,
53.hljs-tag,
54.hljs-tag .hljs-keyword,
55.hljs-decorator,
56.ini .hljs-title,
57.hljs-shebang,
58.hljs-prompt,
59.hljs-hexcolor,
60.hljs-rule .hljs-value,
61.hljs-literal,
62.hljs-symbol,
63.ruby .hljs-symbol .hljs-string,
64.hljs-number,
65.css .hljs-function,
66.clojure .hljs-attribute {
67 color: #066;
68}
69
70.hljs-class .hljs-title,
71.smalltalk .hljs-class,
72.hljs-doctag,
73.hljs-type,
74.hljs-typename,
75.hljs-tag .hljs-attribute,
76.hljs-doctype,
77.hljs-class .hljs-id,
78.hljs-built_in,
79.setting,
80.hljs-params,
81.hljs-variable,
82.hljs-name {
83 color: #606;
84}
85
86.css .hljs-tag,
87.hljs-rule .hljs-property,
88.hljs-pseudo,
89.hljs-subst {
90 color: #000;
91}
92
93.css .hljs-class,
94.css .hljs-id {
95 color: #9b703f;
96}
97
98.hljs-value .hljs-important {
99 color: #ff7700;
100 font-weight: bold;
101}
102
103.hljs-rule .hljs-keyword {
104 color: #c5af75;
105}
106
107.hljs-annotation,
108.apache .hljs-sqbracket,
109.nginx .hljs-built_in {
110 color: #9b859d;
111}
112
113.hljs-preprocessor,
114.hljs-preprocessor *,
115.hljs-pragma {
116 color: #444;
117}
118
119.tex .hljs-formula {
120 background-color: #eee;
121 font-style: italic;
122}
123
124.diff .hljs-header,
125.hljs-chunk {
126 color: #808080;
127 font-weight: bold;
128}
129
130.diff .hljs-change {
131 background-color: #bccff9;
132}
133
134.hljs-addition {
135 background-color: #baeeba;
136}
137
138.hljs-deletion {
139 background-color: #ffc8bd;
140}
141
142.hljs-comment .hljs-doctag {
143 font-weight: bold;
144}