File tree Expand file tree Collapse file tree 1 file changed +21
-0
lines changed Expand file tree Collapse file tree 1 file changed +21
-0
lines changed Original file line number Diff line number Diff line change 11import { setThemes , setDefaultThemes , IThemeExtensionPoint } from 'vscode/service-override/theme'
22import { Disposable } from 'vscode'
3+ import { registerColor } from 'vscode/monaco'
34import defaultThemes from '../languages/extensions/themes.json'
45import themeLoader from '../languages/extensions/themeLoader'
56
7+ // Export 3 new colors used
8+ registerColor ( 'statusBar.foreground' , {
9+ dark : '#ffffff' ,
10+ light : '#20252a' ,
11+ hcDark : '#ffffff' ,
12+ hcLight : '#20252a'
13+ } , 'Status bar foreground color.' )
14+ registerColor ( 'statusBar.background' , {
15+ dark : '#252e38' ,
16+ light : '#ffffff' ,
17+ hcDark : null ,
18+ hcLight : null
19+ } , 'Status bar background color.' )
20+ registerColor ( 'statusBar.border' , {
21+ dark : '#41454a' ,
22+ light : '#dadada' ,
23+ hcDark : '#41454a' ,
24+ hcLight : '#dadada'
25+ } , 'Status bar border color.' )
26+
627interface DefaultTheme extends IThemeExtensionPoint {
728 extension : string
829}
You can’t perform that action at this time.
0 commit comments