Skip to content

Commit

Permalink
style(vscode): fix default value issue for light mode. #688
Browse files Browse the repository at this point in the history
  • Loading branch information
jaywcjlove committed Oct 5, 2024
1 parent 1064e2a commit 661bfc9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion themes/vscode/src/light.ts
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ export const vscodeLightStyle: CreateThemeOptions['styles'] = [
];

export function vscodeLightInit(options?: Partial<CreateThemeOptions>) {
const { theme = 'dark', settings = {}, styles = [] } = options || {};
const { theme = 'light', settings = {}, styles = [] } = options || {};
return createTheme({
theme: theme,
settings: {
Expand Down

0 comments on commit 661bfc9

Please sign in to comment.