mirror of
https://github.com/Tyriar/vscode-theme-generator.git
synced 2025-12-07 09:36:11 -08:00
Support guide
Note that invisibles is broken until Microsoft/vscode#19647 is resolved
This commit is contained in:
@@ -78,6 +78,7 @@ const sapphireColorSet: IColorSet = {
|
|||||||
background: '#151B24',
|
background: '#151B24',
|
||||||
foreground: '#efefef',
|
foreground: '#efefef',
|
||||||
cursor: '#ffffff',
|
cursor: '#ffffff',
|
||||||
|
guide: '#263040',
|
||||||
invisibles: '#263040',
|
invisibles: '#263040',
|
||||||
rangeHighlight: '#263040',
|
rangeHighlight: '#263040',
|
||||||
findMatchHighlight: '#4e2e62',
|
findMatchHighlight: '#4e2e62',
|
||||||
|
|||||||
@@ -29,8 +29,10 @@ export interface IColorSet {
|
|||||||
foreground?: string;
|
foreground?: string;
|
||||||
/** The color of the editor cursor/caret */
|
/** The color of the editor cursor/caret */
|
||||||
cursor?: string;
|
cursor?: string;
|
||||||
/** Indent guide */
|
/** Visible whitespace (editor.renderWhitespace) */
|
||||||
invisibles?: string;
|
invisibles?: string;
|
||||||
|
/** Indent guide */
|
||||||
|
guide?: string;
|
||||||
/** Line highlight, this will remove the line borders in favor of a solid highlight */
|
/** Line highlight, this will remove the line borders in favor of a solid highlight */
|
||||||
lineHighlight?: string;
|
lineHighlight?: string;
|
||||||
|
|
||||||
|
|||||||
@@ -100,6 +100,7 @@ const vscodeJsonGlobalThemeRules: IRuleGenerator[] = [
|
|||||||
{ source: set => set.ui.background, generate: getGlobalSettingGenerator('background') },
|
{ source: set => set.ui.background, generate: getGlobalSettingGenerator('background') },
|
||||||
{ source: set => set.ui.foreground, generate: getGlobalSettingGenerator('foreground') },
|
{ source: set => set.ui.foreground, generate: getGlobalSettingGenerator('foreground') },
|
||||||
{ source: set => set.ui.cursor, generate: getGlobalSettingGenerator('caret') },
|
{ source: set => set.ui.cursor, generate: getGlobalSettingGenerator('caret') },
|
||||||
|
{ source: set => set.ui.guide, generate: getGlobalSettingGenerator('guide') },
|
||||||
{ source: set => set.ui.invisibles, generate: getGlobalSettingGenerator('invisibles') },
|
{ source: set => set.ui.invisibles, generate: getGlobalSettingGenerator('invisibles') },
|
||||||
{ source: set => set.ui.findMatchHighlight, generate: getGlobalSettingGenerator('findMatchHighlight') },
|
{ source: set => set.ui.findMatchHighlight, generate: getGlobalSettingGenerator('findMatchHighlight') },
|
||||||
{ source: set => set.ui.currentFindMatchHighlight, generate: getGlobalSettingGenerator('currentFindMatchHighlight') },
|
{ source: set => set.ui.currentFindMatchHighlight, generate: getGlobalSettingGenerator('currentFindMatchHighlight') },
|
||||||
|
|||||||
Reference in New Issue
Block a user