blob: 1e61e83dcd72325336d3a5e7bb6f1feafb3ad241 [file] [log] [blame]
Nils Diewald7cad8402014-07-08 17:06:56 +00001/*
2
3Based on github.com style (c) Vasily Polovnyov <vast@whiteants.net>
4
5*/
6
7.hljs {
8 display: block;
9 padding: 0.5em;
10}
11
12.hljs-comment,
13.hljs-template_comment,
14.diff .hljs-header,
15.hljs-javadoc {
16 color: #998;
17 font-style: italic
18}
19
20.hljs-keyword,
21.css .rule .hljs-keyword,
22.hljs-winutils,
23.javascript .hljs-title,
24.nginx .hljs-title,
25.hljs-subst,
26.hljs-request,
27.hljs-status {
28 color: #333;
29 font-weight: bold
30}
31
32.hljs-number,
33.hljs-hexcolor,
34.ruby .hljs-constant {
35 color: #099;
36}
37
38.hljs-string,
39.hljs-tag .hljs-value,
40.hljs-phpdoc,
41.tex .hljs-formula {
42 color: #d14
43}
44
45.hljs-title,
46.hljs-id,
47.coffeescript .hljs-params,
48.scss .hljs-preprocessor {
49 color: #900;
50 font-weight: bold
51}
52
53.javascript .hljs-title,
54.lisp .hljs-title,
55.clojure .hljs-title,
56.hljs-subst {
57 font-weight: normal
58}
59
60.hljs-class .hljs-title,
61.haskell .hljs-type,
62.vhdl .hljs-literal,
63.tex .hljs-command {
64 color: #458;
65 font-weight: bold
66}
67
68.hljs-tag,
69.hljs-tag .hljs-title,
70.hljs-rules .hljs-property,
71.django .hljs-tag .hljs-keyword {
72 color: #000080;
73 font-weight: normal
74}
75
76.hljs-attribute,
77.hljs-variable,
78.lisp .hljs-body {
79 color: #008080
80}
81
82.hljs-regexp {
83 color: #009926
84}
85
86.hljs-symbol,
87.ruby .hljs-symbol .hljs-string,
88.lisp .hljs-keyword,
89.tex .hljs-special,
90.hljs-prompt {
91 color: #990073
92}
93
94.hljs-built_in,
95.lisp .hljs-title,
96.clojure .hljs-built_in {
97 color: #0086b3
98}
99
100.hljs-preprocessor,
101.hljs-pragma,
102.hljs-pi,
103.hljs-doctype,
104.hljs-shebang,
105.hljs-cdata {
106 color: #999;
107 font-weight: bold
108}
109
110.hljs-deletion {
111 background: #fdd
112}
113
114.hljs-addition {
115 background: #dfd
116}
117
118.diff .hljs-change {
119 background: #0086b3
120}
121
122.hljs-chunk {
123 color: #aaa
124}