Skip to content

Commit 13a3d07

Browse files
bundled
1 parent 51579ef commit 13a3d07

File tree

7 files changed

+56
-5
lines changed

7 files changed

+56
-5
lines changed
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export {};

dist/themes/highlight/css/neon-bunny.css

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,6 +94,8 @@
9494
/* ------------------------- Diff */
9595
--neon-bunny-addition: var(--neon-bunny-green-neon);
9696
--neon-bunny-deletion: var(--neon-bunny-red);
97+
/* -------------------------------------------------- HTML */
98+
--neon-bunny-html-tag-attr: var(--neon-bunny-green);
9799
/* -------------------------------------------------- CSS */
98100
--neon-bunny-css: var(--neon-bunny-purple-light-dim);
99101
/* ------------------------- General purpose */
@@ -102,6 +104,8 @@
102104
--neon-bunny-css-meta: var(--neon-bunny-red);
103105
/* ------------------------- Tags, attributes, configs */
104106
--neon-bunny-css-attribute: var(--neon-bunny-pink);
107+
/* -------------------------------------------------- JSON */
108+
--neon-bunny-json-punctuation: var(--neon-bunny-white);
105109
/* -------------------------------------------------- JavaScript */
106110
--neon-bunny-js: var(--neon-bunny-green-darker);
107111
/* ------------------------- General purpose */
@@ -140,7 +144,6 @@ pre[class*=language-] {
140144
-webkit-hyphens: none;
141145
color: var(--neon-bunny-white);
142146
font-family: Consolas, Monaco, "Andale Mono", "Ubuntu Mono", monospace;
143-
font-size: 1em;
144147
hyphens: none;
145148
line-height: 1.5;
146149
tab-size: 4;
@@ -192,6 +195,7 @@ pre[class*=language-] {
192195
white-space: normal;
193196
}
194197

198+
/* -------------------------------------------------- Standard */
195199
.hljs-built_in {
196200
color: var(--neon-bunny-builtin);
197201
}
@@ -392,6 +396,10 @@ pre[class*=language-] {
392396
color: var(--neon-bunny-deletion);
393397
}
394398

399+
.hljs.language-html .hljs-tag .hljs-attr {
400+
color: var(--neon-bunny-html-tag-attr);
401+
}
402+
395403
.hljs.language-css {
396404
color: var(--neon-bunny-css);
397405
}
@@ -591,6 +599,10 @@ pre[class*=language-] {
591599
color: var(--neon-bunny-deletion);
592600
}
593601

602+
.hljs.language-json .hljs-punctuation {
603+
color: var(--neon-bunny-json-punctuation);
604+
}
605+
594606
.hljs.language-javascript, .hljs.language-js {
595607
color: var(--neon-bunny-js);
596608
}

dist/themes/highlight/css/neon-bunny.min.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/themes/highlight/scss/neon-bunny-highlight.scss

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -103,6 +103,9 @@
103103
--neon-bunny-addition: var(--neon-bunny-green-neon);
104104
--neon-bunny-deletion: var(--neon-bunny-red);
105105

106+
/* -------------------------------------------------- HTML */
107+
--neon-bunny-html-tag-attr: var(--neon-bunny-green);
108+
106109
/* -------------------------------------------------- CSS */
107110
--neon-bunny-css: var(--neon-bunny-purple-light-dim);
108111

@@ -115,6 +118,9 @@
115118
/* ------------------------- Tags, attributes, configs */
116119
--neon-bunny-css-attribute: var(--neon-bunny-pink);
117120

121+
/* -------------------------------------------------- JSON */
122+
--neon-bunny-json-punctuation: var(--neon-bunny-white);
123+
118124
/* -------------------------------------------------- JavaScript */
119125
--neon-bunny-js: var(--neon-bunny-green-darker);
120126

@@ -429,6 +435,16 @@ pre[class*="language-"] {
429435
color: var(--neon-bunny-deletion);
430436
}
431437

438+
&.language-html {
439+
.hljs {
440+
&-tag {
441+
.hljs-attr {
442+
color: var(--neon-bunny-html-tag-attr);
443+
}
444+
}
445+
}
446+
}
447+
432448

433449
&.language-css {
434450
color: var(--neon-bunny-css);
@@ -650,6 +666,15 @@ pre[class*="language-"] {
650666
}
651667
}
652668

669+
/* -------------------------------------------------- JSON */
670+
&.language-json {
671+
.hljs {
672+
&-punctuation {
673+
color: var(--neon-bunny-json-punctuation);
674+
}
675+
}
676+
}
677+
653678
/* -------------------------------------------------- JavaScript */
654679
&.language-javascript,
655680
&.language-js {

dist/themes/index.js

Lines changed: 14 additions & 1 deletion
Large diffs are not rendered by default.

dist/vue3-code-block.es.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/vue3-code-block.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)