提交 06a76b69 编写于 作者: B Benjamin Pasero

theme - add Color.transparent

上级 d0516e9b
......@@ -428,4 +428,5 @@ export class Color {
public static readonly green = new Color(new RGBA(0, 255, 0, 255));
public static readonly cyan = new Color(new RGBA(0, 255, 255, 255));
public static readonly lightgrey = new Color(new RGBA(211, 211, 211, 255));
public static readonly transparent = new Color(new RGBA(0, 0, 0, 0));
}
\ No newline at end of file
......@@ -20,7 +20,7 @@ export const ACTIVE_TAB_BACKGROUND = registerColor('activeTabBackground', {
export const INACTIVE_TAB_BACKGROUND = registerColor('inactiveTabBackground', {
dark: '#2D2D2D',
light: '#ECECEC',
hc: '#00000000'
hc: Color.transparent
}, nls.localize('inactiveTabBackground', "Inactive Tab background color. Tabs are the containers for editors in the editor area. Multiple tabs can be opened in one editor group."));
......@@ -50,13 +50,13 @@ export const STATUS_BAR_FOREGROUND = registerColor('statusBarForeground', {
export const STATUS_BAR_BACKGROUND = registerColor('statusBarBackground', {
dark: '#007ACC',
light: '#007ACC',
hc: '#00000000'
hc: Color.transparent
}, nls.localize('statusBarBackground', "Standard status bar background color. The status bar is shown in the bottom of the window"));
export const STATUS_BAR_NO_FOLDER_BACKGROUND = registerColor('statusBarNoFolderBackground', {
dark: '#68217A',
light: '#68217A',
hc: '#00000000'
hc: Color.transparent
}, nls.localize('statusBarNoFolderBackground', "Status bar background color when no folder is opened. The status bar is shown in the bottom of the window"));
/**
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册