Skip to content

Commit 5c7a699

Browse files
committedFeb 18, 2024
fix(website): fix theme example display issue. (#632)
1 parent d2a17b0 commit 5c7a699

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed
 

‎www/src/pages/theme/themes/Datas.ts

+3
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ import { darcula } from '@uiw/codemirror-theme-darcula';
1111
import { eclipse } from '@uiw/codemirror-theme-eclipse';
1212
import { bespin } from '@uiw/codemirror-theme-bespin';
1313
import { copilot } from '@uiw/codemirror-theme-copilot';
14+
import { consoleDark, consoleLight } from '@uiw/codemirror-theme-console';
1415
import { materialLight, materialDark } from '@uiw/codemirror-theme-material';
1516
import { monokai } from '@uiw/codemirror-theme-monokai';
1617
import { monokaiDimmed } from '@uiw/codemirror-theme-monokai-dimmed';
@@ -44,6 +45,8 @@ export const themeData = {
4445
basicDark,
4546
bbedit,
4647
bespin,
48+
consoleDark,
49+
consoleLight,
4750
copilot,
4851
darcula,
4952
dracula,

1 commit comments

Comments
 (1)

jaywcjlove commented on Feb 18, 2024

@jaywcjlove
MemberAuthor
Please sign in to comment.