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