mirror of
https://github.com/voideditor/void
synced 2026-05-24 09:58:23 +00:00
change default theme to dark+. also set default zoom to -1 (window.zoomLevel.default)
This commit is contained in:
parent
a1ca0f9291
commit
8264cccd04
1 changed files with 58 additions and 26 deletions
|
|
@ -44,45 +44,77 @@ export enum ThemeSettings {
|
|||
}
|
||||
|
||||
export enum ThemeSettingDefaults {
|
||||
COLOR_THEME_DARK = 'Default Dark Modern',
|
||||
COLOR_THEME_DARK = 'Default Dark+', // Void changed this. this is the default theme
|
||||
COLOR_THEME_LIGHT = 'Default Light Modern',
|
||||
COLOR_THEME_HC_DARK = 'Default High Contrast',
|
||||
COLOR_THEME_HC_LIGHT = 'Default High Contrast Light',
|
||||
|
||||
COLOR_THEME_DARK_OLD = 'Default Dark+',
|
||||
COLOR_THEME_DARK_OLD = 'Default Dark Modern', // Void changed this
|
||||
COLOR_THEME_LIGHT_OLD = 'Default Light+',
|
||||
|
||||
FILE_ICON_THEME = 'vs-seti',
|
||||
PRODUCT_ICON_THEME = 'Default',
|
||||
}
|
||||
|
||||
export const COLOR_THEME_DARK_INITIAL_COLORS = {
|
||||
'activityBar.activeBorder': '#0078d4',
|
||||
'activityBar.background': '#181818',
|
||||
'activityBar.border': '#2b2b2b',
|
||||
'activityBar.foreground': '#d7d7d7',
|
||||
'activityBar.inactiveForeground': '#868686',
|
||||
'editorGroup.border': '#ffffff17',
|
||||
'editorGroupHeader.tabsBackground': '#181818',
|
||||
'editorGroupHeader.tabsBorder': '#2b2b2b',
|
||||
'statusBar.background': '#181818',
|
||||
'statusBar.border': '#2b2b2b',
|
||||
'statusBar.foreground': '#cccccc',
|
||||
'statusBar.noFolderBackground': '#1f1f1f',
|
||||
'tab.activeBackground': '#1f1f1f',
|
||||
'tab.activeBorder': '#1f1f1f',
|
||||
'tab.activeBorderTop': '#0078d4',
|
||||
// export const COLOR_THEME_DARK_INITIAL_COLORS = {
|
||||
// 'activityBar.activeBorder': '#0078d4',
|
||||
// 'activityBar.background': '#181818',
|
||||
// 'activityBar.border': '#2b2b2b',
|
||||
// 'activityBar.foreground': '#d7d7d7',
|
||||
// 'activityBar.inactiveForeground': '#868686',
|
||||
// 'editorGroup.border': '#ffffff17',
|
||||
// 'editorGroupHeader.tabsBackground': '#181818',
|
||||
// 'editorGroupHeader.tabsBorder': '#2b2b2b',
|
||||
// 'statusBar.background': '#181818',
|
||||
// 'statusBar.border': '#2b2b2b',
|
||||
// 'statusBar.foreground': '#cccccc',
|
||||
// 'statusBar.noFolderBackground': '#1f1f1f',
|
||||
// 'tab.activeBackground': '#1f1f1f',
|
||||
// 'tab.activeBorder': '#1f1f1f',
|
||||
// 'tab.activeBorderTop': '#0078d4',
|
||||
// 'tab.activeForeground': '#ffffff',
|
||||
// 'tab.border': '#2b2b2b',
|
||||
// 'textLink.foreground': '#4daafc',
|
||||
// 'titleBar.activeBackground': '#181818',
|
||||
// 'titleBar.activeForeground': '#cccccc',
|
||||
// 'titleBar.border': '#2b2b2b',
|
||||
// 'titleBar.inactiveBackground': '#1f1f1f',
|
||||
// 'titleBar.inactiveForeground': '#9d9d9d',
|
||||
// 'welcomePage.tileBackground': '#2b2b2b'
|
||||
// };
|
||||
|
||||
|
||||
|
||||
export const COLOR_THEME_DARK_INITIAL_COLORS = { // Void changed this to match dark+
|
||||
'activityBar.activeBorder': '#ffffff',
|
||||
'activityBar.background': '#333333',
|
||||
'activityBar.border': '#454545',
|
||||
'activityBar.foreground': '#ffffff',
|
||||
'activityBar.inactiveForeground': '#ffffff66',
|
||||
'editorGroup.border': '#444444',
|
||||
'editorGroupHeader.tabsBackground': '#252526',
|
||||
'editorGroupHeader.tabsBorder': '#252526',
|
||||
'statusBar.background': '#007ACC',
|
||||
'statusBar.border': '#454545',
|
||||
'statusBar.foreground': '#ffffff',
|
||||
'statusBar.noFolderBackground': '#68217A',
|
||||
'tab.activeBackground': '#2D2D2D',
|
||||
'tab.activeBorder': '#ffffff',
|
||||
'tab.activeBorderTop': '#007ACC',
|
||||
'tab.activeForeground': '#ffffff',
|
||||
'tab.border': '#2b2b2b',
|
||||
'textLink.foreground': '#4daafc',
|
||||
'titleBar.activeBackground': '#181818',
|
||||
'titleBar.activeForeground': '#cccccc',
|
||||
'titleBar.border': '#2b2b2b',
|
||||
'titleBar.inactiveBackground': '#1f1f1f',
|
||||
'titleBar.inactiveForeground': '#9d9d9d',
|
||||
'welcomePage.tileBackground': '#2b2b2b'
|
||||
'tab.border': '#252526',
|
||||
'textLink.foreground': '#3794ff',
|
||||
'titleBar.activeBackground': '#3C3C3C',
|
||||
'titleBar.activeForeground': '#CCCCCC',
|
||||
'titleBar.border': '#454545',
|
||||
'titleBar.inactiveBackground': '#2C2C2C',
|
||||
'titleBar.inactiveForeground': '#999999',
|
||||
'welcomePage.tileBackground': '#252526'
|
||||
};
|
||||
|
||||
|
||||
|
||||
|
||||
export const COLOR_THEME_LIGHT_INITIAL_COLORS = {
|
||||
'activityBar.activeBorder': '#005FB8',
|
||||
'activityBar.background': '#f8f8f8',
|
||||
|
|
|
|||
Loading…
Reference in a new issue