boomack 0.15.7 → 0.15.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/client/public/css/prism-no-theme.css +190 -190
- package/client/themes/blue-night/prism.css +128 -128
- package/client/themes/blue-night/semantic.full.min.css +403 -403
- package/client/themes/blue-night/semantic.full.min.js +10 -10
- package/client/themes/blue-night/semantic.slim.min.css +98 -98
- package/client/themes/blue-night/semantic.slim.min.js +10 -10
- package/client/themes/dark/prism.css +173 -173
- package/client/themes/dark/semantic.full.min.css +403 -403
- package/client/themes/dark/semantic.full.min.js +10 -10
- package/client/themes/dark/semantic.slim.min.css +98 -98
- package/client/themes/dark/semantic.slim.min.js +10 -10
- package/client/themes/default/prism.css +190 -190
- package/client/themes/default/semantic.full.min.css +403 -403
- package/client/themes/default/semantic.full.min.js +10 -10
- package/client/themes/default/semantic.slim.min.css +98 -98
- package/client/themes/default/semantic.slim.min.js +10 -10
- package/client/themes/green-night/prism.css +128 -128
- package/client/themes/green-night/semantic.full.min.css +403 -403
- package/client/themes/green-night/semantic.full.min.js +10 -10
- package/client/themes/green-night/semantic.slim.min.css +98 -98
- package/client/themes/green-night/semantic.slim.min.js +10 -10
- package/client/themes/iron/prism.css +131 -131
- package/client/themes/iron/semantic.full.min.css +403 -403
- package/client/themes/iron/semantic.full.min.js +10 -10
- package/client/themes/iron/semantic.slim.min.css +98 -98
- package/client/themes/iron/semantic.slim.min.js +10 -10
- package/client/themes/red-night/prism.css +130 -130
- package/client/themes/red-night/semantic.full.min.css +403 -403
- package/client/themes/red-night/semantic.full.min.js +10 -10
- package/client/themes/red-night/semantic.slim.min.css +98 -98
- package/client/themes/red-night/semantic.slim.min.js +10 -10
- package/client/themes/science/prism.css +161 -161
- package/client/themes/science/semantic.full.min.css +403 -403
- package/client/themes/science/semantic.full.min.js +10 -10
- package/client/themes/science/semantic.slim.min.css +98 -98
- package/client/themes/science/semantic.slim.min.js +10 -10
- package/client/vendor/js/lodash.min.js +139 -139
- package/default-config.yaml +2 -1
- package/dist/index.mjs +2 -2
- package/package.json +2 -2
|
@@ -1,190 +1,190 @@
|
|
|
1
|
-
/* PrismJS 1.17.1
|
|
2
|
-
https://prismjs.com/download.html#themes=prism&languages=markup+css+clike+javascript+abap+abnf+actionscript+ada+antlr4+apacheconf+apl+applescript+aql+c+arff+asciidoc+asm6502+csharp+autohotkey+autoit+bash+basic+batch+bbcode+bison+bnf+brainfuck+brightscript+bro+cpp+aspnet+arduino+cil+coffeescript+cmake+clojure+ruby+csp+css-extras+d+dart+diff+markup-templating+dns-zone-file+docker+ebnf+eiffel+ejs+elixir+elm+lua+erb+erlang+fsharp+firestore-security-rules+flow+fortran+ftl+gcode+gdscript+gedcom+gherkin+git+glsl+gml+go+graphql+groovy+less+handlebars+haskell+haxe+hcl+http+hpkp+hsts+ichigojam+icon+inform7+ini+io+j+java+scala+php+javastacktrace+jolie+jq+javadoclike+n4js+markdown+json+jsonp+json5+julia+keyman+kotlin+latex+crystal+scheme+liquid+lisp+livescript+lolcode+etlua+makefile+js-templates+django+matlab+mel+mizar+monkey+moonscript+n1ql+typescript+nand2tetris-hdl+nasm+nginx+nim+nix+nsis+objectivec+ocaml+opencl+oz+parigp+parser+pascal+pascaligo+pcaxis+perl+jsdoc+phpdoc+php-extras+sql+powershell+processing+prolog+properties+protobuf+scss+puppet+pure+python+q+qore+r+js-extras+jsx+renpy+reason+vala+rest+rip+roboconf+robotframework+textile+rust+plsql+sass+stylus+javadoc+lilypond+shell-session+smalltalk+smarty+solidity+soy+turtle+splunk-spl+sqf+sas+twig+swift+yaml+tcl+haml+toml+tt2+sparql+pug+tsx+t4-templating+visual-basic+t4-cs+regex+vbnet+velocity+verilog+vhdl+vim+t4-vb+wasm+wiki+xeora+xojo+xquery+tap+zig&plugins=line-numbers */
|
|
3
|
-
/**
|
|
4
|
-
* prism.js default theme for JavaScript, CSS and HTML
|
|
5
|
-
* Based on dabblet (http://dabblet.com)
|
|
6
|
-
* @author Lea Verou
|
|
7
|
-
*/
|
|
8
|
-
|
|
9
|
-
code[class*="language-"],
|
|
10
|
-
pre[class*="language-"] {
|
|
11
|
-
color: black;
|
|
12
|
-
background: none;
|
|
13
|
-
text-shadow: 0 1px white;
|
|
14
|
-
font-family: "Roboto Mono", Consolas, Courier, monospace;
|
|
15
|
-
font-size: 1em;
|
|
16
|
-
text-align: left;
|
|
17
|
-
white-space: pre;
|
|
18
|
-
word-spacing: normal;
|
|
19
|
-
word-break: normal;
|
|
20
|
-
word-wrap: normal;
|
|
21
|
-
line-height: 1.5;
|
|
22
|
-
|
|
23
|
-
-moz-tab-size: 4;
|
|
24
|
-
-o-tab-size: 4;
|
|
25
|
-
tab-size: 4;
|
|
26
|
-
|
|
27
|
-
-webkit-hyphens: none;
|
|
28
|
-
-moz-hyphens: none;
|
|
29
|
-
-ms-hyphens: none;
|
|
30
|
-
hyphens: none;
|
|
31
|
-
}
|
|
32
|
-
|
|
33
|
-
pre[class*="language-"]::-moz-selection, pre[class*="language-"] ::-moz-selection,
|
|
34
|
-
code[class*="language-"]::-moz-selection, code[class*="language-"] ::-moz-selection {
|
|
35
|
-
text-shadow: none;
|
|
36
|
-
background: #b3d4fc;
|
|
37
|
-
}
|
|
38
|
-
|
|
39
|
-
pre[class*="language-"]::selection, pre[class*="language-"] ::selection,
|
|
40
|
-
code[class*="language-"]::selection, code[class*="language-"] ::selection {
|
|
41
|
-
text-shadow: none;
|
|
42
|
-
background: #b3d4fc;
|
|
43
|
-
}
|
|
44
|
-
|
|
45
|
-
@media print {
|
|
46
|
-
code[class*="language-"],
|
|
47
|
-
pre[class*="language-"] {
|
|
48
|
-
text-shadow: none;
|
|
49
|
-
}
|
|
50
|
-
}
|
|
51
|
-
|
|
52
|
-
/* Code blocks */
|
|
53
|
-
pre[class*="language-"] {
|
|
54
|
-
padding: 1em;
|
|
55
|
-
margin: .5em 0;
|
|
56
|
-
overflow: auto;
|
|
57
|
-
}
|
|
58
|
-
|
|
59
|
-
:not(pre) > code[class*="language-"],
|
|
60
|
-
pre[class*="language-"] {
|
|
61
|
-
background: #f5f2f0;
|
|
62
|
-
}
|
|
63
|
-
|
|
64
|
-
/* Inline code */
|
|
65
|
-
:not(pre) > code[class*="language-"] {
|
|
66
|
-
padding: .1em;
|
|
67
|
-
border-radius: .3em;
|
|
68
|
-
white-space: normal;
|
|
69
|
-
}
|
|
70
|
-
|
|
71
|
-
.token.comment,
|
|
72
|
-
.token.block-comment,
|
|
73
|
-
.token.prolog,
|
|
74
|
-
.token.doctype,
|
|
75
|
-
.token.cdata {
|
|
76
|
-
color: slategray;
|
|
77
|
-
}
|
|
78
|
-
|
|
79
|
-
.token.comment,
|
|
80
|
-
.token.block-comment {
|
|
81
|
-
font-style: italic;
|
|
82
|
-
}
|
|
83
|
-
|
|
84
|
-
.token.punctuation {
|
|
85
|
-
color: #999;
|
|
86
|
-
}
|
|
87
|
-
|
|
88
|
-
.namespace {
|
|
89
|
-
opacity: .7;
|
|
90
|
-
}
|
|
91
|
-
|
|
92
|
-
.token.property,
|
|
93
|
-
.token.tag,
|
|
94
|
-
.token.boolean,
|
|
95
|
-
.token.number,
|
|
96
|
-
.token.constant,
|
|
97
|
-
.token.symbol,
|
|
98
|
-
.token.deleted {
|
|
99
|
-
color: #905;
|
|
100
|
-
}
|
|
101
|
-
|
|
102
|
-
.token.selector,
|
|
103
|
-
.token.attr-name,
|
|
104
|
-
.token.string,
|
|
105
|
-
.token.char,
|
|
106
|
-
.token.builtin,
|
|
107
|
-
.token.inserted {
|
|
108
|
-
color: #690;
|
|
109
|
-
}
|
|
110
|
-
|
|
111
|
-
.token.operator,
|
|
112
|
-
.token.entity,
|
|
113
|
-
.token.url,
|
|
114
|
-
.language-css .token.string,
|
|
115
|
-
.style .token.string {
|
|
116
|
-
color: #9a6e3a;
|
|
117
|
-
background: hsla(0, 0%, 100%, .5);
|
|
118
|
-
}
|
|
119
|
-
|
|
120
|
-
.token.atrule,
|
|
121
|
-
.token.attr-value,
|
|
122
|
-
.token.keyword {
|
|
123
|
-
color: #07a;
|
|
124
|
-
}
|
|
125
|
-
|
|
126
|
-
.token.function,
|
|
127
|
-
.token.class-name {
|
|
128
|
-
color: #DD4A68;
|
|
129
|
-
}
|
|
130
|
-
|
|
131
|
-
.token.regex,
|
|
132
|
-
.token.important,
|
|
133
|
-
.token.variable {
|
|
134
|
-
color: #e90;
|
|
135
|
-
}
|
|
136
|
-
|
|
137
|
-
.token.important,
|
|
138
|
-
.token.bold {
|
|
139
|
-
font-weight: bold;
|
|
140
|
-
}
|
|
141
|
-
.token.italic {
|
|
142
|
-
font-style: italic;
|
|
143
|
-
}
|
|
144
|
-
|
|
145
|
-
.token.entity {
|
|
146
|
-
cursor: help;
|
|
147
|
-
}
|
|
148
|
-
|
|
149
|
-
pre[class*="language-"].line-numbers {
|
|
150
|
-
position: relative;
|
|
151
|
-
padding-left: 3.8em;
|
|
152
|
-
counter-reset: linenumber;
|
|
153
|
-
}
|
|
154
|
-
|
|
155
|
-
pre[class*="language-"].line-numbers > code {
|
|
156
|
-
position: relative;
|
|
157
|
-
white-space: inherit;
|
|
158
|
-
}
|
|
159
|
-
|
|
160
|
-
.line-numbers .line-numbers-rows {
|
|
161
|
-
position: absolute;
|
|
162
|
-
pointer-events: none;
|
|
163
|
-
top: 0;
|
|
164
|
-
font-size: 100%;
|
|
165
|
-
left: -3.8em;
|
|
166
|
-
width: 3em; /* works for line-numbers below 1000 lines */
|
|
167
|
-
letter-spacing: -1px;
|
|
168
|
-
border-right: 1px solid #999;
|
|
169
|
-
|
|
170
|
-
-webkit-user-select: none;
|
|
171
|
-
-moz-user-select: none;
|
|
172
|
-
-ms-user-select: none;
|
|
173
|
-
user-select: none;
|
|
174
|
-
|
|
175
|
-
}
|
|
176
|
-
|
|
177
|
-
.line-numbers-rows > span {
|
|
178
|
-
pointer-events: none;
|
|
179
|
-
display: block;
|
|
180
|
-
counter-increment: linenumber;
|
|
181
|
-
}
|
|
182
|
-
|
|
183
|
-
.line-numbers-rows > span:before {
|
|
184
|
-
content: counter(linenumber);
|
|
185
|
-
color: #999;
|
|
186
|
-
display: block;
|
|
187
|
-
padding-right: 0.8em;
|
|
188
|
-
text-align: right;
|
|
189
|
-
}
|
|
190
|
-
|
|
1
|
+
/* PrismJS 1.17.1
|
|
2
|
+
https://prismjs.com/download.html#themes=prism&languages=markup+css+clike+javascript+abap+abnf+actionscript+ada+antlr4+apacheconf+apl+applescript+aql+c+arff+asciidoc+asm6502+csharp+autohotkey+autoit+bash+basic+batch+bbcode+bison+bnf+brainfuck+brightscript+bro+cpp+aspnet+arduino+cil+coffeescript+cmake+clojure+ruby+csp+css-extras+d+dart+diff+markup-templating+dns-zone-file+docker+ebnf+eiffel+ejs+elixir+elm+lua+erb+erlang+fsharp+firestore-security-rules+flow+fortran+ftl+gcode+gdscript+gedcom+gherkin+git+glsl+gml+go+graphql+groovy+less+handlebars+haskell+haxe+hcl+http+hpkp+hsts+ichigojam+icon+inform7+ini+io+j+java+scala+php+javastacktrace+jolie+jq+javadoclike+n4js+markdown+json+jsonp+json5+julia+keyman+kotlin+latex+crystal+scheme+liquid+lisp+livescript+lolcode+etlua+makefile+js-templates+django+matlab+mel+mizar+monkey+moonscript+n1ql+typescript+nand2tetris-hdl+nasm+nginx+nim+nix+nsis+objectivec+ocaml+opencl+oz+parigp+parser+pascal+pascaligo+pcaxis+perl+jsdoc+phpdoc+php-extras+sql+powershell+processing+prolog+properties+protobuf+scss+puppet+pure+python+q+qore+r+js-extras+jsx+renpy+reason+vala+rest+rip+roboconf+robotframework+textile+rust+plsql+sass+stylus+javadoc+lilypond+shell-session+smalltalk+smarty+solidity+soy+turtle+splunk-spl+sqf+sas+twig+swift+yaml+tcl+haml+toml+tt2+sparql+pug+tsx+t4-templating+visual-basic+t4-cs+regex+vbnet+velocity+verilog+vhdl+vim+t4-vb+wasm+wiki+xeora+xojo+xquery+tap+zig&plugins=line-numbers */
|
|
3
|
+
/**
|
|
4
|
+
* prism.js default theme for JavaScript, CSS and HTML
|
|
5
|
+
* Based on dabblet (http://dabblet.com)
|
|
6
|
+
* @author Lea Verou
|
|
7
|
+
*/
|
|
8
|
+
|
|
9
|
+
code[class*="language-"],
|
|
10
|
+
pre[class*="language-"] {
|
|
11
|
+
color: black;
|
|
12
|
+
background: none;
|
|
13
|
+
text-shadow: 0 1px white;
|
|
14
|
+
font-family: "Roboto Mono", Consolas, Courier, monospace;
|
|
15
|
+
font-size: 1em;
|
|
16
|
+
text-align: left;
|
|
17
|
+
white-space: pre;
|
|
18
|
+
word-spacing: normal;
|
|
19
|
+
word-break: normal;
|
|
20
|
+
word-wrap: normal;
|
|
21
|
+
line-height: 1.5;
|
|
22
|
+
|
|
23
|
+
-moz-tab-size: 4;
|
|
24
|
+
-o-tab-size: 4;
|
|
25
|
+
tab-size: 4;
|
|
26
|
+
|
|
27
|
+
-webkit-hyphens: none;
|
|
28
|
+
-moz-hyphens: none;
|
|
29
|
+
-ms-hyphens: none;
|
|
30
|
+
hyphens: none;
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
pre[class*="language-"]::-moz-selection, pre[class*="language-"] ::-moz-selection,
|
|
34
|
+
code[class*="language-"]::-moz-selection, code[class*="language-"] ::-moz-selection {
|
|
35
|
+
text-shadow: none;
|
|
36
|
+
background: #b3d4fc;
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
pre[class*="language-"]::selection, pre[class*="language-"] ::selection,
|
|
40
|
+
code[class*="language-"]::selection, code[class*="language-"] ::selection {
|
|
41
|
+
text-shadow: none;
|
|
42
|
+
background: #b3d4fc;
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
@media print {
|
|
46
|
+
code[class*="language-"],
|
|
47
|
+
pre[class*="language-"] {
|
|
48
|
+
text-shadow: none;
|
|
49
|
+
}
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
/* Code blocks */
|
|
53
|
+
pre[class*="language-"] {
|
|
54
|
+
padding: 1em;
|
|
55
|
+
margin: .5em 0;
|
|
56
|
+
overflow: auto;
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
:not(pre) > code[class*="language-"],
|
|
60
|
+
pre[class*="language-"] {
|
|
61
|
+
background: #f5f2f0;
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
/* Inline code */
|
|
65
|
+
:not(pre) > code[class*="language-"] {
|
|
66
|
+
padding: .1em;
|
|
67
|
+
border-radius: .3em;
|
|
68
|
+
white-space: normal;
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
.token.comment,
|
|
72
|
+
.token.block-comment,
|
|
73
|
+
.token.prolog,
|
|
74
|
+
.token.doctype,
|
|
75
|
+
.token.cdata {
|
|
76
|
+
color: slategray;
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
.token.comment,
|
|
80
|
+
.token.block-comment {
|
|
81
|
+
font-style: italic;
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
.token.punctuation {
|
|
85
|
+
color: #999;
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
.namespace {
|
|
89
|
+
opacity: .7;
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
.token.property,
|
|
93
|
+
.token.tag,
|
|
94
|
+
.token.boolean,
|
|
95
|
+
.token.number,
|
|
96
|
+
.token.constant,
|
|
97
|
+
.token.symbol,
|
|
98
|
+
.token.deleted {
|
|
99
|
+
color: #905;
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
.token.selector,
|
|
103
|
+
.token.attr-name,
|
|
104
|
+
.token.string,
|
|
105
|
+
.token.char,
|
|
106
|
+
.token.builtin,
|
|
107
|
+
.token.inserted {
|
|
108
|
+
color: #690;
|
|
109
|
+
}
|
|
110
|
+
|
|
111
|
+
.token.operator,
|
|
112
|
+
.token.entity,
|
|
113
|
+
.token.url,
|
|
114
|
+
.language-css .token.string,
|
|
115
|
+
.style .token.string {
|
|
116
|
+
color: #9a6e3a;
|
|
117
|
+
background: hsla(0, 0%, 100%, .5);
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
.token.atrule,
|
|
121
|
+
.token.attr-value,
|
|
122
|
+
.token.keyword {
|
|
123
|
+
color: #07a;
|
|
124
|
+
}
|
|
125
|
+
|
|
126
|
+
.token.function,
|
|
127
|
+
.token.class-name {
|
|
128
|
+
color: #DD4A68;
|
|
129
|
+
}
|
|
130
|
+
|
|
131
|
+
.token.regex,
|
|
132
|
+
.token.important,
|
|
133
|
+
.token.variable {
|
|
134
|
+
color: #e90;
|
|
135
|
+
}
|
|
136
|
+
|
|
137
|
+
.token.important,
|
|
138
|
+
.token.bold {
|
|
139
|
+
font-weight: bold;
|
|
140
|
+
}
|
|
141
|
+
.token.italic {
|
|
142
|
+
font-style: italic;
|
|
143
|
+
}
|
|
144
|
+
|
|
145
|
+
.token.entity {
|
|
146
|
+
cursor: help;
|
|
147
|
+
}
|
|
148
|
+
|
|
149
|
+
pre[class*="language-"].line-numbers {
|
|
150
|
+
position: relative;
|
|
151
|
+
padding-left: 3.8em;
|
|
152
|
+
counter-reset: linenumber;
|
|
153
|
+
}
|
|
154
|
+
|
|
155
|
+
pre[class*="language-"].line-numbers > code {
|
|
156
|
+
position: relative;
|
|
157
|
+
white-space: inherit;
|
|
158
|
+
}
|
|
159
|
+
|
|
160
|
+
.line-numbers .line-numbers-rows {
|
|
161
|
+
position: absolute;
|
|
162
|
+
pointer-events: none;
|
|
163
|
+
top: 0;
|
|
164
|
+
font-size: 100%;
|
|
165
|
+
left: -3.8em;
|
|
166
|
+
width: 3em; /* works for line-numbers below 1000 lines */
|
|
167
|
+
letter-spacing: -1px;
|
|
168
|
+
border-right: 1px solid #999;
|
|
169
|
+
|
|
170
|
+
-webkit-user-select: none;
|
|
171
|
+
-moz-user-select: none;
|
|
172
|
+
-ms-user-select: none;
|
|
173
|
+
user-select: none;
|
|
174
|
+
|
|
175
|
+
}
|
|
176
|
+
|
|
177
|
+
.line-numbers-rows > span {
|
|
178
|
+
pointer-events: none;
|
|
179
|
+
display: block;
|
|
180
|
+
counter-increment: linenumber;
|
|
181
|
+
}
|
|
182
|
+
|
|
183
|
+
.line-numbers-rows > span:before {
|
|
184
|
+
content: counter(linenumber);
|
|
185
|
+
color: #999;
|
|
186
|
+
display: block;
|
|
187
|
+
padding-right: 0.8em;
|
|
188
|
+
text-align: right;
|
|
189
|
+
}
|
|
190
|
+
|
|
@@ -1,128 +1,128 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* BlueNight for Boomack blue-night theme.
|
|
3
|
-
* @author Tobias Kiertscher
|
|
4
|
-
*/
|
|
5
|
-
|
|
6
|
-
code[class*="language-"],
|
|
7
|
-
pre[class*="language-"] {
|
|
8
|
-
color: #0000C0;
|
|
9
|
-
background: none;
|
|
10
|
-
font-family: "Roboto Mono", Consolas, Courier, monospace;
|
|
11
|
-
font-size: 1em;
|
|
12
|
-
text-align: left;
|
|
13
|
-
white-space: pre;
|
|
14
|
-
word-spacing: normal;
|
|
15
|
-
word-break: normal;
|
|
16
|
-
word-wrap: normal;
|
|
17
|
-
line-height: 1.5;
|
|
18
|
-
|
|
19
|
-
-moz-tab-size: 4;
|
|
20
|
-
-o-tab-size: 4;
|
|
21
|
-
tab-size: 4;
|
|
22
|
-
|
|
23
|
-
-webkit-hyphens: none;
|
|
24
|
-
-moz-hyphens: none;
|
|
25
|
-
-ms-hyphens: none;
|
|
26
|
-
hyphens: none;
|
|
27
|
-
}
|
|
28
|
-
/* Code blocks */
|
|
29
|
-
pre[class*="language-"] {
|
|
30
|
-
padding: 1em;
|
|
31
|
-
margin: .5em 0;
|
|
32
|
-
overflow: auto;
|
|
33
|
-
}
|
|
34
|
-
|
|
35
|
-
:not(pre) > code[class*="language-"],
|
|
36
|
-
pre[class*="language-"] {
|
|
37
|
-
background: #000000;
|
|
38
|
-
}
|
|
39
|
-
|
|
40
|
-
/* Inline code */
|
|
41
|
-
:not(pre) > code[class*="language-"] {
|
|
42
|
-
padding: .1em;
|
|
43
|
-
border-radius: .3em;
|
|
44
|
-
white-space: normal;
|
|
45
|
-
}
|
|
46
|
-
|
|
47
|
-
.token.comment,
|
|
48
|
-
.token.block-comment,
|
|
49
|
-
.token.prolog,
|
|
50
|
-
.token.doctype,
|
|
51
|
-
.token.cdata {
|
|
52
|
-
color: #000060;
|
|
53
|
-
}
|
|
54
|
-
|
|
55
|
-
.token.comment,
|
|
56
|
-
.token.block-comment {
|
|
57
|
-
font-style: italic;
|
|
58
|
-
}
|
|
59
|
-
|
|
60
|
-
.token.punctuation {
|
|
61
|
-
color: #0000D0;
|
|
62
|
-
}
|
|
63
|
-
|
|
64
|
-
.token.tag,
|
|
65
|
-
.token.attr-name,
|
|
66
|
-
.token.namespace,
|
|
67
|
-
.token.deleted {
|
|
68
|
-
color: #0000FF;
|
|
69
|
-
}
|
|
70
|
-
|
|
71
|
-
.token.function,
|
|
72
|
-
.token.function-name {
|
|
73
|
-
color: #0000FF;
|
|
74
|
-
font-style: italic;
|
|
75
|
-
}
|
|
76
|
-
|
|
77
|
-
.token.boolean,
|
|
78
|
-
.token.number {
|
|
79
|
-
color: #0000C0;
|
|
80
|
-
}
|
|
81
|
-
|
|
82
|
-
.token.property,
|
|
83
|
-
.token.class-name,
|
|
84
|
-
.token.constant,
|
|
85
|
-
.token.symbol {
|
|
86
|
-
color: #0000FF;
|
|
87
|
-
}
|
|
88
|
-
|
|
89
|
-
.token.selector,
|
|
90
|
-
.token.important,
|
|
91
|
-
.token.atrule,
|
|
92
|
-
.token.keyword,
|
|
93
|
-
.token.builtin {
|
|
94
|
-
color: #0000B8;
|
|
95
|
-
font-weight: 700;
|
|
96
|
-
}
|
|
97
|
-
|
|
98
|
-
.token.string,
|
|
99
|
-
.token.char,
|
|
100
|
-
.token.attr-value,
|
|
101
|
-
.token.regex,
|
|
102
|
-
.token.variable {
|
|
103
|
-
color: #0000E0;
|
|
104
|
-
}
|
|
105
|
-
|
|
106
|
-
.token.operator,
|
|
107
|
-
.token.url {
|
|
108
|
-
color: #0000F0;
|
|
109
|
-
}
|
|
110
|
-
|
|
111
|
-
.token.important,
|
|
112
|
-
.token.bold {
|
|
113
|
-
font-weight: bold;
|
|
114
|
-
}
|
|
115
|
-
.token.italic {
|
|
116
|
-
font-style: italic;
|
|
117
|
-
}
|
|
118
|
-
|
|
119
|
-
.token.entity {
|
|
120
|
-
background: #000040;
|
|
121
|
-
color: #0000E0;
|
|
122
|
-
font-style: italic;
|
|
123
|
-
cursor: help;
|
|
124
|
-
}
|
|
125
|
-
|
|
126
|
-
.token.inserted {
|
|
127
|
-
color: #5050FF;
|
|
128
|
-
}
|
|
1
|
+
/**
|
|
2
|
+
* BlueNight for Boomack blue-night theme.
|
|
3
|
+
* @author Tobias Kiertscher
|
|
4
|
+
*/
|
|
5
|
+
|
|
6
|
+
code[class*="language-"],
|
|
7
|
+
pre[class*="language-"] {
|
|
8
|
+
color: #0000C0;
|
|
9
|
+
background: none;
|
|
10
|
+
font-family: "Roboto Mono", Consolas, Courier, monospace;
|
|
11
|
+
font-size: 1em;
|
|
12
|
+
text-align: left;
|
|
13
|
+
white-space: pre;
|
|
14
|
+
word-spacing: normal;
|
|
15
|
+
word-break: normal;
|
|
16
|
+
word-wrap: normal;
|
|
17
|
+
line-height: 1.5;
|
|
18
|
+
|
|
19
|
+
-moz-tab-size: 4;
|
|
20
|
+
-o-tab-size: 4;
|
|
21
|
+
tab-size: 4;
|
|
22
|
+
|
|
23
|
+
-webkit-hyphens: none;
|
|
24
|
+
-moz-hyphens: none;
|
|
25
|
+
-ms-hyphens: none;
|
|
26
|
+
hyphens: none;
|
|
27
|
+
}
|
|
28
|
+
/* Code blocks */
|
|
29
|
+
pre[class*="language-"] {
|
|
30
|
+
padding: 1em;
|
|
31
|
+
margin: .5em 0;
|
|
32
|
+
overflow: auto;
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
:not(pre) > code[class*="language-"],
|
|
36
|
+
pre[class*="language-"] {
|
|
37
|
+
background: #000000;
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
/* Inline code */
|
|
41
|
+
:not(pre) > code[class*="language-"] {
|
|
42
|
+
padding: .1em;
|
|
43
|
+
border-radius: .3em;
|
|
44
|
+
white-space: normal;
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
.token.comment,
|
|
48
|
+
.token.block-comment,
|
|
49
|
+
.token.prolog,
|
|
50
|
+
.token.doctype,
|
|
51
|
+
.token.cdata {
|
|
52
|
+
color: #000060;
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
.token.comment,
|
|
56
|
+
.token.block-comment {
|
|
57
|
+
font-style: italic;
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
.token.punctuation {
|
|
61
|
+
color: #0000D0;
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
.token.tag,
|
|
65
|
+
.token.attr-name,
|
|
66
|
+
.token.namespace,
|
|
67
|
+
.token.deleted {
|
|
68
|
+
color: #0000FF;
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
.token.function,
|
|
72
|
+
.token.function-name {
|
|
73
|
+
color: #0000FF;
|
|
74
|
+
font-style: italic;
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
.token.boolean,
|
|
78
|
+
.token.number {
|
|
79
|
+
color: #0000C0;
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
.token.property,
|
|
83
|
+
.token.class-name,
|
|
84
|
+
.token.constant,
|
|
85
|
+
.token.symbol {
|
|
86
|
+
color: #0000FF;
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
.token.selector,
|
|
90
|
+
.token.important,
|
|
91
|
+
.token.atrule,
|
|
92
|
+
.token.keyword,
|
|
93
|
+
.token.builtin {
|
|
94
|
+
color: #0000B8;
|
|
95
|
+
font-weight: 700;
|
|
96
|
+
}
|
|
97
|
+
|
|
98
|
+
.token.string,
|
|
99
|
+
.token.char,
|
|
100
|
+
.token.attr-value,
|
|
101
|
+
.token.regex,
|
|
102
|
+
.token.variable {
|
|
103
|
+
color: #0000E0;
|
|
104
|
+
}
|
|
105
|
+
|
|
106
|
+
.token.operator,
|
|
107
|
+
.token.url {
|
|
108
|
+
color: #0000F0;
|
|
109
|
+
}
|
|
110
|
+
|
|
111
|
+
.token.important,
|
|
112
|
+
.token.bold {
|
|
113
|
+
font-weight: bold;
|
|
114
|
+
}
|
|
115
|
+
.token.italic {
|
|
116
|
+
font-style: italic;
|
|
117
|
+
}
|
|
118
|
+
|
|
119
|
+
.token.entity {
|
|
120
|
+
background: #000040;
|
|
121
|
+
color: #0000E0;
|
|
122
|
+
font-style: italic;
|
|
123
|
+
cursor: help;
|
|
124
|
+
}
|
|
125
|
+
|
|
126
|
+
.token.inserted {
|
|
127
|
+
color: #5050FF;
|
|
128
|
+
}
|