Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Default Themes: Rename Experimental to Dark Modern #180785

Merged
merged 1 commit into from
Apr 25, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions extensions/theme-defaults/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"path": "./themes/dark_plus.json"
},
{
"id": "Default Dark+ Experimental",
"id": "Default Dark Modern",
"label": "%darkPlusExperimentalColorThemeLabel%",
"uiTheme": "vs-dark",
"path": "./themes/dark_plus_experimental.json"
Expand All @@ -32,7 +32,7 @@
"path": "./themes/light_plus.json"
},
{
"id": "Default Light+ Experimental",
"id": "Default Light Modern",
"label": "%lightPlusExperimentalColorThemeLabel%",
"uiTheme": "vs",
"path": "./themes/light_plus_experimental.json"
Expand Down
4 changes: 2 additions & 2 deletions extensions/theme-defaults/package.nls.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
"displayName": "Default Themes",
"description": "The default Visual Studio light and dark themes",
"darkPlusColorThemeLabel": "Dark+",
"darkPlusExperimentalColorThemeLabel": "Dark+ Experimental",
"darkPlusExperimentalColorThemeLabel": "Dark Modern",
"lightPlusColorThemeLabel": "Light+",
"lightPlusExperimentalColorThemeLabel": "Light+ Experimental",
"lightPlusExperimentalColorThemeLabel": "Light Modern",
"darkColorThemeLabel": "Dark (Visual Studio)",
"lightColorThemeLabel": "Light (Visual Studio)",
"hcColorThemeLabel": "Dark High Contrast",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"$schema": "vscode://schemas/color-theme",
"name": "Dark+ (Experimental)",
"name": "Default Dark Modern",
"include": "./dark_plus.json",
"colors": {
"activityBar.activeBorder": "#0078d4",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"$schema": "vscode://schemas/color-theme",
"name": "Light+ (Experimental)",
"name": "Default Light Modern",
"include": "./light_plus.json",
"colors": {
"activityBar.activeBorder": "#005FB8",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@ export enum ThemeSettings {
}

export enum ThemeSettingDefaults {
COLOR_THEME_DARK = 'Default Dark+ Experimental',
COLOR_THEME_LIGHT = 'Default Light+ Experimental',
COLOR_THEME_DARK = 'Default Dark Modern',
COLOR_THEME_LIGHT = 'Default Light Modern',
COLOR_THEME_HC_DARK = 'Default High Contrast',
COLOR_THEME_HC_LIGHT = 'Default High Contrast Light',

Expand Down