Clean js files
This commit is contained in:
parent
2a21be7e6d
commit
3f4a1be8a0
11 changed files with 0 additions and 960 deletions
|
@ -1,432 +0,0 @@
|
||||||
"use strict";
|
|
||||||
exports.__esModule = true;
|
|
||||||
var fs = require("fs-extra");
|
|
||||||
var path = require("path");
|
|
||||||
var default_1 = require("./settings/specific/default");
|
|
||||||
var default_hc_1 = require("./settings/specific/default-hc");
|
|
||||||
var darker_1 = require("./settings/specific/darker");
|
|
||||||
var darker_hc_1 = require("./settings/specific/darker-hc");
|
|
||||||
var lighter_1 = require("./settings/specific/lighter");
|
|
||||||
var lighter_hc_1 = require("./settings/specific/lighter-hc");
|
|
||||||
var ocean_1 = require("./settings/specific/ocean");
|
|
||||||
var ocean_hc_1 = require("./settings/specific/ocean-hc");
|
|
||||||
var palenight_1 = require("./settings/specific/palenight");
|
|
||||||
var palenight_hc_1 = require("./settings/specific/palenight-hc");
|
|
||||||
// tslint:disable-next-line: no-submodule-imports
|
|
||||||
var vscode_theme_generator_1 = require("@moxer/vscode-theme-generator");
|
|
||||||
/**
|
|
||||||
* Define paths
|
|
||||||
*/
|
|
||||||
var buildPath = path.join(__dirname, '../../out/themes');
|
|
||||||
var themes = [
|
|
||||||
default_1["default"],
|
|
||||||
default_hc_1["default"],
|
|
||||||
darker_1["default"],
|
|
||||||
darker_hc_1["default"],
|
|
||||||
lighter_1["default"],
|
|
||||||
lighter_hc_1["default"],
|
|
||||||
ocean_1["default"],
|
|
||||||
ocean_hc_1["default"],
|
|
||||||
palenight_1["default"],
|
|
||||||
palenight_hc_1["default"]
|
|
||||||
];
|
|
||||||
/**
|
|
||||||
* Checl if the build folder exist.
|
|
||||||
* If not, create it.
|
|
||||||
*/
|
|
||||||
if (!fs.existsSync(buildPath)) {
|
|
||||||
fs.mkdirSync(buildPath);
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
* Generate a [theme-name].json for each
|
|
||||||
* theme file found inside src/themes
|
|
||||||
*/
|
|
||||||
themes.forEach(function (theme) {
|
|
||||||
var colorSet = {
|
|
||||||
base: {
|
|
||||||
// Determines the overall background color
|
|
||||||
background: theme.scheme.background,
|
|
||||||
// Determines boolean, identifier, keyword, storage, and cssClass
|
|
||||||
color1: theme.scheme.base.red,
|
|
||||||
// Determines string, stringEscape, and cssId
|
|
||||||
color2: theme.scheme.base.green,
|
|
||||||
// Determines function, class, classMember, type, and cssTag
|
|
||||||
color3: theme.scheme.base.yellow,
|
|
||||||
// Determines functionCall and number
|
|
||||||
color4: theme.scheme.base.paleblue,
|
|
||||||
// Determines the overall text foreground color
|
|
||||||
foreground: theme.scheme.base.white
|
|
||||||
},
|
|
||||||
/**
|
|
||||||
* Overrides workbench UI Elements
|
|
||||||
*/
|
|
||||||
workbench: {
|
|
||||||
/**
|
|
||||||
* General elements style
|
|
||||||
*/
|
|
||||||
focusBorder: theme.scheme.background + '00',
|
|
||||||
'widget.shadow': theme.scheme.background + '00',
|
|
||||||
'selection.background': theme.scheme.base.paleblue + '50',
|
|
||||||
'scrollbar.shadow': theme.scheme.background + '00',
|
|
||||||
'editorLink.activeForeground': theme.scheme.foreground,
|
|
||||||
'progressBar.background': theme.scheme.base.yellow,
|
|
||||||
'debugToolBar.background': theme.scheme.background,
|
|
||||||
'pickerGroup.foreground': theme.scheme.base.yellow,
|
|
||||||
'editorMarkerNavigation.background': theme.scheme.foreground + '05',
|
|
||||||
'tree.indentGuidesStroke': theme.scheme.shade1,
|
|
||||||
'terminalCursor.foreground': theme.scheme.base.yellow,
|
|
||||||
'terminalCursor.background': theme.scheme.base.black,
|
|
||||||
/**
|
|
||||||
* Buttons style
|
|
||||||
*/
|
|
||||||
'button.background': theme.scheme.background,
|
|
||||||
'button.hoverBackground': theme.scheme.shade2,
|
|
||||||
/**
|
|
||||||
* Links style
|
|
||||||
*/
|
|
||||||
'textLink.foreground': theme.scheme.base.cyan,
|
|
||||||
'textLink.activeForeground': theme.scheme.base.yellow,
|
|
||||||
/**
|
|
||||||
* Sidebar style
|
|
||||||
*/
|
|
||||||
'sideBar.background': theme.scheme.background,
|
|
||||||
'sideBar.foreground': theme.scheme.shade4,
|
|
||||||
'sideBar.border': theme.scheme.shade2 + '50',
|
|
||||||
/**
|
|
||||||
* Sidebar elements style
|
|
||||||
*/
|
|
||||||
'sideBarTitle.foreground': theme.scheme.shade4,
|
|
||||||
'sideBarSectionHeader.background': theme.scheme.background,
|
|
||||||
// "sideBarSectionHeader.foreground": theme.scheme.foreground,
|
|
||||||
'sideBarSectionHeader.border': theme.scheme.background,
|
|
||||||
/**
|
|
||||||
* Window panels style (terminal, global search)
|
|
||||||
*/
|
|
||||||
'panel.background': theme.scheme.background,
|
|
||||||
'panel.border': theme.scheme.borders,
|
|
||||||
'panel.dropBackground': theme.scheme.shade2,
|
|
||||||
/**
|
|
||||||
* Window panels elements style
|
|
||||||
*/
|
|
||||||
'panelTitle.inactiveForeground': theme.scheme.shade4,
|
|
||||||
'panelTitle.activeForeground': theme.scheme.base.white,
|
|
||||||
'panelTitle.activeBorder': theme.scheme.base.yellow,
|
|
||||||
/**
|
|
||||||
* Code Editor style
|
|
||||||
*/
|
|
||||||
'editor.background': theme.scheme.background,
|
|
||||||
'editor.foreground': theme.scheme.foreground,
|
|
||||||
'editor.lineHighlightBackground': theme.scheme.shade1 + '50',
|
|
||||||
'editor.lineHighlightBorder': theme.scheme.shade1 + '00',
|
|
||||||
'editor.findMatchBackground': theme.scheme.background + '00',
|
|
||||||
'editor.findMatchHighlightBackground': theme.scheme.background + '00',
|
|
||||||
'editor.findMatchBorder': theme.scheme.base.pink,
|
|
||||||
'editor.findMatchHighlightBorder': theme.scheme.shade6,
|
|
||||||
// Editor Indent guides
|
|
||||||
'editorIndentGuide.background': theme.scheme.shade1,
|
|
||||||
'editorIndentGuide.activeBackground': theme.scheme.shade3,
|
|
||||||
// Editor line number
|
|
||||||
'editorLineNumber.foreground': theme.scheme.shade3,
|
|
||||||
'editorLineNumber.activeForeground': theme.scheme.base.yellow,
|
|
||||||
// Editor tab groups
|
|
||||||
'editorGroupHeader.tabsBackground': theme.scheme.background,
|
|
||||||
'editorGroup.border': theme.scheme.background,
|
|
||||||
// Editor gutter
|
|
||||||
'editorGutter.modifiedBackground': theme.scheme.base.blue + '60',
|
|
||||||
'editorGutter.addedBackground': theme.scheme.base.green + '60',
|
|
||||||
'editorGutter.deletedBackground': theme.scheme.base.red + '60',
|
|
||||||
/**
|
|
||||||
* Activity bar style
|
|
||||||
*/
|
|
||||||
'activityBar.background': theme.scheme.background,
|
|
||||||
'activityBar.border': theme.scheme.background,
|
|
||||||
'activityBar.foreground': theme.scheme.shade5,
|
|
||||||
'activityBar.activeBorder': theme.scheme.base.pink,
|
|
||||||
/**
|
|
||||||
* Activity bar badges style
|
|
||||||
*/
|
|
||||||
'activityBarBadge.background': theme.scheme.base.cyan,
|
|
||||||
'activityBarBadge.foreground': theme.scheme.background,
|
|
||||||
/**
|
|
||||||
* Global badges style
|
|
||||||
*/
|
|
||||||
'badge.background': theme.scheme.base.cyan,
|
|
||||||
'badge.foreground': theme.scheme.background,
|
|
||||||
/**
|
|
||||||
* Extensions badge style
|
|
||||||
*/
|
|
||||||
'extensionBadge.remoteBackground': theme.scheme.shade3,
|
|
||||||
'extensionBadge.remoteForeground': theme.scheme.foreground,
|
|
||||||
/**
|
|
||||||
* Scrollbar style
|
|
||||||
*/
|
|
||||||
'scrollbarSlider.background': theme.scheme.shade4 + '50',
|
|
||||||
'scrollbarSlider.hoverBackground': theme.scheme.shade2,
|
|
||||||
'scrollbarSlider.activeBackground': theme.scheme.shade4,
|
|
||||||
/**
|
|
||||||
* Tabs style
|
|
||||||
*/
|
|
||||||
'tab.activeBorder': theme.scheme.background,
|
|
||||||
'tab.activeBorderTop': theme.scheme.base.cyan,
|
|
||||||
'tab.inactiveModifiedBorder': theme.scheme.shade5,
|
|
||||||
'tab.activeModifiedBorder': theme.scheme.base.pink,
|
|
||||||
'tab.unfocusedActiveBorder': theme.scheme.shade4,
|
|
||||||
'tab.activeForeground': theme.scheme.base.white,
|
|
||||||
'tab.activeBackground': theme.scheme.background,
|
|
||||||
'tab.inactiveForeground': theme.scheme.shade4,
|
|
||||||
'tab.inactiveBackground': theme.scheme.background,
|
|
||||||
'tab.unfocusedActiveForeground': theme.scheme.foreground,
|
|
||||||
'tab.border': theme.scheme.background,
|
|
||||||
/**
|
|
||||||
* Editor overlay widgets style (find/replace..)
|
|
||||||
*/
|
|
||||||
'editorWidget.background': theme.scheme.shade1,
|
|
||||||
'editorWidget.resizeBorder': theme.scheme.base.yellow,
|
|
||||||
'editorWidget.border': theme.scheme.base.yellow,
|
|
||||||
/**
|
|
||||||
* Statusbar style
|
|
||||||
*/
|
|
||||||
'statusBar.noFolderBackground': theme.scheme.background,
|
|
||||||
'statusBar.border': theme.scheme.borders,
|
|
||||||
'statusBar.background': theme.scheme.background,
|
|
||||||
'statusBar.foreground': theme.scheme.shade4,
|
|
||||||
'statusBar.debuggingBackground': theme.scheme.base.purple,
|
|
||||||
'statusBar.debuggingForeground': theme.scheme.base.white,
|
|
||||||
/**
|
|
||||||
* Statusbar items style
|
|
||||||
*/
|
|
||||||
'statusBarItem.hoverBackground': theme.scheme.shade1 + '50',
|
|
||||||
'statusBarItem.remoteForeground': theme.scheme.base.black,
|
|
||||||
'statusBarItem.remoteBackground': theme.scheme.base.yellow,
|
|
||||||
/**
|
|
||||||
* Matching brackets style
|
|
||||||
*/
|
|
||||||
'editorBracketMatch.border': theme.scheme.base.cyan + '70',
|
|
||||||
'editorBracketMatch.background': theme.scheme.background,
|
|
||||||
/**
|
|
||||||
* Editor Overview Ruler style
|
|
||||||
*/
|
|
||||||
'editorOverviewRuler.findMatchForeground': theme.scheme.base.pink,
|
|
||||||
'editorOverviewRuler.border': theme.scheme.borders,
|
|
||||||
'editorOverviewRuler.errorForeground': theme.scheme.base.red,
|
|
||||||
'editorOverviewRuler.infoForeground': theme.scheme.base.blue,
|
|
||||||
'editorOverviewRuler.warningForeground': theme.scheme.base.yellow,
|
|
||||||
/**
|
|
||||||
* Squigglies style
|
|
||||||
*/
|
|
||||||
'editorInfo.foreground': theme.scheme.base.blue,
|
|
||||||
'editorWarning.foreground': theme.scheme.base.yellow,
|
|
||||||
'editorError.foreground': theme.scheme.base.red,
|
|
||||||
/**
|
|
||||||
* Popop dialogs style
|
|
||||||
*/
|
|
||||||
'editorHoverWidget.background': theme.scheme.shade1,
|
|
||||||
'editorHoverWidget.border': theme.scheme.shade1,
|
|
||||||
/**
|
|
||||||
* Title bar style
|
|
||||||
*/
|
|
||||||
'titleBar.activeBackground': theme.scheme.background,
|
|
||||||
'titleBar.activeForeground': theme.scheme.foreground,
|
|
||||||
'titleBar.inactiveBackground': theme.scheme.background,
|
|
||||||
'titleBar.inactiveForeground': theme.scheme.shade4,
|
|
||||||
'titleBar.border': theme.scheme.borders,
|
|
||||||
/**
|
|
||||||
* Textfield and inputs style
|
|
||||||
*/
|
|
||||||
'input.background': theme.scheme.background,
|
|
||||||
'input.foreground': theme.scheme.base.pink,
|
|
||||||
'input.placeholderForeground': theme.scheme.shade3,
|
|
||||||
'input.border': theme.scheme.shade1,
|
|
||||||
/**
|
|
||||||
* Inputs validation style
|
|
||||||
*/
|
|
||||||
'inputValidation.errorBorder': theme.scheme.base.red + '50',
|
|
||||||
'inputValidation.infoBorder': theme.scheme.base.blue + '50',
|
|
||||||
'inputValidation.warningBorder': theme.scheme.base.yellow + '50',
|
|
||||||
/**
|
|
||||||
* Dropdown menu style
|
|
||||||
*/
|
|
||||||
'dropdown.background': theme.scheme.shade1,
|
|
||||||
'dropdown.border': theme.scheme.shade1,
|
|
||||||
/**
|
|
||||||
* Lists style
|
|
||||||
*/
|
|
||||||
'list.hoverForeground': theme.scheme.foreground,
|
|
||||||
'list.hoverBackground': theme.scheme.background + '00',
|
|
||||||
'list.activeSelectionBackground': theme.scheme.background + '00',
|
|
||||||
'list.activeSelectionForeground': theme.scheme.base.cyan,
|
|
||||||
'list.inactiveSelectionForeground': theme.scheme.base.cyan,
|
|
||||||
'list.inactiveSelectionBackground': theme.scheme.shade1 + '50',
|
|
||||||
'list.focusBackground': theme.scheme.shade1,
|
|
||||||
'list.focusForeground': theme.scheme.base.white,
|
|
||||||
'list.highlightForeground': theme.scheme.base.cyan,
|
|
||||||
'list.dropBackground': theme.scheme.shade2,
|
|
||||||
/**
|
|
||||||
* Editor suggest widget style
|
|
||||||
*/
|
|
||||||
'editorSuggestWidget.background': theme.scheme.shade1,
|
|
||||||
'editorSuggestWidget.foreground': theme.scheme.foreground,
|
|
||||||
'editorSuggestWidget.highlightForeground': theme.scheme.base.cyan,
|
|
||||||
'editorSuggestWidget.selectedBackground': theme.scheme.shade2,
|
|
||||||
'editorSuggestWidget.border': theme.scheme.shade1,
|
|
||||||
/**
|
|
||||||
* Editor diff editor style
|
|
||||||
*/
|
|
||||||
'diffEditor.insertedTextBackground': theme.scheme.base.cyan + '20',
|
|
||||||
'diffEditor.removedTextBackground': theme.scheme.base.pink + '20',
|
|
||||||
/**
|
|
||||||
* Extensions button style
|
|
||||||
*/
|
|
||||||
'extensionButton.prominentBackground': theme.scheme.base.yellow,
|
|
||||||
'extensionButton.prominentHoverBackground': theme.scheme.base.yellow,
|
|
||||||
'extensionButton.prominentForeground': theme.scheme.background,
|
|
||||||
/**
|
|
||||||
* Peekview window style
|
|
||||||
*/
|
|
||||||
'peekViewEditor.background': theme.scheme.background,
|
|
||||||
'peekViewResult.background': theme.scheme.background,
|
|
||||||
'peekView.border': theme.scheme.shade1,
|
|
||||||
'peekViewTitle.background': theme.scheme.shade1,
|
|
||||||
'peekViewEditorGutter.background': theme.scheme.background,
|
|
||||||
'peekViewTitleDescription.foreground': theme.scheme.foreground,
|
|
||||||
'peekViewResult.matchHighlightBackground': theme.scheme.base.pink + '50',
|
|
||||||
'peekViewEditor.matchHighlightBackground': theme.scheme.base.pink + '50',
|
|
||||||
'peekViewResult.selectionBackground': theme.scheme.shade1,
|
|
||||||
/**
|
|
||||||
* GIT decorations style
|
|
||||||
*/
|
|
||||||
'gitDecoration.deletedResourceForeground': theme.scheme.base.red,
|
|
||||||
'gitDecoration.conflictingResourceForeground': theme.scheme.base.yellow,
|
|
||||||
'gitDecoration.modifiedResourceForeground': theme.scheme.base.blue,
|
|
||||||
'gitDecoration.untrackedResourceForeground': theme.scheme.base.green,
|
|
||||||
'gitDecoration.ignoredResourceForeground': theme.scheme.shade1,
|
|
||||||
/**
|
|
||||||
* Breadcrumb style
|
|
||||||
*/
|
|
||||||
'breadcrumb.background': theme.scheme.background,
|
|
||||||
'breadcrumb.foreground': theme.scheme.shade4,
|
|
||||||
'breadcrumb.focusForeground': theme.scheme.foreground,
|
|
||||||
'breadcrumb.activeSelectionForeground': theme.scheme.base.pink,
|
|
||||||
'breadcrumbPicker.background': theme.scheme.background,
|
|
||||||
/**
|
|
||||||
* Custom menus style
|
|
||||||
*/
|
|
||||||
'menu.background': theme.scheme.shade1,
|
|
||||||
'menu.foreground': theme.scheme.shade3,
|
|
||||||
'menu.selectionBackground': theme.scheme.shade1,
|
|
||||||
'menu.selectionForeground': theme.scheme.foreground,
|
|
||||||
'menu.selectionBorder': theme.scheme.shade1,
|
|
||||||
'menu.separatorBackground': theme.scheme.shade3,
|
|
||||||
/**
|
|
||||||
* Menu Bar style
|
|
||||||
*/
|
|
||||||
'menubar.selectionBackground': theme.scheme.shade1,
|
|
||||||
'menubar.selectionForeground': theme.scheme.foreground,
|
|
||||||
'menubar.selectionBorder': theme.scheme.shade1,
|
|
||||||
/**
|
|
||||||
* Settings elements style
|
|
||||||
*/
|
|
||||||
'settings.dropdownForeground': theme.scheme.foreground,
|
|
||||||
'settings.dropdownBackground': theme.scheme.background,
|
|
||||||
'settings.numberInputForeground': theme.scheme.foreground,
|
|
||||||
'settings.numberInputBackground': theme.scheme.background,
|
|
||||||
'settings.textInputForeground': theme.scheme.foreground,
|
|
||||||
'settings.textInputBackground': theme.scheme.background,
|
|
||||||
'settings.headerForeground': theme.scheme.base.cyan,
|
|
||||||
'settings.modifiedItemIndicator': theme.scheme.base.pink,
|
|
||||||
'settings.checkboxBackground': theme.scheme.background,
|
|
||||||
'settings.checkboxForeground': theme.scheme.foreground,
|
|
||||||
/**
|
|
||||||
* List Filter Widget style
|
|
||||||
*/
|
|
||||||
'listFilterWidget.background': theme.scheme.base.violet,
|
|
||||||
'listFilterWidget.outline': theme.scheme.base.violet,
|
|
||||||
'listFilterWidget.noMatchesOutline': theme.scheme.base.violet
|
|
||||||
},
|
|
||||||
/**
|
|
||||||
* Overrides specific syntax scopes provided
|
|
||||||
* by the theme generator
|
|
||||||
*/
|
|
||||||
syntax: {
|
|
||||||
boolean: theme.scheme.base.pink,
|
|
||||||
"class": theme.scheme.base.violet,
|
|
||||||
classMember: theme.scheme.base.red,
|
|
||||||
comment: theme.scheme.shade4,
|
|
||||||
cssClass: theme.scheme.base.yellow,
|
|
||||||
cssId: theme.scheme.base.orange,
|
|
||||||
cssTag: theme.scheme.base.yellow,
|
|
||||||
"function": theme.scheme.base.yellow,
|
|
||||||
functionCall: theme.scheme.base.violet,
|
|
||||||
identifier: theme.scheme.base.cyan,
|
|
||||||
keyword: theme.scheme.base.red,
|
|
||||||
storage: theme.scheme.foreground,
|
|
||||||
string: theme.scheme.base.green,
|
|
||||||
stringEscape: theme.scheme.foreground,
|
|
||||||
type: theme.scheme.base.pink
|
|
||||||
},
|
|
||||||
/**
|
|
||||||
* Define the integrated shell
|
|
||||||
* color palette
|
|
||||||
*/
|
|
||||||
terminal: {
|
|
||||||
black: theme.scheme.shade3,
|
|
||||||
blue: theme.scheme.base.blue,
|
|
||||||
brightBlack: theme.scheme.shade3,
|
|
||||||
brightBlue: theme.scheme.base.blue,
|
|
||||||
brightCyan: theme.scheme.base.cyan,
|
|
||||||
brightGreen: theme.scheme.base.green,
|
|
||||||
brightMagenta: theme.scheme.base.purple,
|
|
||||||
brightRed: theme.scheme.base.red,
|
|
||||||
brightWhite: theme.scheme.base.white,
|
|
||||||
brightYellow: theme.scheme.base.yellow,
|
|
||||||
cyan: theme.scheme.base.cyan,
|
|
||||||
green: theme.scheme.base.green,
|
|
||||||
magenta: theme.scheme.base.purple,
|
|
||||||
red: theme.scheme.base.red,
|
|
||||||
white: theme.scheme.base.white,
|
|
||||||
yellow: theme.scheme.base.yellow
|
|
||||||
},
|
|
||||||
/**
|
|
||||||
* Define workbench colors
|
|
||||||
*/
|
|
||||||
ui: {
|
|
||||||
// highlights matches from the find widget
|
|
||||||
currentFindMatchHighlight: theme.scheme.shade5,
|
|
||||||
// set the editor cursor color
|
|
||||||
cursor: theme.scheme.base.yellow,
|
|
||||||
// ighlights matches from the find widge
|
|
||||||
findMatchHighlight: theme.scheme.base.pink,
|
|
||||||
// highlights the selected area for "find in selection"
|
|
||||||
findRangeHighlight: theme.scheme.base.yellow + '30',
|
|
||||||
// set color for invisible characters/whitespaces
|
|
||||||
invisibles: theme.scheme.shade1,
|
|
||||||
// highlights text which matches the selected text
|
|
||||||
selection: theme.scheme.shade1,
|
|
||||||
// highlights text inside selected area
|
|
||||||
selectionHighlight: theme.scheme.base.yellow + '50',
|
|
||||||
// when the cursor is on a symbol, highlights places that symbol is read
|
|
||||||
wordHighlight: theme.scheme.base.pink + '30',
|
|
||||||
// when the cursor is on a symbol, highlights places that symbol is written
|
|
||||||
wordHighlightStrong: theme.scheme.base.green + '30'
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
* Override all syntax tokens
|
|
||||||
*/
|
|
||||||
// customTokens: [
|
|
||||||
// {
|
|
||||||
// name: 'String',
|
|
||||||
// scope: [ 'string' ],
|
|
||||||
// settings: {
|
|
||||||
// fontStyle: 'normal',
|
|
||||||
// foreground: '#',
|
|
||||||
// background: '#'
|
|
||||||
// }
|
|
||||||
// }
|
|
||||||
// ]
|
|
||||||
};
|
|
||||||
/**
|
|
||||||
* Call the theme generator for each
|
|
||||||
* theme found in `themes`
|
|
||||||
*/
|
|
||||||
vscode_theme_generator_1.generateTheme(theme.name, colorSet, path.join(__dirname, "../../out/themes/" + theme.name + ".json"));
|
|
||||||
});
|
|
|
@ -1,51 +0,0 @@
|
||||||
"use strict";
|
|
||||||
exports.__esModule = true;
|
|
||||||
exports["default"] = {
|
|
||||||
id: 'material.theme.darker.hc',
|
|
||||||
name: 'Material-Theme-Darker-High-Contrast',
|
|
||||||
type: 'dark',
|
|
||||||
scheme: {
|
|
||||||
background: '#212121',
|
|
||||||
backgroundAlt: '#1a1a1a',
|
|
||||||
contrastBorder: '#000000',
|
|
||||||
sidebarForeground: '#848484',
|
|
||||||
scrollbars: '#EEFFFF20',
|
|
||||||
comments: '#4A4A4A',
|
|
||||||
caret: '#FFCC00',
|
|
||||||
findHighlight: '#FFCC00',
|
|
||||||
foreground: '#EEFFFF',
|
|
||||||
focusBorder: '#FFFFFF',
|
|
||||||
guides: '#424242',
|
|
||||||
lineNumbers: '#424242',
|
|
||||||
invisibles: '#65737E',
|
|
||||||
lineHighlight: '#000000',
|
|
||||||
selection: '#61616150',
|
|
||||||
shadow: '#00000030',
|
|
||||||
inputBackground: '#2B2B2B',
|
|
||||||
inputForeground: '#EEFFFF',
|
|
||||||
inputBorder: '#FFFFFF10',
|
|
||||||
scrollbarsHover: '#EEFFFF10',
|
|
||||||
statusbarForeground: '#616161',
|
|
||||||
listHoverForeground: '#FFFFFF',
|
|
||||||
tabActiveForeground: '#FFFFFF',
|
|
||||||
inactiveSelectionBackground: '#00000030',
|
|
||||||
findMatchBackground: '#000000',
|
|
||||||
findMatchHighlightBackground: '#00000050',
|
|
||||||
findMatchHighlightBorder: '#ffffff50',
|
|
||||||
base: {
|
|
||||||
white: '#ffffff',
|
|
||||||
black: '#000000',
|
|
||||||
red: '#FF5370',
|
|
||||||
orange: '#F78C6C',
|
|
||||||
yellow: '#FFCB6B',
|
|
||||||
green: '#C3E88D',
|
|
||||||
cyan: '#89DDFF',
|
|
||||||
blue: '#82AAFF',
|
|
||||||
paleblue: '#B2CCD6',
|
|
||||||
purple: '#C792EA',
|
|
||||||
brown: '#C17E70',
|
|
||||||
pink: '#f07178',
|
|
||||||
violet: '#bb80b3'
|
|
||||||
}
|
|
||||||
}
|
|
||||||
};
|
|
|
@ -1,53 +0,0 @@
|
||||||
"use strict";
|
|
||||||
exports.__esModule = true;
|
|
||||||
exports["default"] = {
|
|
||||||
id: 'material.theme.darker',
|
|
||||||
name: 'Material-Theme-Darker',
|
|
||||||
type: 'dark',
|
|
||||||
scheme: {
|
|
||||||
background: '#212121',
|
|
||||||
backgroundAlt: '#212121',
|
|
||||||
contrastBorder: '#212121',
|
|
||||||
comments: '#545454',
|
|
||||||
caret: '#FFCC00',
|
|
||||||
findHighlight: '#FFCC00',
|
|
||||||
foreground: '#EEFFFF',
|
|
||||||
focusBorder: '#FFFFFF',
|
|
||||||
guides: '#424242',
|
|
||||||
lineNumbers: '#424242',
|
|
||||||
invisibles: '#65737E',
|
|
||||||
lineHighlight: '#000000',
|
|
||||||
selection: '#61616150',
|
|
||||||
shadow: '#00000030',
|
|
||||||
inputBackground: '#2B2B2B',
|
|
||||||
inputForeground: '#EEFFFF',
|
|
||||||
inputBorder: '#FFFFFF10',
|
|
||||||
scrollbars: '#EEFFFF20',
|
|
||||||
scrollbarsHover: '#EEFFFF10',
|
|
||||||
statusbarForeground: '#616161',
|
|
||||||
sidebarBackground: '#212121',
|
|
||||||
sidebarForeground: '#616161',
|
|
||||||
listHoverForeground: '#FFFFFF',
|
|
||||||
listHoverBackground: '#212121',
|
|
||||||
tabActiveForeground: '#FFFFFF',
|
|
||||||
inactiveSelectionBackground: '#00000030',
|
|
||||||
findMatchBackground: '#000000',
|
|
||||||
findMatchHighlightBackground: '#00000050',
|
|
||||||
findMatchHighlightBorder: '#ffffff30',
|
|
||||||
base: {
|
|
||||||
white: '#ffffff',
|
|
||||||
black: '#000000',
|
|
||||||
red: '#FF5370',
|
|
||||||
orange: '#F78C6C',
|
|
||||||
yellow: '#FFCB6B',
|
|
||||||
green: '#C3E88D',
|
|
||||||
cyan: '#89DDFF',
|
|
||||||
blue: '#82AAFF',
|
|
||||||
paleblue: '#B2CCD6',
|
|
||||||
purple: '#C792EA',
|
|
||||||
brown: '#C17E70',
|
|
||||||
pink: '#f07178',
|
|
||||||
violet: '#bb80b3'
|
|
||||||
}
|
|
||||||
}
|
|
||||||
};
|
|
|
@ -1,53 +0,0 @@
|
||||||
"use strict";
|
|
||||||
exports.__esModule = true;
|
|
||||||
exports["default"] = {
|
|
||||||
id: 'material.theme.default.hc',
|
|
||||||
name: 'Material-Theme-Default-High-Contrast',
|
|
||||||
type: 'dark',
|
|
||||||
scheme: {
|
|
||||||
background: '#263238',
|
|
||||||
backgroundAlt: '#192227',
|
|
||||||
contrastBorder: '#000000',
|
|
||||||
scrollbars: '#EEFFFF20',
|
|
||||||
sidebarForeground: '#5f7a87',
|
|
||||||
comments: '#546E7A',
|
|
||||||
caret: '#FFCC00',
|
|
||||||
findHighlight: '#FFCC00',
|
|
||||||
foreground: '#EEFFFF',
|
|
||||||
focusBorder: '#FFFFFF',
|
|
||||||
guides: '#37474F',
|
|
||||||
lineNumbers: '#37474F',
|
|
||||||
invisibles: '#65737E',
|
|
||||||
lineHighlight: '#000000',
|
|
||||||
selection: '#80CBC420',
|
|
||||||
shadow: '#00000030',
|
|
||||||
inputBackground: '#303C41',
|
|
||||||
inputForeground: '#EEFFFF',
|
|
||||||
inputBorder: '#FFFFFF10',
|
|
||||||
scrollbarsHover: '#EEFFFF10',
|
|
||||||
statusbarForeground: '#546E7A',
|
|
||||||
sidebarBackground: '#263238',
|
|
||||||
listHoverForeground: '#FFFFFF',
|
|
||||||
listHoverBackground: '#263238',
|
|
||||||
tabActiveForeground: '#FFFFFF',
|
|
||||||
inactiveSelectionBackground: '#00000030',
|
|
||||||
findMatchBackground: '#000000',
|
|
||||||
findMatchHighlightBackground: '#00000050',
|
|
||||||
findMatchHighlightBorder: '#ffffff50',
|
|
||||||
base: {
|
|
||||||
white: '#ffffff',
|
|
||||||
black: '#000000',
|
|
||||||
red: '#FF5370',
|
|
||||||
orange: '#F78C6C',
|
|
||||||
yellow: '#FFCB6B',
|
|
||||||
green: '#C3E88D',
|
|
||||||
cyan: '#89DDFF',
|
|
||||||
blue: '#82AAFF',
|
|
||||||
paleblue: '#B2CCD6',
|
|
||||||
purple: '#C792EA',
|
|
||||||
brown: '#C17E70',
|
|
||||||
pink: '#f07178',
|
|
||||||
violet: '#bb80b3'
|
|
||||||
}
|
|
||||||
}
|
|
||||||
};
|
|
|
@ -1,53 +0,0 @@
|
||||||
"use strict";
|
|
||||||
exports.__esModule = true;
|
|
||||||
exports["default"] = {
|
|
||||||
id: 'material.theme.default',
|
|
||||||
name: 'Material-Theme-Default',
|
|
||||||
type: 'dark',
|
|
||||||
scheme: {
|
|
||||||
background: '#263238',
|
|
||||||
backgroundAlt: '#263238',
|
|
||||||
contrastBorder: '#263238',
|
|
||||||
comments: '#546E7A',
|
|
||||||
caret: '#FFCC00',
|
|
||||||
findHighlight: '#FFCC00',
|
|
||||||
foreground: '#EEFFFF',
|
|
||||||
focusBorder: '#FFFFFF',
|
|
||||||
guides: '#37474F',
|
|
||||||
lineNumbers: '#37474F',
|
|
||||||
invisibles: '#65737E',
|
|
||||||
lineHighlight: '#000000',
|
|
||||||
selection: '#80CBC420',
|
|
||||||
shadow: '#00000030',
|
|
||||||
inputBackground: '#303C41',
|
|
||||||
inputForeground: '#EEFFFF',
|
|
||||||
inputBorder: '#FFFFFF10',
|
|
||||||
scrollbars: '#EEFFFF20',
|
|
||||||
scrollbarsHover: '#EEFFFF10',
|
|
||||||
statusbarForeground: '#546E7A',
|
|
||||||
sidebarBackground: '#263238',
|
|
||||||
sidebarForeground: '#607a86',
|
|
||||||
listHoverForeground: '#FFFFFF',
|
|
||||||
listHoverBackground: '#263238',
|
|
||||||
tabActiveForeground: '#FFFFFF',
|
|
||||||
inactiveSelectionBackground: '#00000030',
|
|
||||||
findMatchBackground: '#000000',
|
|
||||||
findMatchHighlightBackground: '#00000050',
|
|
||||||
findMatchHighlightBorder: '#ffffff30',
|
|
||||||
base: {
|
|
||||||
white: '#ffffff',
|
|
||||||
black: '#000000',
|
|
||||||
red: '#FF5370',
|
|
||||||
orange: '#F78C6C',
|
|
||||||
yellow: '#FFCB6B',
|
|
||||||
green: '#C3E88D',
|
|
||||||
cyan: '#89DDFF',
|
|
||||||
blue: '#82AAFF',
|
|
||||||
paleblue: '#B2CCD6',
|
|
||||||
purple: '#C792EA',
|
|
||||||
brown: '#C17E70',
|
|
||||||
pink: '#f07178',
|
|
||||||
violet: '#bb80b3'
|
|
||||||
}
|
|
||||||
}
|
|
||||||
};
|
|
|
@ -1,53 +0,0 @@
|
||||||
"use strict";
|
|
||||||
exports.__esModule = true;
|
|
||||||
exports["default"] = {
|
|
||||||
id: 'material.theme.lighter.hc',
|
|
||||||
name: 'Material-Theme-Lighter-High-Contrast',
|
|
||||||
type: 'light',
|
|
||||||
scheme: {
|
|
||||||
background: '#FFFFFF',
|
|
||||||
backgroundAlt: '#FAFAFA',
|
|
||||||
contrastBorder: '#CBCBCB',
|
|
||||||
scrollbars: '#90A4AE20',
|
|
||||||
sidebarForeground: '#627883',
|
|
||||||
comments: '#90A4AE',
|
|
||||||
caret: '#272727',
|
|
||||||
findHighlight: '#FFCC00',
|
|
||||||
foreground: '#90A4AE',
|
|
||||||
focusBorder: '#FFFFFF',
|
|
||||||
guides: '#B0BEC5',
|
|
||||||
lineNumbers: '#CFD8DC',
|
|
||||||
invisibles: '#E7EAEC',
|
|
||||||
lineHighlight: '#CCD7DA',
|
|
||||||
selection: '#80CBC440',
|
|
||||||
shadow: '#00000020',
|
|
||||||
inputBackground: '#EEEEEE',
|
|
||||||
inputForeground: '#90A4AE',
|
|
||||||
inputBorder: '#00000010',
|
|
||||||
scrollbarsHover: '#90A4AE10',
|
|
||||||
statusbarForeground: '#7E939E',
|
|
||||||
sidebarBackground: '#FAFAFA',
|
|
||||||
listHoverForeground: '#B1C7D3',
|
|
||||||
listHoverBackground: '#FAFAFA',
|
|
||||||
tabActiveForeground: '#000000',
|
|
||||||
inactiveSelectionBackground: '#CCD7DA50',
|
|
||||||
findMatchBackground: '#00000040',
|
|
||||||
findMatchHighlightBackground: '#00000010',
|
|
||||||
findMatchHighlightBorder: '#00000060',
|
|
||||||
base: {
|
|
||||||
white: '#FFFFFF',
|
|
||||||
black: '#000000',
|
|
||||||
red: '#E53935',
|
|
||||||
orange: '#F76D47',
|
|
||||||
yellow: '#FFB62C',
|
|
||||||
green: '#91B859',
|
|
||||||
cyan: '#39ADB5',
|
|
||||||
blue: '#6182B8',
|
|
||||||
paleblue: '#8796B0',
|
|
||||||
purple: '#7C4DFF',
|
|
||||||
brown: '#C17E70',
|
|
||||||
pink: '#FF5370',
|
|
||||||
violet: '#945EB8'
|
|
||||||
}
|
|
||||||
}
|
|
||||||
};
|
|
|
@ -1,53 +0,0 @@
|
||||||
"use strict";
|
|
||||||
exports.__esModule = true;
|
|
||||||
exports["default"] = {
|
|
||||||
id: 'material.theme.lighter',
|
|
||||||
name: 'Material-Theme-Lighter',
|
|
||||||
type: 'light',
|
|
||||||
scheme: {
|
|
||||||
background: '#FAFAFA',
|
|
||||||
backgroundAlt: '#FAFAFA',
|
|
||||||
contrastBorder: '#FAFAFA',
|
|
||||||
comments: '#90A4AE',
|
|
||||||
caret: '#272727',
|
|
||||||
findHighlight: '#FFCC00',
|
|
||||||
foreground: '#90A4AE',
|
|
||||||
focusBorder: '#FFFFFF',
|
|
||||||
guides: '#B0BEC5',
|
|
||||||
lineNumbers: '#CFD8DC',
|
|
||||||
invisibles: '#E7EAEC',
|
|
||||||
lineHighlight: '#CCD7DA',
|
|
||||||
selection: '#80CBC440',
|
|
||||||
shadow: '#00000020',
|
|
||||||
inputBackground: '#EEEEEE',
|
|
||||||
inputForeground: '#90A4AE',
|
|
||||||
inputBorder: '#00000010',
|
|
||||||
scrollbars: '#90A4AE20',
|
|
||||||
scrollbarsHover: '#90A4AE10',
|
|
||||||
statusbarForeground: '#7E939E',
|
|
||||||
sidebarBackground: '#FAFAFA',
|
|
||||||
sidebarForeground: '#7E939E',
|
|
||||||
listHoverForeground: '#B1C7D3',
|
|
||||||
listHoverBackground: '#FAFAFA',
|
|
||||||
tabActiveForeground: '#000000',
|
|
||||||
inactiveSelectionBackground: '#CCD7DA50',
|
|
||||||
findMatchBackground: '#00000020',
|
|
||||||
findMatchHighlightBackground: '#00000010',
|
|
||||||
findMatchHighlightBorder: '#00000030',
|
|
||||||
base: {
|
|
||||||
white: '#FFFFFF',
|
|
||||||
black: '#000000',
|
|
||||||
red: '#E53935',
|
|
||||||
orange: '#F76D47',
|
|
||||||
yellow: '#FFB62C',
|
|
||||||
green: '#91B859',
|
|
||||||
cyan: '#39ADB5',
|
|
||||||
blue: '#6182B8',
|
|
||||||
paleblue: '#8796B0',
|
|
||||||
purple: '#7C4DFF',
|
|
||||||
brown: '#C17E70',
|
|
||||||
pink: '#FF5370',
|
|
||||||
violet: '#945EB8'
|
|
||||||
}
|
|
||||||
}
|
|
||||||
};
|
|
|
@ -1,53 +0,0 @@
|
||||||
"use strict";
|
|
||||||
exports.__esModule = true;
|
|
||||||
exports["default"] = {
|
|
||||||
id: 'material.theme.ocean.hc',
|
|
||||||
name: 'Material-Theme-Ocean-High-Contrast',
|
|
||||||
type: 'dark',
|
|
||||||
scheme: {
|
|
||||||
background: '#0F111A',
|
|
||||||
backgroundAlt: '#090B10',
|
|
||||||
contrastBorder: '#000000',
|
|
||||||
comments: '#464B5D',
|
|
||||||
caret: '#FFCC00',
|
|
||||||
findHighlight: '#FFCC00',
|
|
||||||
foreground: '#8F93A2',
|
|
||||||
focusBorder: '#FFFFFF',
|
|
||||||
guides: '#3B3F51',
|
|
||||||
lineNumbers: '#3B3F5180',
|
|
||||||
invisibles: '#80869E50',
|
|
||||||
lineHighlight: '#000000',
|
|
||||||
selection: '#717CB450',
|
|
||||||
shadow: '#00000030',
|
|
||||||
inputBackground: '#1A1C25',
|
|
||||||
inputForeground: '#EEFFFF',
|
|
||||||
inputBorder: '#FFFFFF10',
|
|
||||||
scrollbars: '#8F93A220',
|
|
||||||
scrollbarsHover: '#8F93A210',
|
|
||||||
statusbarForeground: '#4B526D',
|
|
||||||
sidebarBackground: '#292D3E',
|
|
||||||
sidebarForeground: '#4B526D',
|
|
||||||
listHoverForeground: '#FFFFFF',
|
|
||||||
listHoverBackground: '#292D3E',
|
|
||||||
tabActiveForeground: '#FFFFFF',
|
|
||||||
inactiveSelectionBackground: '#00000030',
|
|
||||||
findMatchBackground: '#000000',
|
|
||||||
findMatchHighlightBackground: '#00000050',
|
|
||||||
findMatchHighlightBorder: '#ffffff50',
|
|
||||||
base: {
|
|
||||||
white: '#ffffff',
|
|
||||||
black: '#000000',
|
|
||||||
red: '#FF5370',
|
|
||||||
orange: '#F78C6C',
|
|
||||||
yellow: '#FFCB6B',
|
|
||||||
green: '#C3E88D',
|
|
||||||
cyan: '#89DDFF',
|
|
||||||
blue: '#82AAFF',
|
|
||||||
paleblue: '#B2CCD6',
|
|
||||||
purple: '#C792EA',
|
|
||||||
brown: '#C17E70',
|
|
||||||
pink: '#f07178',
|
|
||||||
violet: '#bb80b3'
|
|
||||||
}
|
|
||||||
}
|
|
||||||
};
|
|
|
@ -1,53 +0,0 @@
|
||||||
"use strict";
|
|
||||||
exports.__esModule = true;
|
|
||||||
exports["default"] = {
|
|
||||||
id: 'material.theme.ocean',
|
|
||||||
name: 'Material-Theme-Ocean',
|
|
||||||
type: 'dark',
|
|
||||||
scheme: {
|
|
||||||
background: '#0F111A',
|
|
||||||
backgroundAlt: '#0F111A',
|
|
||||||
contrastBorder: '#0F111A',
|
|
||||||
comments: '#464B5D',
|
|
||||||
caret: '#FFCC00',
|
|
||||||
findHighlight: '#FFCC00',
|
|
||||||
foreground: '#8F93A2',
|
|
||||||
focusBorder: '#FFFFFF',
|
|
||||||
guides: '#3B3F51',
|
|
||||||
lineNumbers: '#3B3F5180',
|
|
||||||
invisibles: '#80869E50',
|
|
||||||
lineHighlight: '#000000',
|
|
||||||
selection: '#717CB450',
|
|
||||||
shadow: '#00000030',
|
|
||||||
inputBackground: '#1A1C25',
|
|
||||||
inputForeground: '#EEFFFF',
|
|
||||||
inputBorder: '#FFFFFF10',
|
|
||||||
scrollbars: '#8F93A220',
|
|
||||||
scrollbarsHover: '#8F93A210',
|
|
||||||
statusbarForeground: '#4B526D',
|
|
||||||
sidebarBackground: '#292D3E',
|
|
||||||
sidebarForeground: '#525975',
|
|
||||||
listHoverForeground: '#FFFFFF',
|
|
||||||
listHoverBackground: '#292D3E',
|
|
||||||
tabActiveForeground: '#FFFFFF',
|
|
||||||
inactiveSelectionBackground: '#00000030',
|
|
||||||
findMatchBackground: '#000000',
|
|
||||||
findMatchHighlightBackground: '#00000050',
|
|
||||||
findMatchHighlightBorder: '#ffffff30',
|
|
||||||
base: {
|
|
||||||
white: '#ffffff',
|
|
||||||
black: '#000000',
|
|
||||||
red: '#FF5370',
|
|
||||||
orange: '#F78C6C',
|
|
||||||
yellow: '#FFCB6B',
|
|
||||||
green: '#C3E88D',
|
|
||||||
cyan: '#89DDFF',
|
|
||||||
blue: '#82AAFF',
|
|
||||||
paleblue: '#B2CCD6',
|
|
||||||
purple: '#C792EA',
|
|
||||||
brown: '#C17E70',
|
|
||||||
pink: '#f07178',
|
|
||||||
violet: '#bb80b3'
|
|
||||||
}
|
|
||||||
}
|
|
||||||
};
|
|
|
@ -1,53 +0,0 @@
|
||||||
"use strict";
|
|
||||||
exports.__esModule = true;
|
|
||||||
exports["default"] = {
|
|
||||||
id: 'material.theme.palenight.hc',
|
|
||||||
name: 'Material-Theme-Palenight-High-Contrast',
|
|
||||||
type: 'dark',
|
|
||||||
scheme: {
|
|
||||||
background: '#292D3E',
|
|
||||||
backgroundAlt: '#1B1E2B',
|
|
||||||
contrastBorder: '#000000',
|
|
||||||
scrollbars: '#A6ACCD20',
|
|
||||||
sidebarForeground: '#757CA1',
|
|
||||||
comments: '#676E95',
|
|
||||||
caret: '#FFCC00',
|
|
||||||
findHighlight: '#FFCC00',
|
|
||||||
foreground: '#A6ACCD',
|
|
||||||
focusBorder: '#FFFFFF',
|
|
||||||
guides: '#4E5579',
|
|
||||||
lineNumbers: '#3A3F58',
|
|
||||||
invisibles: '#4E5579',
|
|
||||||
lineHighlight: '#000000',
|
|
||||||
selection: '#717CB450',
|
|
||||||
shadow: '#00000030',
|
|
||||||
inputBackground: '#333747',
|
|
||||||
inputForeground: '#EEFFFF',
|
|
||||||
inputBorder: '#FFFFFF10',
|
|
||||||
scrollbarsHover: '#A6ACCD10',
|
|
||||||
statusbarForeground: '#676E95',
|
|
||||||
sidebarBackground: '#292D3E',
|
|
||||||
listHoverForeground: '#FFFFFF',
|
|
||||||
listHoverBackground: '#292D3E',
|
|
||||||
tabActiveForeground: '#FFFFFF',
|
|
||||||
inactiveSelectionBackground: '#00000030',
|
|
||||||
findMatchBackground: '#000000',
|
|
||||||
findMatchHighlightBackground: '#00000050',
|
|
||||||
findMatchHighlightBorder: '#ffffff50',
|
|
||||||
base: {
|
|
||||||
white: '#ffffff',
|
|
||||||
black: '#000000',
|
|
||||||
red: '#FF5370',
|
|
||||||
orange: '#F78C6C',
|
|
||||||
yellow: '#FFCB6B',
|
|
||||||
green: '#C3E88D',
|
|
||||||
cyan: '#89DDFF',
|
|
||||||
blue: '#82AAFF',
|
|
||||||
paleblue: '#B2CCD6',
|
|
||||||
purple: '#C792EA',
|
|
||||||
brown: '#C17E70',
|
|
||||||
pink: '#f07178',
|
|
||||||
violet: '#bb80b3'
|
|
||||||
}
|
|
||||||
}
|
|
||||||
};
|
|
|
@ -1,53 +0,0 @@
|
||||||
"use strict";
|
|
||||||
exports.__esModule = true;
|
|
||||||
exports["default"] = {
|
|
||||||
id: 'material.theme.palenight',
|
|
||||||
name: 'Material-Theme-Palenight',
|
|
||||||
type: 'dark',
|
|
||||||
scheme: {
|
|
||||||
background: '#292D3E',
|
|
||||||
backgroundAlt: '#292D3E',
|
|
||||||
contrastBorder: '#292D3E',
|
|
||||||
comments: '#676E95',
|
|
||||||
caret: '#FFCC00',
|
|
||||||
findHighlight: '#FFCC00',
|
|
||||||
foreground: '#A6ACCD',
|
|
||||||
focusBorder: '#FFFFFF',
|
|
||||||
guides: '#4E5579',
|
|
||||||
lineNumbers: '#3A3F58',
|
|
||||||
invisibles: '#4E5579',
|
|
||||||
lineHighlight: '#000000',
|
|
||||||
selection: '#717CB450',
|
|
||||||
shadow: '#00000030',
|
|
||||||
inputBackground: '#333747',
|
|
||||||
inputForeground: '#EEFFFF',
|
|
||||||
inputBorder: '#FFFFFF10',
|
|
||||||
scrollbars: '#A6ACCD20',
|
|
||||||
scrollbarsHover: '#A6ACCD10',
|
|
||||||
statusbarForeground: '#676E95',
|
|
||||||
sidebarBackground: '#292D3E',
|
|
||||||
sidebarForeground: '#676E95',
|
|
||||||
listHoverForeground: '#FFFFFF',
|
|
||||||
listHoverBackground: '#292D3E',
|
|
||||||
tabActiveForeground: '#FFFFFF',
|
|
||||||
inactiveSelectionBackground: '#00000030',
|
|
||||||
findMatchBackground: '#000000',
|
|
||||||
findMatchHighlightBackground: '#00000050',
|
|
||||||
findMatchHighlightBorder: '#ffffff30',
|
|
||||||
base: {
|
|
||||||
white: '#ffffff',
|
|
||||||
black: '#000000',
|
|
||||||
red: '#FF5370',
|
|
||||||
orange: '#F78C6C',
|
|
||||||
yellow: '#FFCB6B',
|
|
||||||
green: '#C3E88D',
|
|
||||||
cyan: '#89DDFF',
|
|
||||||
blue: '#82AAFF',
|
|
||||||
paleblue: '#B2CCD6',
|
|
||||||
purple: '#C792EA',
|
|
||||||
brown: '#C17E70',
|
|
||||||
pink: '#f07178',
|
|
||||||
violet: '#bb80b3'
|
|
||||||
}
|
|
||||||
}
|
|
||||||
};
|
|
Loading…
Reference in a new issue