Skip to content

Commit 661bfc9

Browse files
committedOct 5, 2024·
style(vscode): fix default value issue for light mode. #688
1 parent 1064e2a commit 661bfc9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎themes/vscode/src/light.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ export const vscodeLightStyle: CreateThemeOptions['styles'] = [
6868
];
6969

7070
export function vscodeLightInit(options?: Partial<CreateThemeOptions>) {
71-
const { theme = 'dark', settings = {}, styles = [] } = options || {};
71+
const { theme = 'light', settings = {}, styles = [] } = options || {};
7272
return createTheme({
7373
theme: theme,
7474
settings: {

0 commit comments

Comments
 (0)
Please sign in to comment.