Skip to content

Commit be13e62

Browse files
committed
Use vs-dark as the default dark Monaco theme
1 parent bb328f1 commit be13e62

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

ui/frontend/configureStore.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ const editorDarkThemes = {
1414
theme: 'github_dark',
1515
},
1616
monaco: {
17-
theme: 'vscode-dark-plus',
17+
theme: 'vs-dark',
1818
},
1919
},
2020
};

ui/frontend/local_storage.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ function migrateV1(state: V1Configuration): CurrentConfiguration {
9494
configuration: {
9595
...configuration,
9696
ace: { theme, keybinding, pairCharacters },
97-
monaco: { theme: 'vscode-dark-plus' },
97+
monaco: { theme: 'vs-dark' },
9898
theme: Theme.System,
9999
editor: editor === 'advanced' ? Editor.Ace : Editor.Simple,
100100
},

ui/frontend/reducers/configuration.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ const slice = createSlice({
135135
}
136136
case Theme.Dark: {
137137
state.ace.theme = 'github_dark';
138-
state.monaco.theme = 'vscode-dark-plus';
138+
state.monaco.theme = 'vs-dark';
139139
break;
140140
}
141141
}

0 commit comments

Comments
 (0)