Skip to content

Commit f35a334

Browse files
committed
fixup!
1 parent 31efd11 commit f35a334

4 files changed

Lines changed: 8 additions & 8 deletions

File tree

packages/rehype-shiki/src/__tests__/highlighter.test.mjs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,9 @@ mock.module('shiki/themes/nord.mjs', {
2525
defaultExport: { name: 'nord', colors: { 'editor.background': '#2e3440' } },
2626
});
2727

28-
mock.module('shiki/themes/github-light.mjs', {
28+
mock.module('shiki/themes/github-light-default.mjs', {
2929
defaultExport: {
30-
name: 'github-light',
30+
name: 'github-light-default',
3131
colors: { 'editor.background': '#fff' },
3232
},
3333
});

packages/rehype-shiki/src/highlighter.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { createHighlighterCoreSync, isSpecialLang } from '@shikijs/core';
2-
import shikiGitHubLightTheme from 'shiki/themes/github-light.mjs';
2+
import shikiGitHubLightTheme from 'shiki/themes/github-light-default.mjs';
33
import shikiNordTheme from 'shiki/themes/nord.mjs';
44

55
const DEFAULT_DARK_THEME = {

packages/ui-components/src/Common/BaseCodeBox/index.module.css

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@
5151
mr-4
5252
w-4.5
5353
text-right
54-
text-neutral-500
54+
text-neutral-700
5555
[content:counter(line)]
5656
[counter-increment:line]
5757
dark:text-neutral-600;
@@ -86,7 +86,7 @@
8686
dark:border-t-neutral-900;
8787

8888
& > .language {
89-
@apply text-neutral-700
89+
@apply text-neutral-800
9090
dark:text-neutral-400;
9191
}
9292

packages/ui-components/src/Common/CodeTabs/index.module.css

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
@apply border-b
2323
border-b-transparent
2424
px-1
25-
text-neutral-700
25+
text-neutral-800
2626
dark:text-neutral-200;
2727

2828
&[data-state='active'] {
@@ -38,14 +38,14 @@
3838
items-center
3939
gap-2
4040
text-center
41-
text-neutral-700
41+
text-neutral-800
4242
motion-safe:transition-colors
4343
lg:flex
4444
dark:text-neutral-200;
4545

4646
& > .icon {
4747
@apply size-4
48-
text-neutral-600
48+
text-neutral-700
4949
dark:text-neutral-300;
5050
}
5151

0 commit comments

Comments
 (0)