default theme to light (#11358)

This commit is contained in:
Anthony Dresser
2020-07-16 13:38:18 -07:00
committed by GitHub
parent 9b1eb53665
commit c013e3fc27

View File

@@ -104,7 +104,7 @@ export class WorkbenchThemeService implements IWorkbenchThemeService {
@ILogService private readonly logService: ILogService
) {
this.container = layoutService.container;
const defaultThemeType = environmentService.configuration.defaultThemeType || DARK;
const defaultThemeType = environmentService.configuration.defaultThemeType || LIGHT; // {{SQL CARBON EDIT}} default to light theme
this.settings = new ThemeConfiguration(configurationService, defaultThemeType);
this.colorThemeRegistry = new ThemeRegistry(extensionService, colorThemesExtPoint, ColorThemeData.fromExtensionTheme);