File tree Expand file tree Collapse file tree 14 files changed +941
-529
lines changed
scripts/plugins/highlight Expand file tree Collapse file tree 14 files changed +941
-529
lines changed Original file line number Diff line number Diff line change
1
+ /*
2
+ Docco style used in http://jashkenas.github.com/docco/ converted by Simon Madine (@thingsinjars)
3
+ */
4
+
5
+ .hljs {
6
+ display: block;
7
+ overflow-x: auto;
8
+ padding: 0.5em;
9
+ color: #000;
10
+ background: #f8f8ff;
11
+ -webkit-text-size-adjust: none;
12
+ }
13
+
14
+ .hljs-comment,
15
+ .diff .hljs-header,
16
+ .hljs-javadoc {
17
+ color: #408080;
18
+ font-style: italic;
19
+ }
20
+
21
+ .hljs-keyword,
22
+ .assignment,
23
+ .hljs-literal,
24
+ .css .rule .hljs-keyword,
25
+ .hljs-winutils,
26
+ .javascript .hljs-title,
27
+ .lisp .hljs-title,
28
+ .hljs-subst {
29
+ color: #954121;
30
+ }
31
+
32
+ .hljs-number,
33
+ .hljs-hexcolor {
34
+ color: #40a070;
35
+ }
36
+
37
+ .hljs-string,
38
+ .hljs-tag .hljs-value,
39
+ .hljs-phpdoc,
40
+ .hljs-dartdoc,
41
+ .tex .hljs-formula {
42
+ color: #219161;
43
+ }
44
+
45
+ .hljs-title,
46
+ .hljs-id {
47
+ color: #19469d;
48
+ }
49
+ .hljs-params {
50
+ color: #00f;
51
+ }
52
+
53
+ .javascript .hljs-title,
54
+ .lisp .hljs-title,
55
+ .hljs-subst {
56
+ font-weight: normal;
57
+ }
58
+
59
+ .hljs-class .hljs-title,
60
+ .haskell .hljs-label,
61
+ .tex .hljs-command {
62
+ color: #458;
63
+ font-weight: bold;
64
+ }
65
+
66
+ .hljs-tag,
67
+ .hljs-tag .hljs-title,
68
+ .hljs-rules .hljs-property,
69
+ .django .hljs-tag .hljs-keyword {
70
+ color: #000080;
71
+ font-weight: normal;
72
+ }
73
+
74
+ .hljs-attribute,
75
+ .hljs-variable,
76
+ .instancevar,
77
+ .lisp .hljs-body {
78
+ color: #008080;
79
+ }
80
+
81
+ .hljs-regexp {
82
+ color: #b68;
83
+ }
84
+
85
+ .hljs-class {
86
+ color: #458;
87
+ font-weight: bold;
88
+ }
89
+
90
+ .hljs-symbol,
91
+ .ruby .hljs-symbol .hljs-string,
92
+ .ruby .hljs-symbol .hljs-keyword,
93
+ .ruby .hljs-symbol .keymethods,
94
+ .lisp .hljs-keyword,
95
+ .tex .hljs-special,
96
+ .input_number {
97
+ color: #990073;
98
+ }
99
+
100
+ .builtin,
101
+ .constructor,
102
+ .hljs-built_in,
103
+ .lisp .hljs-title {
104
+ color: #0086b3;
105
+ }
106
+
107
+ .hljs-preprocessor,
108
+ .hljs-pragma,
109
+ .hljs-pi,
110
+ .hljs-doctype,
111
+ .hljs-shebang,
112
+ .hljs-cdata {
113
+ color: #999;
114
+ font-weight: bold;
115
+ }
116
+
117
+ .hljs-deletion {
118
+ background: #fdd;
119
+ }
120
+
121
+ .hljs-addition {
122
+ background: #dfd;
123
+ }
124
+
125
+ .diff .hljs-change {
126
+ background: #0086b3;
127
+ }
128
+
129
+ .hljs-chunk {
130
+ color: #aaa;
131
+ }
132
+
133
+ .tex .hljs-formula {
134
+ opacity: 0.5;
135
+ }
Original file line number Diff line number Diff line change
1
+ /*
2
+ Description: Foundation 4 docs style for highlight.js
3
+ Author: Dan Allen <dan.j.allen@gmail.com>
4
+ Website: http://foundation.zurb.com/docs/
5
+ Version: 1.0
6
+ Date: 2013-04-02
7
+ */
8
+
9
+ .hljs {
10
+ display: block;
11
+ overflow-x: auto;
12
+ padding: 0.5em;
13
+ background: #eee;
14
+ -webkit-text-size-adjust: none;
15
+ }
16
+
17
+ .hljs-header,
18
+ .hljs-decorator,
19
+ .hljs-annotation {
20
+ color: #000077;
21
+ }
22
+
23
+ .hljs-horizontal_rule,
24
+ .hljs-link_url,
25
+ .hljs-emphasis,
26
+ .hljs-attribute {
27
+ color: #070;
28
+ }
29
+
30
+ .hljs-emphasis {
31
+ font-style: italic;
32
+ }
33
+
34
+ .hljs-link_label,
35
+ .hljs-strong,
36
+ .hljs-value,
37
+ .hljs-string,
38
+ .scss .hljs-value .hljs-string {
39
+ color: #d14;
40
+ }
41
+
42
+ .hljs-strong {
43
+ font-weight: bold;
44
+ }
45
+
46
+ .hljs-blockquote,
47
+ .hljs-comment {
48
+ color: #998;
49
+ font-style: italic;
50
+ }
51
+
52
+ .asciidoc .hljs-title,
53
+ .hljs-function .hljs-title {
54
+ color: #900;
55
+ }
56
+
57
+ .hljs-class {
58
+ color: #458;
59
+ }
60
+
61
+ .hljs-id,
62
+ .hljs-pseudo,
63
+ .hljs-constant,
64
+ .hljs-hexcolor {
65
+ color: teal;
66
+ }
67
+
68
+ .hljs-variable {
69
+ color: #336699;
70
+ }
71
+
72
+ .hljs-bullet,
73
+ .hljs-javadoc {
74
+ color: #997700;
75
+ }
76
+
77
+ .hljs-pi,
78
+ .hljs-doctype {
79
+ color: #3344bb;
80
+ }
81
+
82
+ .hljs-code,
83
+ .hljs-number {
84
+ color: #099;
85
+ }
86
+
87
+ .hljs-important {
88
+ color: #f00;
89
+ }
90
+
91
+ .smartquote,
92
+ .hljs-label {
93
+ color: #970;
94
+ }
95
+
96
+ .hljs-preprocessor,
97
+ .hljs-pragma {
98
+ color: #579;
99
+ }
100
+
101
+ .hljs-reserved,
102
+ .hljs-keyword,
103
+ .scss .hljs-value {
104
+ color: #000;
105
+ }
106
+
107
+ .hljs-regexp {
108
+ background-color: #fff0ff;
109
+ color: #880088;
110
+ }
111
+
112
+ .hljs-symbol {
113
+ color: #990073;
114
+ }
115
+
116
+ .hljs-symbol .hljs-string {
117
+ color: #a60;
118
+ }
119
+
120
+ .hljs-tag {
121
+ color: #007700;
122
+ }
123
+
124
+ .hljs-at_rule,
125
+ .hljs-at_rule .hljs-keyword {
126
+ color: #088;
127
+ }
128
+
129
+ .hljs-at_rule .hljs-preprocessor {
130
+ color: #808;
131
+ }
132
+
133
+ .scss .hljs-tag,
134
+ .scss .hljs-attribute {
135
+ color: #339;
136
+ }
Original file line number Diff line number Diff line change @@ -14,7 +14,6 @@ github.com style (c) Vasily Polovnyov <vast@whiteants.net>
14
14
}
15
15
16
16
.hljs-comment,
17
- .hljs-template_comment,
18
17
.diff .hljs-header,
19
18
.hljs-javadoc {
20
19
color: #998;
@@ -24,7 +23,6 @@ github.com style (c) Vasily Polovnyov <vast@whiteants.net>
24
23
.hljs-keyword,
25
24
.css .rule .hljs-keyword,
26
25
.hljs-winutils,
27
- .javascript .hljs-title,
28
26
.nginx .hljs-title,
29
27
.hljs-subst,
30
28
.hljs-request,
@@ -42,6 +40,7 @@ github.com style (c) Vasily Polovnyov <vast@whiteants.net>
42
40
.hljs-string,
43
41
.hljs-tag .hljs-value,
44
42
.hljs-phpdoc,
43
+ .hljs-dartdoc,
45
44
.tex .hljs-formula {
46
45
color: #d14;
47
46
}
@@ -53,9 +52,7 @@ github.com style (c) Vasily Polovnyov <vast@whiteants.net>
53
52
font-weight: bold;
54
53
}
55
54
56
- .javascript .hljs-title,
57
- .lisp .hljs-title,
58
- .clojure .hljs-title,
55
+ .hljs-list .hljs-keyword,
59
56
.hljs-subst {
60
57
font-weight: normal;
61
58
}
@@ -89,14 +86,14 @@ github.com style (c) Vasily Polovnyov <vast@whiteants.net>
89
86
.hljs-symbol,
90
87
.ruby .hljs-symbol .hljs-string,
91
88
.lisp .hljs-keyword,
89
+ .clojure .hljs-keyword,
90
+ .scheme .hljs-keyword,
92
91
.tex .hljs-special,
93
92
.hljs-prompt {
94
93
color: #990073;
95
94
}
96
95
97
- .hljs-built_in,
98
- .lisp .hljs-title,
99
- .clojure .hljs-built_in {
96
+ .hljs-built_in {
100
97
color: #0086b3;
101
98
}
102
99
You can’t perform that action at this time.
0 commit comments