mirror of
https://github.com/Keyitdev/dotfiles.git
synced 2026-09-24 01:52:09 +00:00
New version: created v3
This commit is contained in:
@@ -0,0 +1,6 @@
|
||||
{
|
||||
"bold": false,
|
||||
"editorTheme": "oneDarkPro",
|
||||
"italic": true,
|
||||
"vivid": false
|
||||
}
|
||||
@@ -0,0 +1,91 @@
|
||||
"use strict";
|
||||
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
||||
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
||||
return new (P || (P = Promise))(function (resolve, reject) {
|
||||
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
|
||||
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
|
||||
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
|
||||
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
||||
});
|
||||
};
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.activate = void 0;
|
||||
const path_1 = require("path");
|
||||
const util_1 = require("util");
|
||||
const vscode_1 = require("vscode");
|
||||
const Changelog_1 = require("./webviews/Changelog");
|
||||
const utils_1 = require("./utils");
|
||||
/**
|
||||
* This method is called when the extension is activated.
|
||||
* It initializes the core functionality of the extension.
|
||||
*/
|
||||
function activate() {
|
||||
return __awaiter(this, void 0, void 0, function* () {
|
||||
const flagPath = vscode_1.Uri.file((0, path_1.join)(__dirname, '../temp', 'flag.txt'));
|
||||
let flag;
|
||||
try {
|
||||
// await workspace.fs.writeFile(flagPath, new TextEncoder().encode('true'))
|
||||
try {
|
||||
if (yield vscode_1.workspace.fs.stat(flagPath)) {
|
||||
flag = true;
|
||||
}
|
||||
}
|
||||
catch (error) { }
|
||||
if (!flag) {
|
||||
yield vscode_1.workspace.fs.writeFile(flagPath, new util_1.TextEncoder().encode('true'));
|
||||
const configArr = [
|
||||
{ defaultVal: false, type: 'bold' },
|
||||
{ defaultVal: true, type: 'italic' },
|
||||
{ defaultVal: false, type: 'vivid' },
|
||||
];
|
||||
const configuration = vscode_1.workspace.getConfiguration('oneDarkPro');
|
||||
let isDefaultConfig = configArr.every((item) => {
|
||||
return configuration.get(item.type) === item.defaultVal;
|
||||
});
|
||||
let colorConfig = configuration.get(`color`);
|
||||
let colorFlagStr = '';
|
||||
for (let key in colorConfig) {
|
||||
colorFlagStr += colorConfig[key];
|
||||
}
|
||||
if (colorFlagStr != '') {
|
||||
isDefaultConfig = false;
|
||||
}
|
||||
if (!isDefaultConfig) {
|
||||
(0, utils_1.updateTheme)();
|
||||
}
|
||||
if (!configuration.get('markdownStyle')) {
|
||||
(0, utils_1.updateCSS)();
|
||||
}
|
||||
}
|
||||
}
|
||||
catch (err) {
|
||||
console.log(err);
|
||||
// do nothing
|
||||
}
|
||||
// Observe changes in the config
|
||||
vscode_1.workspace.onDidChangeConfiguration((event) => {
|
||||
if (event.affectsConfiguration('oneDarkPro')) {
|
||||
(0, utils_1.updateTheme)();
|
||||
(0, utils_1.updateCSS)();
|
||||
}
|
||||
});
|
||||
vscode_1.commands.registerCommand('oneDarkPro.showChangelog', () => {
|
||||
new Changelog_1.ChangelogWebview().show();
|
||||
});
|
||||
const settingArr = ['Vivid', 'Italic', 'Bold'];
|
||||
settingArr.forEach((settingItem) => {
|
||||
vscode_1.commands.registerCommand(`oneDarkPro.set${settingItem}`, () => {
|
||||
vscode_1.workspace
|
||||
.getConfiguration()
|
||||
.update(`oneDarkPro.${settingItem.toLowerCase()}`, true, vscode_1.ConfigurationTarget.Global);
|
||||
});
|
||||
vscode_1.commands.registerCommand(`oneDarkPro.cancel${settingItem}`, () => {
|
||||
vscode_1.workspace
|
||||
.getConfiguration()
|
||||
.update(`oneDarkPro.${settingItem.toLowerCase()}`, false, vscode_1.ConfigurationTarget.Global);
|
||||
});
|
||||
});
|
||||
});
|
||||
}
|
||||
exports.activate = activate;
|
||||
//# sourceMappingURL=extension.js.map
|
||||
@@ -0,0 +1,27 @@
|
||||
"use strict";
|
||||
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
||||
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
||||
return new (P || (P = Promise))(function (resolve, reject) {
|
||||
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
|
||||
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
|
||||
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
|
||||
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
||||
});
|
||||
};
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.changelogMessage = void 0;
|
||||
const vscode_1 = require("vscode");
|
||||
const MESSAGES = {
|
||||
CHANGELOG: {
|
||||
message: 'One Dark Pro Theme was updated. Check the changelog for more details.',
|
||||
options: { cancel: 'Maybe later', ok: 'Show me' }
|
||||
},
|
||||
INSTALLATION: {
|
||||
message: 'Thank you for using One Dark Pro!'
|
||||
}
|
||||
};
|
||||
const changelogMessage = () => __awaiter(void 0, void 0, void 0, function* () {
|
||||
return (yield vscode_1.window.showInformationMessage(MESSAGES.CHANGELOG.message, MESSAGES.CHANGELOG.options.ok, MESSAGES.CHANGELOG.options.cancel)) === MESSAGES.CHANGELOG.options.ok;
|
||||
});
|
||||
exports.changelogMessage = changelogMessage;
|
||||
//# sourceMappingURL=message.js.map
|
||||
@@ -0,0 +1,3 @@
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
//# sourceMappingURL=TokenColor.js.map
|
||||
@@ -0,0 +1,3 @@
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
//# sourceMappingURL=colors.js.map
|
||||
@@ -0,0 +1,3 @@
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
//# sourceMappingURL=configuration.js.map
|
||||
@@ -0,0 +1,20 @@
|
||||
"use strict";
|
||||
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
var desc = Object.getOwnPropertyDescriptor(m, k);
|
||||
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
||||
desc = { enumerable: true, get: function() { return m[k]; } };
|
||||
}
|
||||
Object.defineProperty(o, k2, desc);
|
||||
}) : (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
o[k2] = m[k];
|
||||
}));
|
||||
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
||||
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
||||
};
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
__exportStar(require("./colors"), exports);
|
||||
__exportStar(require("./configuration"), exports);
|
||||
__exportStar(require("./TokenColor"), exports);
|
||||
//# sourceMappingURL=index.js.map
|
||||
@@ -0,0 +1,106 @@
|
||||
"use strict";
|
||||
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
||||
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
||||
return new (P || (P = Promise))(function (resolve, reject) {
|
||||
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
|
||||
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
|
||||
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
|
||||
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
||||
});
|
||||
};
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.Theme = void 0;
|
||||
const themeData_1 = require("./themeData");
|
||||
function createEditorTokens(config) {
|
||||
return __awaiter(this, void 0, void 0, function* () {
|
||||
return config.editorTheme in themeData_1.default.editorThemes
|
||||
? (yield themeData_1.default.editorThemes[config.editorTheme]()).default
|
||||
: (yield themeData_1.default.editorThemes['One Dark Pro']()).default;
|
||||
});
|
||||
}
|
||||
const uniqBy = (arr, fn, set = new Set()) => arr.filter((el) => ((v) => !set.has(v) && set.add(v))(typeof fn === 'function' ? fn(el) : el[fn]));
|
||||
function mergeTheme(baseArray, overrides) {
|
||||
let mergeArr = [...baseArray, ...overrides];
|
||||
let newArr = uniqBy(mergeArr, 'scope');
|
||||
overrides.forEach((item) => {
|
||||
newArr.forEach((cell) => {
|
||||
if (cell.scope === item.scope) {
|
||||
cell.settings = Object.assign(Object.assign({}, cell.settings), item.settings);
|
||||
}
|
||||
});
|
||||
});
|
||||
return JSON.parse(JSON.stringify(newArr));
|
||||
}
|
||||
function configFactory(configuration) {
|
||||
let result = JSON.parse(JSON.stringify(themeData_1.default.tokenColors.default));
|
||||
if (configuration.bold) {
|
||||
result = mergeTheme(result, themeData_1.default.tokenColors.bold);
|
||||
}
|
||||
if (configuration.italic) {
|
||||
result = mergeTheme(result, themeData_1.default.tokenColors.italic);
|
||||
}
|
||||
// Fill in color placeholders with concrete color values
|
||||
let colorObj = configuration.vivid
|
||||
? themeData_1.default.textColors.vivid
|
||||
: themeData_1.default.textColors.classic;
|
||||
for (let key in colorObj) {
|
||||
if (configuration[key]) {
|
||||
colorObj[key] = configuration[key];
|
||||
}
|
||||
}
|
||||
result.forEach((token) => {
|
||||
if (token.settings.foreground) {
|
||||
if (token.settings.foreground in colorObj) {
|
||||
token.settings.foreground = colorObj[token.settings.foreground];
|
||||
}
|
||||
}
|
||||
});
|
||||
return {
|
||||
semanticTokenColors: {
|
||||
enumMember: {
|
||||
foreground: colorObj.fountainBlue,
|
||||
},
|
||||
'variable.constant': {
|
||||
foreground: colorObj.whiskey,
|
||||
},
|
||||
'variable.defaultLibrary': {
|
||||
foreground: colorObj.chalky,
|
||||
},
|
||||
'variable:dart': {
|
||||
foreground: colorObj.whiskey,
|
||||
},
|
||||
'property:dart': {
|
||||
foreground: colorObj.whiskey,
|
||||
},
|
||||
'annotation:dart': {
|
||||
foreground: colorObj.whiskey,
|
||||
},
|
||||
'parameter.label:dart': {
|
||||
foreground: colorObj.lightWhite,
|
||||
},
|
||||
macro: {
|
||||
foreground: colorObj.whiskey,
|
||||
},
|
||||
},
|
||||
tokenColors: result,
|
||||
};
|
||||
}
|
||||
class Theme {
|
||||
constructor(configuration) {
|
||||
this.name = 'One Dark Pro';
|
||||
this.type = 'dark';
|
||||
this.semanticHighlighting = true;
|
||||
const themeTokens = configFactory(configuration);
|
||||
this.semanticTokenColors = themeTokens.semanticTokenColors;
|
||||
this.tokenColors = themeTokens.tokenColors;
|
||||
// this.colors = createEditorTokens(configuration)
|
||||
}
|
||||
static init(config) {
|
||||
return __awaiter(this, void 0, void 0, function* () {
|
||||
const result = Object.assign(Object.assign({}, new Theme(config)), { colors: yield createEditorTokens(config) });
|
||||
return result;
|
||||
});
|
||||
}
|
||||
}
|
||||
exports.Theme = Theme;
|
||||
//# sourceMappingURL=Theme.js.map
|
||||
@@ -0,0 +1,183 @@
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.default = {
|
||||
'activityBar.background': '#1f2430',
|
||||
'activityBar.border': '#191e2a',
|
||||
'activityBar.foreground': '#707a8ccc',
|
||||
'activityBarBadge.background': '#ffcc66',
|
||||
'activityBarBadge.foreground': '#1f2430',
|
||||
'badge.background': '#ffcc66',
|
||||
'badge.foreground': '#1f2430',
|
||||
'button.background': '#ffcc66',
|
||||
'button.foreground': '#1f2430',
|
||||
'button.hoverBackground': '#fac761',
|
||||
'debugExceptionWidget.background': '#232834',
|
||||
'debugExceptionWidget.border': '#191e2a',
|
||||
'debugToolBar.background': '#232834',
|
||||
'diffEditor.insertedTextBackground': '#bae67e26',
|
||||
'diffEditor.removedTextBackground': '#f29e7426',
|
||||
'dropdown.background': '#232834',
|
||||
'dropdown.border': '#373e4c',
|
||||
'dropdown.foreground': '#707a8c',
|
||||
'editor.background': '#232834',
|
||||
'editor.findMatchBackground': '#ffcc660d',
|
||||
'editor.findMatchBorder': '#ffcc66',
|
||||
'editor.findMatchHighlightBackground': '#ffcc660d',
|
||||
'editor.findMatchHighlightBorder': '#ffcc6659',
|
||||
'editor.findRangeHighlightBackground': '#262f3e',
|
||||
'editor.findRangeHighlightBorder': '#1f243000',
|
||||
'editor.foreground': '#abb2bf',
|
||||
'editor.inactiveSelectionBackground': '#262f3e',
|
||||
'editor.lineHighlightBackground': '#191e2a',
|
||||
'editor.rangeHighlightBackground': '#191e2a',
|
||||
'editor.selectionBackground': '#2a3546',
|
||||
'editor.selectionHighlightBackground': '#262f3e',
|
||||
'editor.selectionHighlightBorder': '#313e52',
|
||||
'editor.wordHighlightBackground': '#262f3e',
|
||||
'editor.wordHighlightStrongBackground': '#ffcc6633',
|
||||
'editorBracketMatch.background': '#707a8c4d',
|
||||
'editorBracketMatch.border': '#707a8c99',
|
||||
'editorCodeLens.foreground': '#5c6773',
|
||||
'editorCursor.foreground': '#ffcc66',
|
||||
'editorError.foreground': '#ff3333',
|
||||
'editorGroup.background': '#232834',
|
||||
'editorGroup.border': '#191e2a',
|
||||
'editorGroupHeader.noTabsBackground': '#1f2430',
|
||||
'editorGroupHeader.tabsBackground': '#1f2430',
|
||||
'editorGroupHeader.tabsBorder': '#191e2a',
|
||||
'editorGutter.addedBackground': '#a6cc7099',
|
||||
'editorGutter.deletedBackground': '#f2798399',
|
||||
'editorGutter.modifiedBackground': '#77a8d999',
|
||||
'editorHoverWidget.background': '#232834',
|
||||
'editorHoverWidget.border': '#101521',
|
||||
'editorIndentGuide.activeBackground': '#707a8cb3',
|
||||
'editorIndentGuide.background': '#707a8c4d',
|
||||
'editorLineNumber.activeForeground': '#707a8ccc',
|
||||
'editorLineNumber.foreground': '#707a8c66',
|
||||
'editorLink.activeForeground': '#ffcc66',
|
||||
'editorMarkerNavigation.background': '#232834',
|
||||
'editorOverviewRuler.addedForeground': '#a6cc7099',
|
||||
'editorOverviewRuler.border': '#191e2a',
|
||||
'editorOverviewRuler.deletedForeground': '#f2798399',
|
||||
'editorOverviewRuler.errorForeground': '#ff3333',
|
||||
'editorOverviewRuler.modifiedForeground': '#77a8d999',
|
||||
'editorOverviewRuler.warningForeground': '#ffcc66',
|
||||
'editorRuler.foreground': '#707a8c4d',
|
||||
'editorSuggestWidget.background': '#232834',
|
||||
'editorSuggestWidget.border': '#101521',
|
||||
'editorSuggestWidget.highlightForeground': '#ffcc66',
|
||||
'editorSuggestWidget.selectedBackground': '#191e2a',
|
||||
'editorWarning.foreground': '#ffcc66',
|
||||
'editorWhitespace.foreground': '#707a8c66',
|
||||
'editorWidget.background': '#232834',
|
||||
'extensionButton.prominentBackground': '#ffcc66',
|
||||
'extensionButton.prominentForeground': '#1f2430',
|
||||
'extensionButton.prominentHoverBackground': '#fac761',
|
||||
focusBorder: '#505867',
|
||||
foreground: '#707a8c',
|
||||
'gitDecoration.conflictingResourceForeground': '#ff0000',
|
||||
'gitDecoration.deletedResourceForeground': '#f27983b3',
|
||||
'gitDecoration.ignoredResourceForeground': '#484f5e',
|
||||
'gitDecoration.modifiedResourceForeground': '#77a8d9b3',
|
||||
'gitDecoration.submoduleResourceForeground': '#d4bfffb3',
|
||||
'gitDecoration.untrackedResourceForeground': '#a6cc70b3',
|
||||
'input.background': '#232834',
|
||||
'input.border': '#373e4c',
|
||||
'input.foreground': '#cbccc6',
|
||||
'input.placeholderForeground': '#586070',
|
||||
'inputOption.activeBorder': '#ffcc66',
|
||||
'inputValidation.errorBackground': '#1f2430',
|
||||
'inputValidation.errorBorder': '#ff3333',
|
||||
'inputValidation.infoBackground': '#1f2430',
|
||||
'inputValidation.infoBorder': '#5ccfe6',
|
||||
'inputValidation.warningBackground': '#1f2430',
|
||||
'inputValidation.warningBorder': '#ffd580',
|
||||
'list.activeSelectionBackground': '#191e2a',
|
||||
'list.activeSelectionForeground': '#707a8c',
|
||||
'list.focusBackground': '#191e2a',
|
||||
'list.focusForeground': '#707a8c',
|
||||
'list.highlightForeground': '#ffcc66',
|
||||
'list.hoverBackground': '#191e2a',
|
||||
'list.hoverForeground': '#707a8c',
|
||||
'list.inactiveSelectionBackground': '#191e2a',
|
||||
'list.inactiveSelectionForeground': '#707a8c',
|
||||
'list.invalidItemForeground': '#586070',
|
||||
'panel.background': '#1f2430',
|
||||
'panel.border': '#191e2a',
|
||||
'panelTitle.activeBorder': '#ffcc66',
|
||||
'panelTitle.activeForeground': '#cbccc6',
|
||||
'panelTitle.inactiveForeground': '#707a8c',
|
||||
'peekView.border': '#191e2a',
|
||||
'peekViewEditor.background': '#232834',
|
||||
'peekViewEditor.matchHighlightBackground': '#ffcc6633',
|
||||
'peekViewResult.background': '#232834',
|
||||
'peekViewResult.fileForeground': '#707a8c',
|
||||
'peekViewResult.matchHighlightBackground': '#ffcc6633',
|
||||
'peekViewTitle.background': '#232834',
|
||||
'peekViewTitleDescription.foreground': '#707a8c',
|
||||
'peekViewTitleLabel.foreground': '#707a8c',
|
||||
'pickerGroup.border': '#191e2a',
|
||||
'pickerGroup.foreground': '#484f5e',
|
||||
'progressBar.background': '#ffcc66',
|
||||
'scrollbar.shadow': '#191e2a',
|
||||
'scrollbarSlider.activeBackground': '#707a8cb3',
|
||||
'scrollbarSlider.background': '#707a8c66',
|
||||
'scrollbarSlider.hoverBackground': '#707a8c99',
|
||||
'selection.background': '#2a3546fd',
|
||||
'settings.headerForeground': '#cbccc6',
|
||||
'settings.modifiedItemIndicator': '#77a8d9',
|
||||
'sideBar.background': '#1f2430',
|
||||
'sideBar.border': '#191e2a',
|
||||
'sideBarSectionHeader.background': '#1f2430',
|
||||
'sideBarSectionHeader.foreground': '#707a8c',
|
||||
'sideBarTitle.foreground': '#707a8c',
|
||||
'statusBar.background': '#1f2430',
|
||||
'statusBar.border': '#191e2a',
|
||||
'statusBar.debuggingBackground': '#f29e74',
|
||||
'statusBar.debuggingForeground': '#1f2430',
|
||||
'statusBar.foreground': '#707a8c',
|
||||
'statusBar.noFolderBackground': '#232834',
|
||||
'statusBarItem.activeBackground': '#00000050',
|
||||
'statusBarItem.hoverBackground': '#00000030',
|
||||
'statusBarItem.prominentBackground': '#191e2a',
|
||||
'statusBarItem.prominentHoverBackground': '#00000030',
|
||||
'tab.activeBackground': '#232834',
|
||||
'tab.activeBorderTop': '#ffcc66',
|
||||
'tab.activeForeground': '#cbccc6',
|
||||
'tab.border': '#191e2a',
|
||||
'tab.inactiveBackground': '#1f2430',
|
||||
'tab.inactiveForeground': '#707a8c',
|
||||
'tab.unfocusedActiveBorderTop': '#707a8c',
|
||||
'tab.unfocusedActiveForeground': '#707a8c',
|
||||
'tab.unfocusedInactiveForeground': '#707a8c',
|
||||
'terminal.ansiBlack': '#191e2a',
|
||||
'terminal.ansiBlue': '#6dcbfa',
|
||||
'terminal.ansiBrightBlack': '#686868',
|
||||
'terminal.ansiBrightBlue': '#73d0ff',
|
||||
'terminal.ansiBrightCyan': '#95e6cb',
|
||||
'terminal.ansiBrightGreen': '#bae67e',
|
||||
'terminal.ansiBrightMagenta': '#d4bfff',
|
||||
'terminal.ansiBrightRed': '#f28779',
|
||||
'terminal.ansiBrightWhite': '#ffffff',
|
||||
'terminal.ansiBrightYellow': '#ffd580',
|
||||
'terminal.ansiCyan': '#90e1c6',
|
||||
'terminal.ansiGreen': '#a6cc70',
|
||||
'terminal.ansiMagenta': '#cfbafa',
|
||||
'terminal.ansiRed': '#ed8274',
|
||||
'terminal.ansiWhite': '#c7c7c7',
|
||||
'terminal.ansiYellow': '#fad07b',
|
||||
'terminal.background': '#1f2430',
|
||||
'terminal.foreground': '#cbccc6',
|
||||
'textBlockQuote.background': '#232834',
|
||||
'textLink.activeForeground': '#ffcc66',
|
||||
'textLink.foreground': '#ffcc66',
|
||||
'textPreformat.foreground': '#cbccc6',
|
||||
'titleBar.activeBackground': '#1f2430',
|
||||
'titleBar.activeForeground': '#cbccc6',
|
||||
'titleBar.border': '#191e2a',
|
||||
'titleBar.inactiveBackground': '#1f2430',
|
||||
'titleBar.inactiveForeground': '#707a8c',
|
||||
'walkThrough.embeddedEditorBackground': '#232834',
|
||||
'widget.shadow': '#141925',
|
||||
};
|
||||
//# sourceMappingURL=ayu.js.map
|
||||
@@ -0,0 +1,60 @@
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.default = {
|
||||
"titleBar.activeBackground": "#2b2b2b",
|
||||
"titleBar.border": "#1b1b1b",
|
||||
"titleBar.activeForeground": "#ffffff",
|
||||
"titleBar.inactiveBackground": "#353535",
|
||||
"titleBar.inactiveForeground": "#999999",
|
||||
"menubar.selectionBackground": "#2b2b2b",
|
||||
"menubar.selectionForeground": "#15539e",
|
||||
"menu.background": "#2f2f2f",
|
||||
"menu.foreground": "#ffffff",
|
||||
"menu.selectionBackground": "#15539e",
|
||||
"menu.selectionForeground": "#ffffff",
|
||||
"menu.separatorBackground": "#00000055",
|
||||
"panel.background": "#313131",
|
||||
"panel.border": "#1b1b1b",
|
||||
"activityBar.background": "#282828",
|
||||
"activityBar.border": "#1b1b1b",
|
||||
"activityBar.foreground": "#ffffff",
|
||||
"activityBarBadge.background": "#15539e",
|
||||
"activityBarBadge.foreground": "#ffffff",
|
||||
"sideBar.background": "#313131",
|
||||
"sideBar.border": "#1b1b1b",
|
||||
"sideBar.foreground": "#ffffff",
|
||||
"sideBarSectionHeader.background": "#282828",
|
||||
"statusBar.background": "#282828",
|
||||
"statusBar.foreground": "#ffffff",
|
||||
"statusBar.border": "#1b1b1b",
|
||||
"statusBarItem.hoverBackground": "#373737",
|
||||
"statusBar.noFolderBackground": "#282828",
|
||||
"button.background": "#15539e",
|
||||
"input.background": "#2d2d2d",
|
||||
"input.border": "#1b1b1b",
|
||||
"dropdown.background": "#353535",
|
||||
"dropdown.border": "#1b1b1b",
|
||||
"list.activeSelectionBackground": "#15539e",
|
||||
"list.activeSelectionForeground": "#ffffff",
|
||||
"list.focusBackground": "#15539e",
|
||||
"list.hoverBackground": "#373737",
|
||||
"list.highlightForeground": "#ffffff",
|
||||
"list.inactiveSelectionBackground": "#15539e",
|
||||
"list.inactiveSelectionForeground": "#ffffff",
|
||||
"editor.background": "#202020",
|
||||
"editorGroup.background": "#282828",
|
||||
"editorGroup.border": "#1b1b1b",
|
||||
"editorGroupHeader.tabsBackground": "#262626",
|
||||
"editorGroupHeader.tabsBorder": "#1b1b1b",
|
||||
"terminal.background": "#202020",
|
||||
"notification.background": "#25252570",
|
||||
"tab.activeBackground": "#2e2e2e",
|
||||
"tab.activeBorder": "#15539e",
|
||||
"tab.hoverBackground": "#2d2d2d",
|
||||
"tab.border": "#1b1b1b",
|
||||
"tab.inactiveBackground": "#262626",
|
||||
"foreground": "#ffffff",
|
||||
"focusBorder": "#15539e",
|
||||
"contrastBorder": "#1b1b1b"
|
||||
};
|
||||
//# sourceMappingURL=gnome.js.map
|
||||
@@ -0,0 +1,136 @@
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.default = {
|
||||
'activityBar.background': '#000',
|
||||
'activityBar.foreground': '#d7dae0',
|
||||
'activityBarBadge.background': '#4d78cc',
|
||||
'activityBarBadge.foreground': '#f8fafd',
|
||||
'badge.background': '#0051c3',
|
||||
'breadcrumb.activeSelectionForeground': '#2979FF',
|
||||
'button.background': '#0240b392',
|
||||
'debugToolBar.background': '#161616',
|
||||
'diffEditor.insertedTextBackground': '#00809b33',
|
||||
'dropdown.background': '#161616',
|
||||
'dropdown.border': '#000',
|
||||
'dropdown.listBackground': '#161616',
|
||||
'editor.background': '#000',
|
||||
'editor.findMatchBackground': '#42557b',
|
||||
'editor.findMatchBorder': '#2979FF',
|
||||
'editor.findMatchHighlightBackground': '#6199ff2f',
|
||||
'editor.foreground': '#d4d4d4',
|
||||
'editor.lineHighlightBackground': '#0f0f0f',
|
||||
'editor.selectionBackground': '#57617760',
|
||||
'editor.selectionHighlightBackground': '#ffffff10',
|
||||
'editor.selectionHighlightBorder': '#dddddd',
|
||||
'editor.wordHighlightBackground': '#d2e0ff2f',
|
||||
'editor.wordHighlightBorder': '#7f848e',
|
||||
'editor.wordHighlightStrongBackground': '#abb2bf26',
|
||||
'editor.wordHighlightStrongBorder': '#7f848e',
|
||||
'editorLineNumber.activeForeground': '#1152cc',
|
||||
'editorBracketMatch.background': '#515a6b',
|
||||
'editorBracketMatch.border': '#515a6b',
|
||||
'editorCursor.background': '#ffffffc9',
|
||||
'editorCursor.foreground': '#528bff',
|
||||
'editorError.foreground': '#c24038',
|
||||
'editorGroup.emptyBackground': '#000',
|
||||
'editorGroup.border': '#3f3f3f5c',
|
||||
'editorGroupHeader.noTabsBackground': '#000',
|
||||
'editorGroupHeader.tabsBackground': '#000',
|
||||
'editorGroupHeader.tabsBorder': '#000',
|
||||
'editorHoverWidget.background': '#000',
|
||||
'editorHoverWidget.border': '#383838',
|
||||
'editorIndentGuide.activeBackground': '#8b8b8b59',
|
||||
'editorIndentGuide.background': '#33333374',
|
||||
'editorLineNumber.foreground': '#66666695',
|
||||
'editorMarkerNavigation.background': '#21252b',
|
||||
'editorRuler.foreground': '#abb2bf26',
|
||||
'editorSuggestWidget.background': '#161616',
|
||||
'editorSuggestWidget.border': '#181a1f',
|
||||
'editorSuggestWidget.selectedBackground': '#2c313a',
|
||||
'editorSuggestWidget.highlightForeground': '#2979FF',
|
||||
'editorWarning.foreground': '#d19a66',
|
||||
'editorWhitespace.foreground': '#3b4048',
|
||||
'editorWidget.background': '#161616',
|
||||
'editorWidget.resizeBorder': '#2979FF',
|
||||
'editorWidget.border': '#2979FF',
|
||||
focusBorder: '#464646',
|
||||
'input.background': '#202020',
|
||||
'list.activeSelectionBackground': '#31313184',
|
||||
'list.activeSelectionForeground': '#2979FF',
|
||||
'list.focusBackground': '#31313184',
|
||||
'list.highlightForeground': '#2979FF',
|
||||
'list.hoverBackground': '#31313184',
|
||||
'list.inactiveSelectionBackground': '#31313184',
|
||||
'list.inactiveSelectionForeground': '#2979FF',
|
||||
'list.warningForeground': '#d19a66',
|
||||
'menu.foreground': '#c8c8c8',
|
||||
'menu.selectionForeground': '#2979FF',
|
||||
'menubar.selectionForeground': '#2979FF',
|
||||
'notificationLink.foreground': '#2979FF',
|
||||
'panelSectionHeader.background': '#000',
|
||||
'panelTitle.activeBorder': '#2979FF',
|
||||
'peekViewEditor.background': '#1b1d23',
|
||||
'peekViewEditor.matchHighlightBackground': '#29244b',
|
||||
'peekViewResult.background': '#22262b',
|
||||
'pickerGroup.foreground': '#2979FF',
|
||||
'progressBar.background': '#2979FF',
|
||||
'scrollbarSlider.activeBackground': '#ffffff28',
|
||||
'scrollbarSlider.background': '#ffffff18',
|
||||
'scrollbarSlider.hoverBackground': '#ffffff1f',
|
||||
'selection.background': '#2979FF40',
|
||||
'settings.modifiedItemIndicator': '#2979FF',
|
||||
'settings.headerForeground': '#2979FF',
|
||||
'sideBar.background': '#000',
|
||||
'sideBar.border': '#222',
|
||||
'sideBar.foreground': '#d4d4d4',
|
||||
'sideBarSectionHeader.background': '#000',
|
||||
'sideBarSectionHeader.foreground': '#d4d4d4',
|
||||
'sideBarTitle.foreground': '#d4d4d4',
|
||||
'statusBar.background': '#000',
|
||||
'statusBar.debuggingBackground': '#cc6633',
|
||||
'statusBar.debuggingBorder': '#66017a',
|
||||
'statusBar.debuggingForeground': '#ffffff',
|
||||
'statusBar.foreground': '#ccc',
|
||||
'statusBar.noFolderBackground': '#000',
|
||||
'statusBarItem.hoverBackground': '#1a1a1a',
|
||||
'statusBarItem.remoteBackground': '#4d78cc',
|
||||
'statusBarItem.remoteForeground': '#f8fafd',
|
||||
'tab.activeBackground': '#000',
|
||||
'tab.activeForeground': '#dcdcdc',
|
||||
'tab.border': '#000',
|
||||
'tab.activeBorder': '#2979FF',
|
||||
'tab.hoverBackground': '#2a2a2acf',
|
||||
'tab.inactiveBackground': '#000',
|
||||
'tab.unfocusedHoverBackground': '#2a2a2acf',
|
||||
'tab.unfocusedActiveForeground': '#fff',
|
||||
'tab.inactiveForeground': '#9c9c9c',
|
||||
'tab.unfocusedInactiveForeground': '#9c9c9c',
|
||||
'tab.unfocusedActiveBorder': '#000',
|
||||
'terminal.ansiBlack': '#3f4451',
|
||||
'terminal.ansiBlue': '#4aa5f0',
|
||||
'terminal.ansiBrightBlack': '#4f5666',
|
||||
'terminal.ansiBrightBlue': '#4dc4ff',
|
||||
'terminal.ansiBrightCyan': '#4cd1e0',
|
||||
'terminal.ansiBrightGreen': '#a5e075',
|
||||
'terminal.ansiBrightMagenta': '#de73ff',
|
||||
'terminal.ansiBrightRed': '#ff616e',
|
||||
'terminal.ansiBrightWhite': '#e6e6e6',
|
||||
'terminal.ansiBrightYellow': '#f0a45d',
|
||||
'terminal.ansiCyan': '#42b3c2',
|
||||
'terminal.ansiGreen': '#8cc265',
|
||||
'terminal.ansiMagenta': '#c162de',
|
||||
'terminal.ansiRed': '#e05561',
|
||||
'terminal.ansiWhite': '#d7dae0',
|
||||
'terminal.ansiYellow': '#d18f52',
|
||||
'terminal.background': '#000',
|
||||
'terminal.border': '#abb2bf',
|
||||
'terminal.foreground': '#abb2bf',
|
||||
'terminal.selectionBackground': '#79797940',
|
||||
'textLink.foreground': '#2979FF',
|
||||
'titleBar.activeBackground': '#000',
|
||||
'titleBar.inactiveBackground': '#000',
|
||||
'titleBar.border': '#000',
|
||||
'titleBar.activeForeground': '#ccc',
|
||||
'titleBar.inactiveForeground': '#ccc',
|
||||
};
|
||||
//# sourceMappingURL=justBlack.js.map
|
||||
@@ -0,0 +1,227 @@
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.default = {
|
||||
'activityBar.background': '#2e3440',
|
||||
'activityBar.dropBackground': '#3b4252',
|
||||
'activityBar.foreground': '#d8dee9',
|
||||
'activityBarBadge.background': '#88c0d0',
|
||||
'activityBarBadge.foreground': '#2e3440',
|
||||
'badge.background': '#88c0d0',
|
||||
'badge.foreground': '#2e3440',
|
||||
'button.background': '#434c5e',
|
||||
'button.foreground': '#d8dee9',
|
||||
'button.hoverBackground': '#4c566a',
|
||||
'debugExceptionWidget.background': '#4c566a',
|
||||
'debugExceptionWidget.border': '#2e3440',
|
||||
'debugToolBar.background': '#3b4252',
|
||||
'diffEditor.insertedTextBackground': '#81a1c133',
|
||||
'diffEditor.removedTextBackground': '#bf616a4d',
|
||||
'dropdown.background': '#3b4252',
|
||||
'dropdown.border': '#3b4252',
|
||||
'dropdown.foreground': '#d8dee9',
|
||||
'editor.background': '#2e3440',
|
||||
'editor.findMatchBackground': '#88c0d066',
|
||||
'editor.findMatchHighlightBackground': '#88c0d033',
|
||||
'editor.findRangeHighlightBackground': '#88c0d033',
|
||||
'editor.foreground': '#abb2bf',
|
||||
'editor.hoverHighlightBackground': '#3b4252',
|
||||
'editor.inactiveSelectionBackground': '#434c5ecc',
|
||||
'editor.lineHighlightBackground': '#3b4252',
|
||||
'editor.lineHighlightBorder': '#3b4252',
|
||||
'editor.rangeHighlightBackground': '#434c5e52',
|
||||
'editor.selectionBackground': '#434c5ecc',
|
||||
'editor.selectionHighlightBackground': '#434c5ecc',
|
||||
'editor.wordHighlightBackground': '#81a1c166',
|
||||
'editor.wordHighlightStrongBackground': '#81a1c199',
|
||||
'editorLineNumber.activeForeground': '#d8dee9cc',
|
||||
'editorBracketMatch.background': '#2e344000',
|
||||
'editorBracketMatch.border': '#88c0d0',
|
||||
'editorCodeLens.foreground': '#4c566a',
|
||||
'editorCursor.foreground': '#d8dee9',
|
||||
'editorError.border': '#bf616a00',
|
||||
'editorError.foreground': '#bf616a',
|
||||
'editorGroup.background': '#2e3440',
|
||||
'editorGroup.border': '#3b425201',
|
||||
'editorGroup.dropBackground': '#3b425299',
|
||||
'editorGroupHeader.noTabsBackground': '#2e3440',
|
||||
'editorGroupHeader.tabsBackground': '#2e3440',
|
||||
'editorGroupHeader.tabsBorder': '#3b425200',
|
||||
'editorGutter.addedBackground': '#a3be8c',
|
||||
'editorGutter.background': '#2e3440',
|
||||
'editorGutter.deletedBackground': '#bf616a',
|
||||
'editorGutter.modifiedBackground': '#ebcb8b',
|
||||
'editorHint.border': '#ebcb8b00',
|
||||
'editorHint.foreground': '#ebcb8b',
|
||||
'editorHoverWidget.background': '#3b4252',
|
||||
'editorHoverWidget.border': '#3b4252',
|
||||
'editorIndentGuide.activeBackground': '#4c566a',
|
||||
'editorIndentGuide.background': '#434c5eb3',
|
||||
'editorLineNumber.foreground': '#4c566a',
|
||||
'editorLink.activeForeground': '#88c0d0',
|
||||
'editorMarkerNavigation.background': '#5e81acc0',
|
||||
'editorMarkerNavigationError.background': '#bf616ac0',
|
||||
'editorMarkerNavigationWarning.background': '#ebcb8bc0',
|
||||
'editorOverviewRuler.addedForeground': '#a3be8c',
|
||||
'editorOverviewRuler.border': '#3b4252',
|
||||
'editorOverviewRuler.currentContentForeground': '#3b4252',
|
||||
'editorOverviewRuler.deletedForeground': '#bf616a',
|
||||
'editorOverviewRuler.errorForeground': '#bf616a',
|
||||
'editorOverviewRuler.findMatchForeground': '#88c0d066',
|
||||
'editorOverviewRuler.incomingContentForeground': '#3b4252',
|
||||
'editorOverviewRuler.infoForeground': '#81a1c1',
|
||||
'editorOverviewRuler.modifiedForeground': '#ebcb8b',
|
||||
'editorOverviewRuler.rangeHighlightForeground': '#88c0d066',
|
||||
'editorOverviewRuler.selectionHighlightForeground': '#88c0d066',
|
||||
'editorOverviewRuler.warningForeground': '#ebcb8b',
|
||||
'editorOverviewRuler.wordHighlightForeground': '#88c0d066',
|
||||
'editorOverviewRuler.wordHighlightStrongForeground': '#88c0d066',
|
||||
'editorRuler.foreground': '#434c5e',
|
||||
'editorSuggestWidget.background': '#2e3440',
|
||||
'editorSuggestWidget.border': '#3b4252',
|
||||
'editorSuggestWidget.foreground': '#d8dee9',
|
||||
'editorSuggestWidget.highlightForeground': '#88c0d0',
|
||||
'editorSuggestWidget.selectedBackground': '#434c5e',
|
||||
'editorWarning.border': '#ebcb8b00',
|
||||
'editorWarning.foreground': '#ebcb8b',
|
||||
'editorWhitespace.foreground': '#4c566ab3',
|
||||
'editorWidget.background': '#2e3440',
|
||||
'editorWidget.border': '#3b4252',
|
||||
errorForeground: '#bf616a',
|
||||
'extensionButton.prominentBackground': '#434c5e',
|
||||
'extensionButton.prominentForeground': '#d8dee9',
|
||||
'extensionButton.prominentHoverBackground': '#4c566a',
|
||||
focusBorder: '#3b4252',
|
||||
foreground: '#d8dee9',
|
||||
'gitDecoration.conflictingResourceForeground': '#5e81ac',
|
||||
'gitDecoration.deletedResourceForeground': '#bf616a',
|
||||
'gitDecoration.ignoredResourceForeground': '#d8dee966',
|
||||
'gitDecoration.modifiedResourceForeground': '#ebcb8b',
|
||||
'gitDecoration.submoduleResourceForeground': '#8fbcbb',
|
||||
'gitDecoration.untrackedResourceForeground': '#a3be8c',
|
||||
'input.background': '#3b4252',
|
||||
'input.border': '#3b4252',
|
||||
'input.foreground': '#d8dee9',
|
||||
'input.placeholderForeground': '#d8dee999',
|
||||
'inputOption.activeBackground': '#5e81ac',
|
||||
'inputOption.activeBorder': '#5e81ac',
|
||||
'inputValidation.errorBackground': '#bf616a',
|
||||
'inputValidation.errorBorder': '#bf616a',
|
||||
'inputValidation.infoBackground': '#81a1c1',
|
||||
'inputValidation.infoBorder': '#81a1c1',
|
||||
'inputValidation.warningBackground': '#d08770',
|
||||
'inputValidation.warningBorder': '#d08770',
|
||||
'list.activeSelectionBackground': '#88c0d0',
|
||||
'list.activeSelectionForeground': '#2e3440',
|
||||
'list.dropBackground': '#88c0d099',
|
||||
'list.errorForeground': '#bf616a',
|
||||
'list.focusBackground': '#88c0d099',
|
||||
'list.focusForeground': '#d8dee9',
|
||||
'list.highlightForeground': '#88c0d0',
|
||||
'list.hoverBackground': '#3b4252',
|
||||
'list.hoverForeground': '#eceff4',
|
||||
'list.inactiveFocusBackground': '#434c5ecc',
|
||||
'list.inactiveSelectionBackground': '#434c5e',
|
||||
'list.inactiveSelectionForeground': '#d8dee9',
|
||||
'list.warningForeground': '#ebcb8b',
|
||||
'merge.border': '#3b425200',
|
||||
'merge.currentContentBackground': '#81a1c14d',
|
||||
'merge.currentHeaderBackground': '#81a1c166',
|
||||
'merge.incomingContentBackground': '#8fbcbb4d',
|
||||
'merge.incomingHeaderBackground': '#8fbcbb66',
|
||||
'minimap.findMatchHighlight': '#88c0d0',
|
||||
'notificationCenter.border': '#3b425200',
|
||||
'notificationCenterHeader.background': '#2e3440',
|
||||
'notificationCenterHeader.foreground': '#88c0d0',
|
||||
'notificationLink.foreground': '#88c0d0',
|
||||
'notifications.background': '#3b4252',
|
||||
'notifications.border': '#2e3440',
|
||||
'notifications.foreground': '#d8dee9',
|
||||
'notificationToast.border': '#3b425200',
|
||||
'panel.background': '#2e3440',
|
||||
'panel.border': '#3b4252',
|
||||
'panelTitle.activeBorder': '#88c0d000',
|
||||
'panelTitle.activeForeground': '#88c0d0',
|
||||
'panelTitle.inactiveForeground': '#d8dee9',
|
||||
'peekView.border': '#4c566a',
|
||||
'peekViewEditor.background': '#2e3440',
|
||||
'peekViewEditor.matchHighlightBackground': '#88c0d04d',
|
||||
'peekViewEditorGutter.background': '#2e3440',
|
||||
'peekViewResult.background': '#2e3440',
|
||||
'peekViewResult.fileForeground': '#88c0d0',
|
||||
'peekViewResult.lineForeground': '#d8dee966',
|
||||
'peekViewResult.matchHighlightBackground': '#88c0d0cc',
|
||||
'peekViewResult.selectionBackground': '#434c5e',
|
||||
'peekViewResult.selectionForeground': '#d8dee9',
|
||||
'peekViewTitle.background': '#3b4252',
|
||||
'peekViewTitleDescription.foreground': '#d8dee9',
|
||||
'peekViewTitleLabel.foreground': '#88c0d0',
|
||||
'pickerGroup.border': '#3b4252',
|
||||
'pickerGroup.foreground': '#88c0d0',
|
||||
'progressBar.background': '#88c0d0',
|
||||
'scrollbar.shadow': '#00000066',
|
||||
'scrollbarSlider.activeBackground': '#434c5eaa',
|
||||
'scrollbarSlider.background': '#434c5e99',
|
||||
'scrollbarSlider.hoverBackground': '#434c5eaa',
|
||||
'selection.background': '#88c0d099',
|
||||
'sideBar.background': '#2e3440',
|
||||
'sideBar.border': '#3b4252',
|
||||
'sideBar.foreground': '#d8dee9',
|
||||
'sideBarSectionHeader.background': '#3b4252',
|
||||
'sideBarSectionHeader.foreground': '#d8dee9',
|
||||
'sideBarTitle.foreground': '#d8dee9',
|
||||
'statusBar.background': '#3b4252',
|
||||
'statusBar.border': '#3b425200',
|
||||
'statusBar.debuggingBackground': '#5e81ac',
|
||||
'statusBar.debuggingForeground': '#d8dee9',
|
||||
'statusBar.foreground': '#d8dee9',
|
||||
'statusBar.noFolderBackground': '#3b4252',
|
||||
'statusBar.noFolderForeground': '#d8dee9',
|
||||
'statusBarItem.activeBackground': '#4c566a',
|
||||
'statusBarItem.hoverBackground': '#434c5e',
|
||||
'statusBarItem.prominentBackground': '#3b4252',
|
||||
'statusBarItem.prominentHoverBackground': '#434c5e',
|
||||
'tab.activeBackground': '#3b4252',
|
||||
'tab.activeBorder': '#88c0d000',
|
||||
'tab.activeBorderTop': '#88c0d000',
|
||||
'tab.activeForeground': '#d8dee9',
|
||||
'tab.border': '#3b425200',
|
||||
'tab.hoverBackground': '#3b4252cc',
|
||||
'tab.hoverBorder': '#88c0d000',
|
||||
'tab.inactiveBackground': '#2e3440',
|
||||
'tab.inactiveForeground': '#d8dee966',
|
||||
'tab.unfocusedActiveBorder': '#88c0d000',
|
||||
'tab.unfocusedActiveBorderTop': '#88c0d000',
|
||||
'tab.unfocusedActiveForeground': '#d8dee999',
|
||||
'tab.unfocusedHoverBackground': '#3b4252b3',
|
||||
'tab.unfocusedHoverBorder': '#88c0d000',
|
||||
'tab.unfocusedInactiveForeground': '#d8dee966',
|
||||
'terminal.ansiBlack': '#3b4252',
|
||||
'terminal.ansiBlue': '#81a1c1',
|
||||
'terminal.ansiBrightBlack': '#4c566a',
|
||||
'terminal.ansiBrightBlue': '#81a1c1',
|
||||
'terminal.ansiBrightCyan': '#8fbcbb',
|
||||
'terminal.ansiBrightGreen': '#a3be8c',
|
||||
'terminal.ansiBrightMagenta': '#b48ead',
|
||||
'terminal.ansiBrightRed': '#bf616a',
|
||||
'terminal.ansiBrightWhite': '#eceff4',
|
||||
'terminal.ansiBrightYellow': '#ebcb8b',
|
||||
'terminal.ansiCyan': '#88c0d0',
|
||||
'terminal.ansiGreen': '#a3be8c',
|
||||
'terminal.ansiMagenta': '#b48ead',
|
||||
'terminal.ansiRed': '#bf616a',
|
||||
'terminal.ansiWhite': '#e5e9f0',
|
||||
'terminal.ansiYellow': '#ebcb8b',
|
||||
'terminal.background': '#2e3440',
|
||||
'terminal.foreground': '#d8dee9',
|
||||
'titleBar.activeBackground': '#2e3440',
|
||||
'titleBar.activeForeground': '#d8dee9',
|
||||
'titleBar.border': '#2e344000',
|
||||
'titleBar.inactiveBackground': '#2e3440',
|
||||
'titleBar.inactiveForeground': '#d8dee966',
|
||||
'tree.indentGuidesStroke': '#616e88',
|
||||
'walkThrough.embeddedEditorBackground': '#2e3440',
|
||||
'welcomePage.buttonBackground': '#434c5e',
|
||||
'welcomePage.buttonHoverBackground': '#4c566a',
|
||||
'widget.shadow': '#00000066',
|
||||
};
|
||||
//# sourceMappingURL=nord.js.map
|
||||
@@ -0,0 +1,601 @@
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.default = {
|
||||
'activityBar.activeBorder': '#54bef2',
|
||||
'activityBar.background': '#111720',
|
||||
'activityBar.border': '#111720',
|
||||
'activityBar.foreground': '#cacde2',
|
||||
'activityBarBadge.background': '#54bef2',
|
||||
'activityBarBadge.foreground': '#00111a',
|
||||
'badge.background': '#54bef2',
|
||||
'badge.foreground': '#00111a',
|
||||
'breadcrumb.activeSelectionForeground': '#54bef2',
|
||||
'breadcrumb.background': '#111720',
|
||||
'breadcrumb.focusForeground': '#cacde2',
|
||||
'breadcrumb.foreground': '#7e8995',
|
||||
'breadcrumbPicker.background': '#111720',
|
||||
'button.background': '#54bef2',
|
||||
'button.border': '#111720',
|
||||
'button.foreground': '#00111a',
|
||||
'button.hoverBackground': '#67e8f9',
|
||||
'button.secondaryBackground': '#00111a50',
|
||||
'button.secondaryForeground': '#d2d8e7',
|
||||
'button.secondaryHoverBackground': '#00111a',
|
||||
'charts.blue': '#54bef2',
|
||||
'charts.foreground': '#cacde2',
|
||||
'charts.green': '#82f1b1',
|
||||
'charts.orange': '#ff9c66',
|
||||
'charts.purple': '#c792ea',
|
||||
'charts.red': '#fb7185',
|
||||
'charts.yellow': '#ffcb6b',
|
||||
'debugConsole.errorForeground': '#fb7185',
|
||||
'debugConsole.infoForeground': '#cacde2',
|
||||
'debugConsole.sourceForeground': '#54bef2',
|
||||
'debugConsole.warningForeground': '#ffcb6b',
|
||||
'debugConsoleInputIcon.foreground': '#54bef2',
|
||||
'debugToolBar.background': '#111720',
|
||||
descriptionForeground: '#cacde2cc',
|
||||
'diffEditor.insertedTextBackground': '#82f1b120',
|
||||
'diffEditor.removedTextBackground': '#fb718560',
|
||||
'dropdown.background': '#111720',
|
||||
'dropdown.border': '#cacde210',
|
||||
'editor.background': '#111720',
|
||||
'editor.findMatchBackground': '#cacde240',
|
||||
'editor.findMatchBorder': '#54bef2',
|
||||
'editor.findMatchHighlightBackground': '#54bef260',
|
||||
'editor.findMatchHighlightBorder': '#cacde210',
|
||||
'editor.foreground': '#cacde2',
|
||||
'editor.lineHighlightBackground': '#00111a50',
|
||||
'editor.selectionBackground': '#54bef240',
|
||||
'editor.selectionHighlightBackground': '#ffcb6b30',
|
||||
'editorBracketMatch.background': '#00111a50',
|
||||
'editorBracketMatch.border': '#54bef240',
|
||||
'editorCodeLens.foreground': '#7e8995',
|
||||
'editorCursor.foreground': '#ffcb6b',
|
||||
'editorError.foreground': '#fb718540',
|
||||
'editorGroup.border': '#111720',
|
||||
'editorGroupHeader.tabsBackground': '#111720',
|
||||
'editorGutter.addedBackground': '#82f1b140',
|
||||
'editorGutter.deletedBackground': '#fb718540',
|
||||
'editorGutter.modifiedBackground': '#54bef240',
|
||||
'editorHoverWidget.background': '#111720',
|
||||
'editorHoverWidget.border': '#cacde210',
|
||||
'editorIndentGuide.activeBackground': '#5c6270',
|
||||
'editorIndentGuide.background': '#7e899540',
|
||||
'editorInfo.foreground': '#54bef240',
|
||||
'editorInlayHint.background': '#2c313c',
|
||||
'editorInlayHint.foreground': '#abb2bf',
|
||||
'editorLineNumber.activeForeground': '#7e8995',
|
||||
'editorLineNumber.foreground': '#5c6270',
|
||||
'editorLink.activeForeground': '#d2d8e7',
|
||||
'editorMarkerNavigation.background': '#54bef210',
|
||||
'editorOverviewRuler.addedForeground': '#82f1b1',
|
||||
'editorOverviewRuler.background': '#111720',
|
||||
'editorOverviewRuler.border': '#111720',
|
||||
'editorOverviewRuler.currentContentForeground': '#ffcb6b60',
|
||||
'editorOverviewRuler.deletedForeground': '#fb7185',
|
||||
'editorOverviewRuler.errorForeground': '#fb7185',
|
||||
'editorOverviewRuler.findMatchForeground': '#67e8f9',
|
||||
'editorOverviewRuler.incomingContentForeground': '#ffcb6b60',
|
||||
'editorOverviewRuler.infoForeground': '#54bef2',
|
||||
'editorOverviewRuler.modifiedForeground': '#ffcb6b',
|
||||
'editorOverviewRuler.rangeHighlightForeground': '#67e8f930',
|
||||
'editorOverviewRuler.selectionHighlightForeground': '#67e8f930',
|
||||
'editorOverviewRuler.warningForeground': '#ffcb6b',
|
||||
'editorOverviewRuler.wordHighlightForeground': '#ffcb6b30',
|
||||
'editorOverviewRuler.wordHighlightStrongForeground': '#ffcb6b60',
|
||||
'editorRuler.foreground': '#7e8995',
|
||||
'editorSuggestWidget.background': '#111720',
|
||||
'editorSuggestWidget.border': '#cacde210',
|
||||
'editorSuggestWidget.focusHighlightForeground': '#54bef2',
|
||||
'editorSuggestWidget.foreground': '#d2d8e7',
|
||||
'editorSuggestWidget.highlightForeground': '#54bef2',
|
||||
'editorSuggestWidget.selectedBackground': '#111720',
|
||||
'editorSuggestWidget.selectedForeground': '#cacde2',
|
||||
'editorWarning.foreground': '#ffcb6b40',
|
||||
'editorWhitespace.foreground': '#cacde240',
|
||||
'editorWidget.background': '#111720',
|
||||
'editorWidget.border': '#54bef2',
|
||||
'editorWidget.resizeBorder': '#54bef2',
|
||||
'extensionButton.prominentBackground': '#54bef2cc',
|
||||
'extensionButton.prominentHoverBackground': '#54bef2',
|
||||
focusBorder: '#11172000',
|
||||
foreground: '#cacde2',
|
||||
'gitDecoration.conflictingResourceForeground': '#ffcb6bcc',
|
||||
'gitDecoration.deletedResourceForeground': '#fb7185cc',
|
||||
'gitDecoration.ignoredResourceForeground': '#5c6270',
|
||||
'gitDecoration.modifiedResourceForeground': '#ffcb6bcc',
|
||||
'gitDecoration.submoduleResourceForeground': '#c792eacc',
|
||||
'gitDecoration.untrackedResourceForeground': '#82f1b1cc',
|
||||
'gitlens.closedPullRequestIconColor': '#fb7185',
|
||||
'gitlens.decorations.branchAheadForegroundColor': '#82f1b1',
|
||||
'gitlens.decorations.branchBehindForegroundColor': '#ffcb6b',
|
||||
'gitlens.decorations.branchDivergedForegroundColor': '#ff9c66',
|
||||
'gitlens.decorations.branchMissingUpstreamForegroundColor': '#fb7185',
|
||||
'gitlens.decorations.branchUnpublishedForegroundColor': '#82f1b1',
|
||||
'gitlens.gutterBackgroundColor': '#00111a60',
|
||||
'gitlens.gutterForegroundColor': '#cacde2',
|
||||
'gitlens.gutterUncommittedForegroundColor': '#5c6270',
|
||||
'gitlens.lineHighlightBackgroundColor': '#00111a60',
|
||||
'gitlens.lineHighlightOverviewRulerColor': '#cacde2',
|
||||
'gitlens.mergedPullRequestIconColor': '#c792ea',
|
||||
'gitlens.openPullRequestIconColor': '#82f1b1',
|
||||
'gitlens.trailingLineBackgroundColor': '#00111a50',
|
||||
'gitlens.trailingLineForegroundColor': '#cacde240',
|
||||
'gitlens.unpublishedCommitIconColor': '#82f1b1',
|
||||
'gitlens.unpulledChangesIconColor': '#ffcb6b',
|
||||
'gitlens.unpushlishedChangesIconColor': '#82f1b1',
|
||||
'icon.foreground': '#cacde2',
|
||||
'input.background': '#00111a50',
|
||||
'input.border': '#111720',
|
||||
'input.foreground': '#d2d8e7',
|
||||
'input.placeholderForeground': '#cacde240',
|
||||
'inputOption.activeBackground': '#00111a60',
|
||||
'inputOption.activeBorder': '#cacde210',
|
||||
'inputValidation.errorBorder': '#fb718540',
|
||||
'inputValidation.infoBorder': '#54bef240',
|
||||
'inputValidation.warningBorder': '#ffcb6b40',
|
||||
'keybindingLabel.background': '#00111a50',
|
||||
'keybindingLabel.border': '#5c6270cc',
|
||||
'keybindingLabel.bottomBorder': '#7e8995cc',
|
||||
'keybindingLabel.foreground': '#d2d8e7',
|
||||
'list.activeSelectionBackground': '#7e899560',
|
||||
'list.activeSelectionForeground': '#ffffff',
|
||||
'list.activeSelectionIconForeground': '#ffffff',
|
||||
'list.dropBackground': '#00111a50',
|
||||
'list.focusBackground': '#54bef220',
|
||||
'list.focusForeground': '#ffffff',
|
||||
'list.focusHighlightForeground': '#ffffff',
|
||||
'list.highlightForeground': '#d2d8e7',
|
||||
'list.hoverBackground': '#00111a50',
|
||||
'list.hoverForeground': '#d2d8e7',
|
||||
'list.inactiveSelectionBackground': '#111720',
|
||||
'list.inactiveSelectionForeground': '#54bef2',
|
||||
'listFilterWidget.background': '#111720',
|
||||
'listFilterWidget.noMatchesOutline': '#cacde210',
|
||||
'listFilterWidget.outline': '#cacde210',
|
||||
'menu.background': '#111720',
|
||||
'menu.foreground': '#d2d8e7',
|
||||
'menu.selectionBackground': '#111720',
|
||||
'menu.selectionForeground': '#54bef2',
|
||||
'menu.separatorBackground': '#d2d8e7',
|
||||
'menubar.selectionBackground': '#111720',
|
||||
'menubar.selectionForeground': '#54bef2',
|
||||
'notificationCenterHeader.background': '#111720',
|
||||
'notificationCenterHeader.foreground': '#d2d8e7',
|
||||
'notificationLink.foreground': '#c792ea',
|
||||
'notifications.background': '#111720',
|
||||
'notifications.foreground': '#d2d8e7',
|
||||
'notificationsErrorIcon.foreground': '#fb7185',
|
||||
'notificationsInfoIcon.foreground': '#00111a50',
|
||||
'notificationsWarningIcon.foreground': '#ffcb6b',
|
||||
'panel.background': '#111720',
|
||||
'panel.border': '#111720',
|
||||
'panel.dropBorder': '#c792ea',
|
||||
'panelTitle.activeBorder': '#54bef2',
|
||||
'panelTitle.activeForeground': '#ffffff',
|
||||
'panelTitle.inactiveForeground': '#7e8995',
|
||||
'peekView.border': '#cacde210',
|
||||
'peekViewEditor.background': '#c792ea10',
|
||||
'peekViewEditor.matchHighlightBackground': '#54bef240',
|
||||
'peekViewEditorGutter.background': '#c792ea10',
|
||||
'peekViewResult.background': '#c792ea10',
|
||||
'peekViewResult.matchHighlightBackground': '#54bef240',
|
||||
'peekViewResult.selectionBackground': '#7e899540',
|
||||
'peekViewTitle.background': '#c792ea10',
|
||||
'peekViewTitleDescription.foreground': '#cacde240',
|
||||
'pickerGroup.foreground': '#54bef2',
|
||||
'progressBar.background': '#54bef2',
|
||||
'scrollbar.shadow': '#11172000',
|
||||
'scrollbarSlider.activeBackground': '#54bef240',
|
||||
'scrollbarSlider.background': '#54bef230',
|
||||
'scrollbarSlider.hoverBackground': '#111720',
|
||||
'selection.background': '#54bef240',
|
||||
'settings.checkboxBackground': '#111720',
|
||||
'settings.checkboxForeground': '#cacde2',
|
||||
'settings.dropdownBackground': '#111720',
|
||||
'settings.dropdownForeground': '#cacde2',
|
||||
'settings.headerForeground': '#54bef2',
|
||||
'settings.modifiedItemIndicator': '#54bef2',
|
||||
'settings.numberInputBackground': '#111720',
|
||||
'settings.numberInputForeground': '#cacde2',
|
||||
'settings.textInputBackground': '#111720',
|
||||
'settings.textInputForeground': '#cacde2',
|
||||
'sideBar.background': '#111720',
|
||||
'sideBar.border': '#111720',
|
||||
'sideBar.foreground': '#7e8995',
|
||||
'sideBarSectionHeader.background': '#111720',
|
||||
'sideBarSectionHeader.border': '#111720',
|
||||
'sideBarTitle.foreground': '#cacde2',
|
||||
'statusBar.background': '#111720',
|
||||
'statusBar.border': '#111720',
|
||||
'statusBar.debuggingBackground': '#54bef2',
|
||||
'statusBar.debuggingForeground': '#00111a',
|
||||
'statusBar.foreground': '#7e8995',
|
||||
'statusBar.noFolderBackground': '#111720',
|
||||
'statusBarItem.hoverBackground': '#00111a50',
|
||||
'statusBarItem.prominentForeground': '#00111a',
|
||||
'statusBarItem.remoteBackground': '#54bef2',
|
||||
'statusBarItem.remoteForeground': '#00111a',
|
||||
'tab.activeBorder': '#d19a66',
|
||||
'tab.activeForeground': '#cacde2',
|
||||
'tab.activeModifiedBorder': '#7e8995',
|
||||
'tab.border': '#111720',
|
||||
'tab.inactiveBackground': '#111720',
|
||||
'tab.inactiveForeground': '#7e8995',
|
||||
'tab.unfocusedActiveBorder': '#7e8995',
|
||||
'tab.unfocusedActiveForeground': '#cacde2',
|
||||
'terminal.ansiBlack': '#5c6270',
|
||||
'terminal.ansiBlue': '#54bef2',
|
||||
'terminal.ansiBrightBlack': '#7e8995',
|
||||
'terminal.ansiBrightBlue': '#54bef2',
|
||||
'terminal.ansiBrightCyan': '#67e8f9',
|
||||
'terminal.ansiBrightGreen': '#82f1b1',
|
||||
'terminal.ansiBrightMagenta': '#c792ea',
|
||||
'terminal.ansiBrightRed': '#fb7185',
|
||||
'terminal.ansiBrightWhite': '#ffffff',
|
||||
'terminal.ansiBrightYellow': '#ffcb6b',
|
||||
'terminal.ansiCyan': '#67e8f9',
|
||||
'terminal.ansiGreen': '#82f1b1',
|
||||
'terminal.ansiMagenta': '#c792ea',
|
||||
'terminal.ansiRed': '#fb7185',
|
||||
'terminal.ansiWhite': '#ffffff',
|
||||
'terminal.ansiYellow': '#ffcb6b',
|
||||
'terminalCursor.background': '#00111a',
|
||||
'terminalCursor.foreground': '#cacde2',
|
||||
'textCodeBlock.background': '#7e8995',
|
||||
'textLink.activeForeground': '#54bef2',
|
||||
'textLink.foreground': '#54bef2',
|
||||
'textPreformat.foreground': '#7e8995',
|
||||
'titleBar.activeBackground': '#111720',
|
||||
'titleBar.activeForeground': '#d2d8e7',
|
||||
'titleBar.border': '#111720',
|
||||
'titleBar.inactiveBackground': '#111720',
|
||||
'titleBar.inactiveForeground': '#7e8995',
|
||||
'toolbar.hoverBackground': '#00111a50',
|
||||
'widget.shadow': '#00111a10',
|
||||
//"activityBar.dropBorder": "#cacde2",
|
||||
//"activityBar.inactiveForeground": "#cacde266",
|
||||
//"banner.background": "#7e899560",
|
||||
//"banner.foreground": "#ffffff",
|
||||
//"banner.iconForeground": "#54bef240",
|
||||
//"charts.lines": "#cacde280",
|
||||
//"checkbox.background": "#111720",
|
||||
//"checkbox.border": "#cacde210",
|
||||
//"checkbox.foreground": "#f0f0f0",
|
||||
//"debugExceptionWidget.background": "#420b0d",
|
||||
//"debugExceptionWidget.border": "#a31515",
|
||||
//"debugIcon.breakpointCurrentStackframeForeground": "#ffcc00",
|
||||
//"debugIcon.breakpointDisabledForeground": "#848484",
|
||||
//"debugIcon.breakpointForeground": "#e51400",
|
||||
//"debugIcon.breakpointStackframeForeground": "#89d185",
|
||||
//"debugIcon.breakpointUnverifiedForeground": "#848484",
|
||||
//"debugIcon.continueForeground": "#75beff",
|
||||
//"debugIcon.disconnectForeground": "#f48771",
|
||||
//"debugIcon.pauseForeground": "#75beff",
|
||||
//"debugIcon.restartForeground": "#89d185",
|
||||
//"debugIcon.startForeground": "#89d185",
|
||||
//"debugIcon.stepBackForeground": "#75beff",
|
||||
//"debugIcon.stepIntoForeground": "#75beff",
|
||||
//"debugIcon.stepOutForeground": "#75beff",
|
||||
//"debugIcon.stepOverForeground": "#75beff",
|
||||
//"debugIcon.stopForeground": "#f48771",
|
||||
//"debugTokenExpression.boolean": "#4e94ce",
|
||||
//"debugTokenExpression.error": "#f48771",
|
||||
//"debugTokenExpression.name": "#c586c0",
|
||||
//"debugTokenExpression.number": "#b5cea8",
|
||||
//"debugTokenExpression.string": "#ce9178",
|
||||
//"debugTokenExpression.value": "#cccccc99",
|
||||
//"debugView.exceptionLabelBackground": "#6c2022",
|
||||
//"debugView.exceptionLabelForeground": "#cacde2",
|
||||
//"debugView.stateLabelBackground": "#88888844",
|
||||
//"debugView.stateLabelForeground": "#cacde2",
|
||||
//"debugView.valueChangedHighlight": "#569cd6",
|
||||
//"diffEditor.diagonalFill": "#cccccc33",
|
||||
//"dropdown.foreground": "#f0f0f0",
|
||||
//"editor.findRangeHighlightBackground": "#3a3d4166",
|
||||
//"editor.focusedStackFrameHighlightBackground": "#7abd7a4d",
|
||||
//"editor.foldBackground": "#54bef213",
|
||||
//"editor.hoverHighlightBackground": "#264f7840",
|
||||
//"editor.inactiveSelectionBackground": "#54bef220",
|
||||
//"editor.inlineValuesBackground": "#ffc80033",
|
||||
//"editor.inlineValuesForeground": "#ffffff80",
|
||||
//"editor.lineHighlightBorder": "#282828",
|
||||
//"editor.linkedEditingBackground": "#ff00004d",
|
||||
//"editor.rangeHighlightBackground": "#ffffff0b",
|
||||
//"editor.snippetFinalTabstopHighlightBorder": "#525252",
|
||||
//"editor.snippetTabstopHighlightBackground": "#7c7c7c4d",
|
||||
//"editor.stackFrameHighlightBackground": "#ffff0033",
|
||||
//"editor.symbolHighlightBackground": "#54bef260",
|
||||
//"editor.wordHighlightBackground": "#575757b8",
|
||||
//"editor.wordHighlightStrongBackground": "#004972b8",
|
||||
//"editorLineNumber.activeForeground": "#c6c6c6",
|
||||
//"editorBracketHighlight.foreground1": "#ffd700",
|
||||
//"editorBracketHighlight.foreground2": "#da70d6",
|
||||
//"editorBracketHighlight.foreground3": "#179fff",
|
||||
//"editorBracketHighlight.foreground4": "#00000000",
|
||||
//"editorBracketHighlight.foreground5": "#00000000",
|
||||
//"editorBracketHighlight.foreground6": "#00000000",
|
||||
//"editorBracketHighlight.unexpectedBracket.foreground": "#ff1212cc",
|
||||
//"editorGhostText.foreground": "#ffffff56",
|
||||
//"editorGroup.dropBackground": "#53595d80",
|
||||
//"editorGroupHeader.noTabsBackground": "#111720",
|
||||
//"editorGutter.background": "#111720",
|
||||
//"editorGutter.commentRangeForeground": "#c5c5c5",
|
||||
//"editorGutter.foldingControlForeground": "#cacde2",
|
||||
//"editorHint.foreground": "#eeeeeeb3",
|
||||
//"editorHoverWidget.foreground": "#cacde2",
|
||||
//"editorHoverWidget.statusBarBackground": "#141c26",
|
||||
//"editorLightBulb.foreground": "#ffcc00",
|
||||
//"editorLightBulbAutoFix.foreground": "#75beff",
|
||||
//"editorMarkerNavigationError.background": "#fb718540",
|
||||
//"editorMarkerNavigationError.headerBackground": "#fb718506",
|
||||
//"editorMarkerNavigationInfo.background": "#54bef240",
|
||||
//"editorMarkerNavigationInfo.headerBackground": "#54bef206",
|
||||
//"editorMarkerNavigationWarning.background": "#ffcb6b40",
|
||||
//"editorMarkerNavigationWarning.headerBackground": "#ffcb6b06",
|
||||
//"editorOverviewRuler.bracketMatchForeground": "#a0a0a0",
|
||||
//"editorOverviewRuler.commonContentForeground": "#60606066",
|
||||
//"editorPane.background": "#111720",
|
||||
//"editorSuggestWidget.selectedIconForeground": "#ffffff",
|
||||
//"editorUnnecessaryCode.opacity": "#000000aa",
|
||||
//"editorWidget.foreground": "#cacde2",
|
||||
//"errorForeground": "#f48771",
|
||||
//"extensionBadge.remoteBackground": "#54bef2",
|
||||
//"extensionBadge.remoteForeground": "#00111a",
|
||||
//"extensionButton.prominentForeground": "#00111a",
|
||||
//"extensionIcon.starForeground": "#ff8e00",
|
||||
//"gitDecoration.addedResourceForeground": "#81b88b",
|
||||
//"gitDecoration.renamedResourceForeground": "#73c991",
|
||||
//"gitDecoration.stageDeletedResourceForeground": "#c74e39",
|
||||
//"gitDecoration.stageModifiedResourceForeground": "#e2c08d",
|
||||
//"gitlens.decorations.addedForegroundColor": "#81b88b",
|
||||
//"gitlens.decorations.branchUpToDateForegroundColor": "#7e8995",
|
||||
//"gitlens.decorations.copiedForegroundColor": "#73c991",
|
||||
//"gitlens.decorations.deletedForegroundColor": "#fb7185cc",
|
||||
//"gitlens.decorations.ignoredForegroundColor": "#5c6270",
|
||||
//"gitlens.decorations.modifiedForegroundColor": "#ffcb6bcc",
|
||||
//"gitlens.decorations.renamedForegroundColor": "#73c991",
|
||||
//"gitlens.decorations.untrackedForegroundColor": "#82f1b1cc",
|
||||
//"inputOption.activeForeground": "#ffffff",
|
||||
//"inputValidation.errorBackground": "#5a1d1d",
|
||||
//"inputValidation.infoBackground": "#063b49",
|
||||
//"inputValidation.warningBackground": "#352a05",
|
||||
//"interactive.activeCodeBorder": "#cacde210",
|
||||
//"interactive.inactiveCodeBorder": "#111720",
|
||||
//"list.deemphasizedForeground": "#8c8c8c",
|
||||
//"list.errorForeground": "#f88070",
|
||||
//"list.filterMatchBackground": "#54bef260",
|
||||
//"list.filterMatchBorder": "#cacde210",
|
||||
//"list.focusOutline": "#11172000",
|
||||
//"list.invalidItemForeground": "#b89500",
|
||||
//"list.warningForeground": "#cca700",
|
||||
//"merge.commonContentBackground": "#60606029",
|
||||
//"merge.commonHeaderBackground": "#60606066",
|
||||
//"merge.currentContentBackground": "#40c8ae33",
|
||||
//"merge.currentHeaderBackground": "#40c8ae80",
|
||||
//"merge.incomingContentBackground": "#40a6ff33",
|
||||
//"merge.incomingHeaderBackground": "#40a6ff80",
|
||||
//"minimap.errorHighlight": "#ff1212b3",
|
||||
//"minimap.findMatchHighlight": "#d18616",
|
||||
//"minimap.selectionHighlight": "#264f78",
|
||||
//"minimap.warningHighlight": "#ffcb6b40",
|
||||
//"minimapGutter.addedBackground": "#587c0c",
|
||||
//"minimapGutter.deletedBackground": "#94151b",
|
||||
//"minimapGutter.modifiedBackground": "#0c7d9d",
|
||||
//"minimapSlider.activeBackground": "#54bef220",
|
||||
//"minimapSlider.background": "#54bef218",
|
||||
//"minimapSlider.hoverBackground": "#11172080",
|
||||
//"notebook.cellBorderColor": "#111720",
|
||||
//"notebook.cellEditorBackground": "#cacde20a",
|
||||
//"notebook.cellInsertionIndicator": "#11172000",
|
||||
//"notebook.cellStatusBarItemHoverBackground": "#ffffff26",
|
||||
//"notebook.cellToolbarSeparator": "#80808059",
|
||||
//"notebook.focusedCellBorder": "#11172000",
|
||||
//"notebook.focusedEditorBorder": "#11172000",
|
||||
//"notebook.inactiveFocusedCellBorder": "#111720",
|
||||
//"notebook.selectedCellBackground": "#111720",
|
||||
//"notebook.selectedCellBorder": "#111720",
|
||||
//"notebook.symbolHighlightBackground": "#ffffff0b",
|
||||
//"notebookScrollbarSlider.activeBackground": "#54bef240",
|
||||
//"notebookScrollbarSlider.background": "#54bef230",
|
||||
//"notebookScrollbarSlider.hoverBackground": "#111720",
|
||||
//"notebookStatusErrorIcon.foreground": "#f48771",
|
||||
//"notebookStatusRunningIcon.foreground": "#cacde2",
|
||||
//"notebookStatusSuccessIcon.foreground": "#89d185",
|
||||
//"notifications.border": "#111720",
|
||||
//"panelSection.border": "#111720",
|
||||
//"panelSection.dropBackground": "#53595d80",
|
||||
//"panelSectionHeader.background": "#80808033",
|
||||
//"peekViewResult.fileForeground": "#ffffff",
|
||||
//"peekViewResult.lineForeground": "#bbbbbb",
|
||||
//"peekViewResult.selectionForeground": "#ffffff",
|
||||
//"peekViewTitleLabel.foreground": "#ffffff",
|
||||
//"pickerGroup.border": "#3f3f46",
|
||||
//"ports.iconRunningProcessForeground": "#54bef2",
|
||||
//"problemsErrorIcon.foreground": "#fb718540",
|
||||
//"problemsInfoIcon.foreground": "#54bef240",
|
||||
//"problemsWarningIcon.foreground": "#ffcb6b40",
|
||||
//"quickInput.background": "#111720",
|
||||
//"quickInput.foreground": "#cacde2",
|
||||
//"quickInputList.focusBackground": "#7e899560",
|
||||
//"quickInputList.focusForeground": "#ffffff",
|
||||
//"quickInputList.focusIconForeground": "#ffffff",
|
||||
//"quickInputTitle.background": "#ffffff1b",
|
||||
//"rust_analyzer.inlayHints.background": "#11223300",
|
||||
//"rust_analyzer.inlayHints.background.chainingHints": "#11223300",
|
||||
//"rust_analyzer.inlayHints.background.parameterHints": "#11223300",
|
||||
//"rust_analyzer.inlayHints.background.typeHints": "#11223300",
|
||||
//"rust_analyzer.inlayHints.foreground": "#a0a0a0f0",
|
||||
//"rust_analyzer.inlayHints.foreground.chainingHints": "#a0a0a0f0",
|
||||
//"rust_analyzer.inlayHints.foreground.parameterHints": "#a0a0a0f0",
|
||||
//"rust_analyzer.inlayHints.foreground.typeHints": "#a0a0a0f0",
|
||||
//"rust_analyzer.syntaxTreeBorder": "#ffffff",
|
||||
//"sash.hoverBorder": "#11172000",
|
||||
//"scm.providerBorder": "#454545",
|
||||
//"searchEditor.findMatchBackground": "#54bef23f",
|
||||
//"searchEditor.findMatchBorder": "#cacde20b",
|
||||
//"searchEditor.textInputBorder": "#111720",
|
||||
//"settings.checkboxBorder": "#cacde210",
|
||||
//"settings.dropdownBorder": "#cacde210",
|
||||
//"settings.dropdownListBorder": "#54bef2",
|
||||
//"settings.focusedRowBackground": "#80808024",
|
||||
//"settings.focusedRowBorder": "#ffffff1f",
|
||||
//"settings.numberInputBorder": "#111720",
|
||||
//"settings.rowHoverBackground": "#80808012",
|
||||
//"settings.textInputBorder": "#111720",
|
||||
//"sideBar.dropBackground": "#53595d80",
|
||||
//"sideBarSectionHeader.foreground": "#7e8995",
|
||||
//"statusBar.debuggingBorder": "#111720",
|
||||
//"statusBar.noFolderBorder": "#111720",
|
||||
//"statusBar.noFolderForeground": "#7e8995",
|
||||
//"statusBarItem.activeBackground": "#ffffff2e",
|
||||
//"statusBarItem.errorBackground": "#c72e0f",
|
||||
//"statusBarItem.errorForeground": "#ffffff",
|
||||
//"statusBarItem.prominentBackground": "#00000080",
|
||||
//"statusBarItem.prominentHoverBackground": "#0000004d",
|
||||
//"statusBarItem.warningBackground": "#d98d0040",
|
||||
//"statusBarItem.warningForeground": "#ffffff",
|
||||
//"symbolIcon.arrayForeground": "#cacde2",
|
||||
//"symbolIcon.booleanForeground": "#cacde2",
|
||||
//"symbolIcon.classForeground": "#ee9d28",
|
||||
//"symbolIcon.colorForeground": "#cacde2",
|
||||
//"symbolIcon.constantForeground": "#cacde2",
|
||||
//"symbolIcon.constructorForeground": "#b180d7",
|
||||
//"symbolIcon.enumeratorForeground": "#ee9d28",
|
||||
//"symbolIcon.enumeratorMemberForeground": "#75beff",
|
||||
//"symbolIcon.eventForeground": "#ee9d28",
|
||||
//"symbolIcon.fieldForeground": "#75beff",
|
||||
//"symbolIcon.fileForeground": "#cacde2",
|
||||
//"symbolIcon.folderForeground": "#cacde2",
|
||||
//"symbolIcon.functionForeground": "#b180d7",
|
||||
//"symbolIcon.interfaceForeground": "#75beff",
|
||||
//"symbolIcon.keyForeground": "#cacde2",
|
||||
//"symbolIcon.keywordForeground": "#cacde2",
|
||||
//"symbolIcon.methodForeground": "#b180d7",
|
||||
//"symbolIcon.moduleForeground": "#cacde2",
|
||||
//"symbolIcon.namespaceForeground": "#cacde2",
|
||||
//"symbolIcon.nullForeground": "#cacde2",
|
||||
//"symbolIcon.numberForeground": "#cacde2",
|
||||
//"symbolIcon.objectForeground": "#cacde2",
|
||||
//"symbolIcon.operatorForeground": "#cacde2",
|
||||
//"symbolIcon.packageForeground": "#cacde2",
|
||||
//"symbolIcon.propertyForeground": "#cacde2",
|
||||
//"symbolIcon.referenceForeground": "#cacde2",
|
||||
//"symbolIcon.snippetForeground": "#cacde2",
|
||||
//"symbolIcon.stringForeground": "#cacde2",
|
||||
//"symbolIcon.structForeground": "#cacde2",
|
||||
//"symbolIcon.textForeground": "#cacde2",
|
||||
//"symbolIcon.typeParameterForeground": "#cacde2",
|
||||
//"symbolIcon.unitForeground": "#cacde2",
|
||||
//"symbolIcon.variableForeground": "#75beff",
|
||||
//"tab.activeBackground": "#111720",
|
||||
//"tab.inactiveModifiedBorder": "#7e899580",
|
||||
//"tab.lastPinnedBorder": "#585858",
|
||||
//"tab.unfocusedActiveBackground": "#111720",
|
||||
//"tab.unfocusedActiveModifiedBorder": "#7e899580",
|
||||
//"tab.unfocusedInactiveBackground": "#111720",
|
||||
//"tab.unfocusedInactiveForeground": "#7e899580",
|
||||
//"tab.unfocusedInactiveModifiedBorder": "#7e899540",
|
||||
//"terminal.border": "#111720",
|
||||
//"terminal.dropBackground": "#53595d80",
|
||||
//"terminal.foreground": "#cccccc",
|
||||
//"terminal.selectionBackground": "#ffffff40",
|
||||
//"terminal.tab.activeBorder": "#d19a66",
|
||||
//"testing.iconErrored": "#f14c4c",
|
||||
//"testing.iconFailed": "#f14c4c",
|
||||
//"testing.iconPassed": "#73c991",
|
||||
//"testing.iconQueued": "#cca700",
|
||||
//"testing.iconSkipped": "#848484",
|
||||
//"testing.iconUnset": "#848484",
|
||||
//"testing.message.error.decorationForeground": "#fb718540",
|
||||
//"testing.message.error.lineBackground": "#ff000033",
|
||||
//"testing.message.info.decorationForeground": "#cacde280",
|
||||
//"testing.peekBorder": "#fb718540",
|
||||
//"testing.peekHeaderBackground": "#fb718506",
|
||||
//"testing.runAction": "#73c991",
|
||||
//"textBlockQuote.background": "#7f7f7f1a",
|
||||
//"textBlockQuote.border": "#007acc80",
|
||||
//"textSeparator.foreground": "#ffffff2e",
|
||||
//"toolbar.activeBackground": "#00131d50",
|
||||
//"tree.indentGuidesStroke": "#585858",
|
||||
//"tree.tableColumnsBorder": "#cccccc20",
|
||||
//"welcomePage.progress.background": "#00111a50",
|
||||
//"welcomePage.progress.foreground": "#54bef2",
|
||||
//"welcomePage.tileBackground": "#111720",
|
||||
//"welcomePage.tileHoverBackground": "#141c26",
|
||||
//"welcomePage.tileShadow.": "#00111a10",
|
||||
//"activityBar.activeBackground": null,
|
||||
//"activityBar.activeFocusBorder": null,
|
||||
//"contrastActiveBorder": null,
|
||||
//"contrastBorder": null,
|
||||
//"debugToolBar.border": null,
|
||||
//"diffEditor.border": null,
|
||||
//"diffEditor.insertedTextBorder": null,
|
||||
//"diffEditor.removedTextBorder": null,
|
||||
//"dropdown.listBackground": null,
|
||||
//"editor.findRangeHighlightBorder": null,
|
||||
//"editor.rangeHighlightBorder": null,
|
||||
//"editor.selectionForeground": null,
|
||||
//"editor.selectionHighlightBorder": null,
|
||||
//"editor.snippetFinalTabstopHighlightBackground": null,
|
||||
//"editor.snippetTabstopHighlightBorder": null,
|
||||
//"editor.symbolHighlightBorder": null,
|
||||
//"editor.wordHighlightBorder": null,
|
||||
//"editor.wordHighlightStrongBorder": null,
|
||||
//"editorCursor.background": null,
|
||||
//"editorError.background": null,
|
||||
//"editorError.border": null,
|
||||
//"editorGhostText.border": null,
|
||||
//"editorGroup.background": null,
|
||||
//"editorGroup.emptyBackground": null,
|
||||
//"editorGroup.focusedEmptyBorder": null,
|
||||
//"editorGroupHeader.border": null,
|
||||
//"editorGroupHeader.tabsBorder": null,
|
||||
//"editorHint.border": null,
|
||||
//"editorInfo.background": null,
|
||||
//"editorInfo.border": null,
|
||||
//"editorUnnecessaryCode.border": null,
|
||||
//"editorWarning.background": null,
|
||||
//"editorWarning.border": null,
|
||||
//"inputValidation.errorForeground": null,
|
||||
//"inputValidation.infoForeground": null,
|
||||
//"inputValidation.warningForeground": null,
|
||||
//"list.inactiveFocusBackground": null,
|
||||
//"list.inactiveFocusOutline": null,
|
||||
//"list.inactiveSelectionIconForeground": null,
|
||||
//"menu.border": null,
|
||||
//"menu.selectionBorder": null,
|
||||
//"menubar.selectionBorder": null,
|
||||
//"merge.border": null,
|
||||
//"minimap.background": null,
|
||||
//"notebook.cellHoverBackground": null,
|
||||
//"notebook.focusedCellBackground": null,
|
||||
//"notebook.inactiveSelectedCellBorder": null,
|
||||
//"notebook.outputContainerBackgroundColor": null,
|
||||
//"notificationCenter.border": null,
|
||||
//"notificationToast.border": null,
|
||||
//"panelInput.border": null,
|
||||
//"panelSectionHeader.border": null,
|
||||
//"panelSectionHeader.foreground": null,
|
||||
//"peekViewEditor.matchHighlightBorder": null,
|
||||
//"quickInput.list.focusBackground": null,
|
||||
//"tab.activeBorderTop": null,
|
||||
//"tab.hoverBackground": null,
|
||||
//"tab.hoverBorder": null,
|
||||
//"tab.hoverForeground": null,
|
||||
//"tab.unfocusedActiveBorderTop": null,
|
||||
//"tab.unfocusedHoverBackground": null,
|
||||
//"tab.unfocusedHoverBorder": null,
|
||||
//"tab.unfocusedHoverForeground": null,
|
||||
//"terminal.background": null,
|
||||
//"testing.message.info.lineBackground": null,
|
||||
//"toolbar.hoverOutline": null,
|
||||
//"walkThrough.embeddedEditorBackground": null,
|
||||
//"welcomePage.background": null,
|
||||
//"welcomePage.buttonBackground": null,
|
||||
//"welcomePage.buttonHoverBackground": null,
|
||||
//"window.activeBorder": null,
|
||||
//"window.inactiveBorder": null
|
||||
};
|
||||
//# sourceMappingURL=ocean.js.map
|
||||
@@ -0,0 +1,146 @@
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.default = {
|
||||
'activityBar.background': '#282c34',
|
||||
'activityBar.foreground': '#d7dae0',
|
||||
'activityBarBadge.background': '#4d78cc',
|
||||
'activityBarBadge.foreground': '#f8fafd',
|
||||
'badge.background': '#282c34',
|
||||
'button.background': '#404754',
|
||||
'button.secondaryBackground': '#30333d',
|
||||
'button.secondaryForeground': '#c0bdbd',
|
||||
'checkbox.border': '#404754',
|
||||
'debugToolBar.background': '#21252b',
|
||||
descriptionForeground: '#abb2bf',
|
||||
'diffEditor.insertedTextBackground': '#00809b33',
|
||||
'dropdown.background': '#21252b',
|
||||
'dropdown.border': '#21252b',
|
||||
'editor.background': '#282c34',
|
||||
'editor.findMatchBackground': '#42557b',
|
||||
'editor.findMatchBorder': '#457dff',
|
||||
'editor.findMatchHighlightBackground': '#6199ff2f',
|
||||
'editor.foreground': '#abb2bf',
|
||||
'editorBracketHighlight.foreground1': '#d19a66',
|
||||
'editorBracketHighlight.foreground2': '#c678dd',
|
||||
'editorBracketHighlight.foreground3': '#56b6c2',
|
||||
'editorHoverWidget.highlightForeground': '#61afef',
|
||||
'editorInlayHint.foreground': '#abb2bf',
|
||||
'editorInlayHint.background': '#2c313c',
|
||||
'editor.lineHighlightBackground': '#2c313c',
|
||||
'editorLineNumber.activeForeground': '#abb2bf',
|
||||
'editorGutter.addedBackground': '#109868',
|
||||
'editorGutter.deletedBackground': '#9A353D',
|
||||
'editorGutter.modifiedBackground': '#948B60',
|
||||
'editorOverviewRuler.addedBackground': '#109868',
|
||||
'editorOverviewRuler.deletedBackground': '#9A353D',
|
||||
'editorOverviewRuler.modifiedBackground': '#948B60',
|
||||
'editor.selectionBackground': '#67769660',
|
||||
'editor.selectionHighlightBackground': '#ffffff10',
|
||||
'editor.selectionHighlightBorder': '#dddddd',
|
||||
'editor.wordHighlightBackground': '#d2e0ff2f',
|
||||
'editor.wordHighlightBorder': '#7f848e',
|
||||
'editor.wordHighlightStrongBackground': '#abb2bf26',
|
||||
'editor.wordHighlightStrongBorder': '#7f848e',
|
||||
'editorBracketMatch.background': '#515a6b',
|
||||
'editorBracketMatch.border': '#515a6b',
|
||||
'editorCursor.background': '#ffffffc9',
|
||||
'editorCursor.foreground': '#528bff',
|
||||
'editorError.foreground': '#c24038',
|
||||
'editorGroup.background': '#181a1f',
|
||||
'editorGroup.border': '#181a1f',
|
||||
'editorGroupHeader.tabsBackground': '#21252b',
|
||||
'editorHoverWidget.background': '#21252b',
|
||||
'editorHoverWidget.border': '#181a1f',
|
||||
'editorIndentGuide.activeBackground': '#c8c8c859',
|
||||
'editorIndentGuide.background': '#3b4048',
|
||||
'editorLineNumber.foreground': '#495162',
|
||||
'editorMarkerNavigation.background': '#21252b',
|
||||
'editorRuler.foreground': '#abb2bf26',
|
||||
'editorSuggestWidget.background': '#21252b',
|
||||
'editorSuggestWidget.border': '#181a1f',
|
||||
'editorSuggestWidget.selectedBackground': '#2c313a',
|
||||
'editorWarning.foreground': '#d19a66',
|
||||
'editorWhitespace.foreground': '#ffffff1d',
|
||||
'editorWidget.background': '#21252b',
|
||||
focusBorder: '#3e4452',
|
||||
'gitDecoration.ignoredResourceForeground': '#636b78',
|
||||
'input.background': '#1d1f23',
|
||||
'input.foreground': '#abb2bf',
|
||||
'list.activeSelectionBackground': '#2c313a',
|
||||
'list.activeSelectionForeground': '#d7dae0',
|
||||
'list.focusBackground': '#323842',
|
||||
'list.focusForeground': '#f0f0f0',
|
||||
'list.highlightForeground': '#c5c5c5',
|
||||
'list.hoverBackground': '#2c313a',
|
||||
'list.hoverForeground': '#abb2bf',
|
||||
'list.inactiveSelectionBackground': '#323842',
|
||||
'list.inactiveSelectionForeground': '#d7dae0',
|
||||
'list.warningForeground': '#d19a66',
|
||||
'menu.foreground': '#abb2bf',
|
||||
'menu.separatorBackground': '#343a45',
|
||||
'minimapGutter.addedBackground': '#109868',
|
||||
'minimapGutter.deletedBackground': '#9A353D',
|
||||
'minimapGutter.modifiedBackground': '#948B60',
|
||||
'panel.border': '#3e4452',
|
||||
'panelSectionHeader.background': '#21252b',
|
||||
'peekViewEditor.background': '#1b1d23',
|
||||
'peekViewEditor.matchHighlightBackground': '#29244b',
|
||||
'peekViewResult.background': '#22262b',
|
||||
'scrollbar.shadow': '#23252c',
|
||||
'scrollbarSlider.activeBackground': '#747d9180',
|
||||
'scrollbarSlider.background': '#4e566660',
|
||||
'scrollbarSlider.hoverBackground': '#5a637580',
|
||||
'settings.focusedRowBackground': '#282c34',
|
||||
'settings.headerForeground': '#fff',
|
||||
'sideBar.background': '#21252b',
|
||||
'sideBar.foreground': '#abb2bf',
|
||||
'sideBarSectionHeader.background': '#282c34',
|
||||
'sideBarSectionHeader.foreground': '#abb2bf',
|
||||
'statusBar.background': '#21252b',
|
||||
'statusBar.debuggingBackground': '#cc6633',
|
||||
'statusBar.debuggingBorder': '#ff000000',
|
||||
'statusBar.debuggingForeground': '#ffffff',
|
||||
'statusBar.foreground': '#9da5b4',
|
||||
'statusBar.noFolderBackground': '#21252b',
|
||||
'statusBarItem.remoteBackground': '#4d78cc',
|
||||
'statusBarItem.remoteForeground': '#f8fafd',
|
||||
'tab.activeBackground': '#282c34',
|
||||
'tab.activeBorder': '#b4b4b4',
|
||||
'tab.activeForeground': '#dcdcdc',
|
||||
'tab.border': '#181a1f',
|
||||
'tab.hoverBackground': '#323842',
|
||||
'tab.inactiveBackground': '#21252b',
|
||||
'tab.unfocusedHoverBackground': '#323842',
|
||||
'terminal.ansiBlack': '#3f4451',
|
||||
'terminal.ansiBlue': '#4aa5f0',
|
||||
'terminal.ansiBrightBlack': '#4f5666',
|
||||
'terminal.ansiBrightBlue': '#4dc4ff',
|
||||
'terminal.ansiBrightCyan': '#4cd1e0',
|
||||
'terminal.ansiBrightGreen': '#a5e075',
|
||||
'terminal.ansiBrightMagenta': '#de73ff',
|
||||
'terminal.ansiBrightRed': '#ff616e',
|
||||
'terminal.ansiBrightWhite': '#e6e6e6',
|
||||
'terminal.ansiBrightYellow': '#f0a45d',
|
||||
'terminal.ansiCyan': '#42b3c2',
|
||||
'terminal.ansiGreen': '#8cc265',
|
||||
'terminal.ansiMagenta': '#c162de',
|
||||
'terminal.ansiRed': '#e05561',
|
||||
'terminal.ansiWhite': '#d7dae0',
|
||||
'terminal.ansiYellow': '#d18f52',
|
||||
'terminal.background': '#282c34',
|
||||
'terminal.border': '#3e4452',
|
||||
'terminal.foreground': '#abb2bf',
|
||||
'terminal.selectionBackground': '#abb2bf30',
|
||||
'textBlockQuote.background': '#2e3440',
|
||||
'textBlockQuote.border': '#4b5362',
|
||||
'textLink.foreground': '#61afef',
|
||||
'textPreformat.foreground': '#d19a66',
|
||||
'titleBar.activeBackground': '#282c34',
|
||||
'titleBar.activeForeground': '#9da5b4',
|
||||
'titleBar.inactiveBackground': '#21252b',
|
||||
'titleBar.inactiveForeground': '#6b717d',
|
||||
'tree.indentGuidesStroke': '#ffffff1d',
|
||||
'walkThrough.embeddedEditorBackground': '#2e3440',
|
||||
'welcomePage.buttonHoverBackground': '#404754',
|
||||
};
|
||||
//# sourceMappingURL=oneDarkPro.js.map
|
||||
@@ -0,0 +1,146 @@
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.default = {
|
||||
'activityBar.background': '#23272e',
|
||||
'activityBar.foreground': '#d7dae0',
|
||||
'activityBarBadge.background': '#4d78cc',
|
||||
'activityBarBadge.foreground': '#f8fafd',
|
||||
'badge.background': '#23272e',
|
||||
'button.background': '#404754',
|
||||
'button.secondaryBackground': '#30333d',
|
||||
'button.secondaryForeground': '#c0bdbd',
|
||||
'checkbox.border': '#404754',
|
||||
'debugToolBar.background': '#1e2227',
|
||||
descriptionForeground: '#abb2bf',
|
||||
'diffEditor.insertedTextBackground': '#00809b33',
|
||||
'dropdown.background': '#1e2227',
|
||||
'dropdown.border': '#1e2227',
|
||||
'editor.background': '#23272e',
|
||||
'editor.findMatchBackground': '#42557b',
|
||||
'editor.findMatchBorder': '#457dff',
|
||||
'editor.findMatchHighlightBackground': '#6199ff2f',
|
||||
'editor.foreground': '#abb2bf',
|
||||
'editorBracketHighlight.foreground1': '#d19a66',
|
||||
'editorBracketHighlight.foreground2': '#c678dd',
|
||||
'editorBracketHighlight.foreground3': '#56b6c2',
|
||||
'editorHoverWidget.highlightForeground': '#61afef',
|
||||
'editorInlayHint.foreground': '#abb2bf',
|
||||
'editorInlayHint.background': '#2c313c',
|
||||
'editor.lineHighlightBackground': '#2c313c',
|
||||
'editorLineNumber.activeForeground': '#abb2bf',
|
||||
'editorGutter.addedBackground': '#109868',
|
||||
'editorGutter.deletedBackground': '#9A353D',
|
||||
'editorGutter.modifiedBackground': '#948B60',
|
||||
'editorOverviewRuler.addedBackground': '#109868',
|
||||
'editorOverviewRuler.deletedBackground': '#9A353D',
|
||||
'editorOverviewRuler.modifiedBackground': '#948B60',
|
||||
'editor.selectionBackground': '#67769660',
|
||||
'editor.selectionHighlightBackground': '#ffffff10',
|
||||
'editor.selectionHighlightBorder': '#dddddd',
|
||||
'editor.wordHighlightBackground': '#d2e0ff2f',
|
||||
'editor.wordHighlightBorder': '#7f848e',
|
||||
'editor.wordHighlightStrongBackground': '#abb2bf26',
|
||||
'editor.wordHighlightStrongBorder': '#7f848e',
|
||||
'editorBracketMatch.background': '#515a6b',
|
||||
'editorBracketMatch.border': '#515a6b',
|
||||
'editorCursor.background': '#ffffffc9',
|
||||
'editorCursor.foreground': '#528bff',
|
||||
'editorError.foreground': '#c24038',
|
||||
'editorGroup.background': '#181a1f',
|
||||
'editorGroup.border': '#181a1f',
|
||||
'editorGroupHeader.tabsBackground': '#1e2227',
|
||||
'editorHoverWidget.background': '#1e2227',
|
||||
'editorHoverWidget.border': '#181a1f',
|
||||
'editorIndentGuide.activeBackground': '#c8c8c859',
|
||||
'editorIndentGuide.background': '#3b4048',
|
||||
'editorLineNumber.foreground': '#495162',
|
||||
'editorMarkerNavigation.background': '#1e2227',
|
||||
'editorRuler.foreground': '#abb2bf26',
|
||||
'editorSuggestWidget.background': '#1e2227',
|
||||
'editorSuggestWidget.border': '#181a1f',
|
||||
'editorSuggestWidget.selectedBackground': '#2c313a',
|
||||
'editorWarning.foreground': '#d19a66',
|
||||
'editorWhitespace.foreground': '#ffffff1d',
|
||||
'editorWidget.background': '#1e2227',
|
||||
focusBorder: '#3e4452',
|
||||
'gitDecoration.ignoredResourceForeground': '#636b78',
|
||||
'input.background': '#1d1f23',
|
||||
'input.foreground': '#abb2bf',
|
||||
'list.activeSelectionBackground': '#2c313a',
|
||||
'list.activeSelectionForeground': '#d7dae0',
|
||||
'list.focusBackground': '#323842',
|
||||
'list.focusForeground': '#f0f0f0',
|
||||
'list.highlightForeground': '#c5c5c5',
|
||||
'list.hoverBackground': '#2c313a',
|
||||
'list.hoverForeground': '#abb2bf',
|
||||
'list.inactiveSelectionBackground': '#323842',
|
||||
'list.inactiveSelectionForeground': '#d7dae0',
|
||||
'list.warningForeground': '#d19a66',
|
||||
'menu.foreground': '#abb2bf',
|
||||
'menu.separatorBackground': '#343a45',
|
||||
'minimapGutter.addedBackground': '#109868',
|
||||
'minimapGutter.deletedBackground': '#9A353D',
|
||||
'minimapGutter.modifiedBackground': '#948B60',
|
||||
'panel.border': '#3e4452',
|
||||
'panelSectionHeader.background': '#1e2227',
|
||||
'peekViewEditor.background': '#1b1d23',
|
||||
'peekViewEditor.matchHighlightBackground': '#29244b',
|
||||
'peekViewResult.background': '#22262b',
|
||||
'scrollbar.shadow': '#23252c',
|
||||
'scrollbarSlider.activeBackground': '#747d9180',
|
||||
'scrollbarSlider.background': '#4e566660',
|
||||
'scrollbarSlider.hoverBackground': '#5a637580',
|
||||
'settings.focusedRowBackground': '#23272e',
|
||||
'settings.headerForeground': '#fff',
|
||||
'sideBar.background': '#1e2227',
|
||||
'sideBar.foreground': '#abb2bf',
|
||||
'sideBarSectionHeader.background': '#23272e',
|
||||
'sideBarSectionHeader.foreground': '#abb2bf',
|
||||
'statusBar.background': '#1e2227',
|
||||
'statusBar.debuggingBackground': '#cc6633',
|
||||
'statusBar.debuggingBorder': '#ff000000',
|
||||
'statusBar.debuggingForeground': '#ffffff',
|
||||
'statusBar.foreground': '#9da5b4',
|
||||
'statusBar.noFolderBackground': '#1e2227',
|
||||
'statusBarItem.remoteBackground': '#4d78cc',
|
||||
'statusBarItem.remoteForeground': '#f8fafd',
|
||||
'tab.activeBackground': '#23272e',
|
||||
'tab.activeBorder': '#b4b4b4',
|
||||
'tab.activeForeground': '#dcdcdc',
|
||||
'tab.border': '#181a1f',
|
||||
'tab.hoverBackground': '#323842',
|
||||
'tab.inactiveBackground': '#1e2227',
|
||||
'tab.unfocusedHoverBackground': '#323842',
|
||||
'terminal.ansiBlack': '#3f4451',
|
||||
'terminal.ansiBlue': '#4aa5f0',
|
||||
'terminal.ansiBrightBlack': '#4f5666',
|
||||
'terminal.ansiBrightBlue': '#4dc4ff',
|
||||
'terminal.ansiBrightCyan': '#4cd1e0',
|
||||
'terminal.ansiBrightGreen': '#a5e075',
|
||||
'terminal.ansiBrightMagenta': '#de73ff',
|
||||
'terminal.ansiBrightRed': '#ff616e',
|
||||
'terminal.ansiBrightWhite': '#e6e6e6',
|
||||
'terminal.ansiBrightYellow': '#f0a45d',
|
||||
'terminal.ansiCyan': '#42b3c2',
|
||||
'terminal.ansiGreen': '#8cc265',
|
||||
'terminal.ansiMagenta': '#c162de',
|
||||
'terminal.ansiRed': '#e05561',
|
||||
'terminal.ansiWhite': '#d7dae0',
|
||||
'terminal.ansiYellow': '#d18f52',
|
||||
'terminal.background': '#23272e',
|
||||
'terminal.border': '#3e4452',
|
||||
'terminal.foreground': '#abb2bf',
|
||||
'terminal.selectionBackground': '#abb2bf30',
|
||||
'textBlockQuote.background': '#2e3440',
|
||||
'textBlockQuote.border': '#4b5362',
|
||||
'textLink.foreground': '#61afef',
|
||||
'textPreformat.foreground': '#d19a66',
|
||||
'titleBar.activeBackground': '#23272e',
|
||||
'titleBar.activeForeground': '#9da5b4',
|
||||
'titleBar.inactiveBackground': '#1e2227',
|
||||
'titleBar.inactiveForeground': '#6b717d',
|
||||
'tree.indentGuidesStroke': '#ffffff1d',
|
||||
'walkThrough.embeddedEditorBackground': '#2e3440',
|
||||
'welcomePage.buttonHoverBackground': '#404754',
|
||||
};
|
||||
//# sourceMappingURL=oneDarkProDarker.js.map
|
||||
@@ -0,0 +1,171 @@
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.default = {
|
||||
'activityBar.background': '#282c34',
|
||||
'activityBar.foreground': '#c7ccd6',
|
||||
'activityBarBadge.background': '#21252b',
|
||||
'activityBarBadge.foreground': '#f8fafd',
|
||||
'badge.background': '#21252b',
|
||||
'breadcrumbPicker.background': '#21252b',
|
||||
'button.background': '#404754',
|
||||
'button.secondaryBackground': '#30333d',
|
||||
'button.secondaryForeground': '#c0bdbd',
|
||||
'checkbox.border': '#404754',
|
||||
'debugToolBar.background': '#21252b',
|
||||
descriptionForeground: '#abb2bf',
|
||||
'diffEditor.insertedTextBackground': '#00809b33',
|
||||
'dropdown.background': '#21252b',
|
||||
'dropdown.border': '#21252b',
|
||||
'dropdown.listBackground': '#21252b',
|
||||
'editor.background': '#282c34',
|
||||
'editor.findMatchBackground': '#42557b',
|
||||
'editor.findMatchBorder': '#457dff',
|
||||
'editor.findMatchHighlightBackground': '#6199ff2f',
|
||||
'editor.foreground': '#abb2bf',
|
||||
'editorBracketHighlight.foreground1': '#d19a66',
|
||||
'editorBracketHighlight.foreground2': '#c678dd',
|
||||
'editorBracketHighlight.foreground3': '#56b6c2',
|
||||
'editorHoverWidget.highlightForeground': '#61afef',
|
||||
'editorInlayHint.foreground': '#abb2bf',
|
||||
'editorInlayHint.background': '#2c313c',
|
||||
'editor.lineHighlightBackground': '#2c313c',
|
||||
'editorLineNumber.activeForeground': '#abb2bf',
|
||||
'editorGutter.addedBackground': '#109868',
|
||||
'editorGutter.deletedBackground': '#9A353D',
|
||||
'editorGutter.modifiedBackground': '#948B60',
|
||||
'editorOverviewRuler.addedBackground': '#109868',
|
||||
'editorOverviewRuler.deletedBackground': '#9A353D',
|
||||
'editorOverviewRuler.modifiedBackground': '#948B60',
|
||||
'editor.selectionBackground': '#67769660',
|
||||
'editor.selectionHighlightBackground': '#404859',
|
||||
'editor.selectionHighlightBorder': '#404859',
|
||||
'editor.wordHighlightBackground': '#d2e0ff2f',
|
||||
'editor.wordHighlightBorder': '#7f848e',
|
||||
'editor.wordHighlightStrongBackground': '#abb2bf26',
|
||||
'editor.wordHighlightStrongBorder': '#7f848e',
|
||||
'editorBracketMatch.background': '#515a6b',
|
||||
'editorBracketMatch.border': '#515a6b',
|
||||
'editorCursor.background': '#ffffffc9',
|
||||
'editorCursor.foreground': '#f0f0f0',
|
||||
'editorError.foreground': '#c24038',
|
||||
'editorGroup.background': '#181a1f',
|
||||
'editorGroup.border': '#23252c',
|
||||
'editorGroup.emptyBackground': '#282c34',
|
||||
'editorGroupHeader.tabsBackground': '#282c34',
|
||||
'editorHoverWidget.background': '#21252b',
|
||||
'editorHoverWidget.border': '#181a1f',
|
||||
'editorIndentGuide.activeBackground': '#495169',
|
||||
'editorIndentGuide.background': '#343a45',
|
||||
'editorLineNumber.foreground': '#495162',
|
||||
'editorLink.activeForeground': '#f0f0f0',
|
||||
'editorMarkerNavigation.background': '#21252b',
|
||||
'editorOverviewRuler.border': '#282c34',
|
||||
'editorRuler.foreground': '#abb2bf26',
|
||||
'editorSuggestWidget.background': '#21252b',
|
||||
'editorSuggestWidget.border': '#181a1f',
|
||||
'editorSuggestWidget.selectedBackground': '#2c313a',
|
||||
'editorWarning.foreground': '#d19a66',
|
||||
'editorWhitespace.foreground': '#ffffff1d',
|
||||
'editorWidget.background': '#21252b',
|
||||
focusBorder: '#282c34',
|
||||
'gitDecoration.ignoredResourceForeground': '#636b78',
|
||||
'input.background': '#21252b',
|
||||
'input.foreground': '#abb2bf',
|
||||
'list.activeSelectionBackground': '#2c313a',
|
||||
'list.activeSelectionForeground': '#d7dae0',
|
||||
'list.focusBackground': '#323842',
|
||||
'list.focusForeground': '#f0f0f0',
|
||||
'list.highlightForeground': '#c5c5c5',
|
||||
'list.hoverBackground': '#2c313a',
|
||||
'list.hoverForeground': '#abb2bf',
|
||||
'list.inactiveSelectionBackground': '#323842',
|
||||
'list.inactiveSelectionForeground': '#d7dae0',
|
||||
'list.warningForeground': '#d19a66',
|
||||
'listFilterWidget.background': '#21252b',
|
||||
'menu.foreground': '#abb2bf',
|
||||
'menu.separatorBackground': '#343a45',
|
||||
'menubar.selectionBackground': '#323842',
|
||||
'menubar.selectionForeground': '#f0f0f0',
|
||||
'minimapGutter.addedBackground': '#109868',
|
||||
'minimapGutter.deletedBackground': '#9A353D',
|
||||
'minimapGutter.modifiedBackground': '#948B60',
|
||||
'notificationLink.foreground': '#f0f0f0',
|
||||
'notifications.foreground': '#969aa4',
|
||||
'panel.background': '#282c34',
|
||||
'panel.border': '#3e4452',
|
||||
'panelInput.border': '#23252c',
|
||||
'panelSection.dropBackground': '#323842a8',
|
||||
'panelSectionHeader.background': '#21252b',
|
||||
'panelTitle.activeBorder': '#f0f0f0',
|
||||
'panelTitle.activeForeground': '#f0f0f0',
|
||||
'panelTitle.inactiveForeground': '#abb2bf',
|
||||
'peekViewEditor.background': '#1b1d23',
|
||||
'peekViewEditor.matchHighlightBackground': '#29244b',
|
||||
'peekViewResult.background': '#22262b',
|
||||
'progressBar.background': '#f0f0f0',
|
||||
'scrollbar.shadow': '#282c34',
|
||||
'scrollbarSlider.activeBackground': '#747d9180',
|
||||
'scrollbarSlider.background': '#4e566660',
|
||||
'scrollbarSlider.hoverBackground': '#5a637580',
|
||||
'settings.focusedRowBackground': '#282c34',
|
||||
'settings.headerForeground': '#fff',
|
||||
'sideBar.background': '#282c34',
|
||||
'sideBar.border': '#23252c',
|
||||
'sideBar.dropBackground': '#323842a8',
|
||||
'sideBar.foreground': '#969aa4',
|
||||
'sideBarSectionHeader.background': '#282c34',
|
||||
'sideBarSectionHeader.foreground': '#abb2bf',
|
||||
'sideBarTitle.foreground': '#abb2bf',
|
||||
'statusBar.background': '#282c34',
|
||||
'statusBar.border': '#282c34',
|
||||
'statusBar.debuggingBackground': '#cc6633',
|
||||
'statusBar.debuggingBorder': '#ff000000',
|
||||
'statusBar.debuggingForeground': '#fff',
|
||||
'statusBar.foreground': '#969aa4',
|
||||
'statusBar.noFolderBackground': '#282c34',
|
||||
'statusBarItem.remoteBackground': '#ff000000',
|
||||
'statusBarItem.remoteForeground': '#fff',
|
||||
'statusBarItem.warningBackground': '#282c34',
|
||||
'statusBarItem.warningForeground': '#b78853',
|
||||
'tab.activeBackground': '#282c34',
|
||||
'tab.activeBorder': '#b4b4b4',
|
||||
'tab.activeForeground': '#dcdcdc',
|
||||
'tab.border': '#282c34',
|
||||
'tab.hoverBackground': '#323842',
|
||||
'tab.inactiveBackground': '#282c34',
|
||||
'tab.unfocusedHoverBackground': '#323842',
|
||||
'terminal.ansiBlack': '#3f4451',
|
||||
'terminal.ansiBlue': '#4aa5f0',
|
||||
'terminal.ansiBrightBlack': '#4f5666',
|
||||
'terminal.ansiBrightBlue': '#4dc4ff',
|
||||
'terminal.ansiBrightCyan': '#4cd1e0',
|
||||
'terminal.ansiBrightGreen': '#a5e075',
|
||||
'terminal.ansiBrightMagenta': '#de73ff',
|
||||
'terminal.ansiBrightRed': '#ff616e',
|
||||
'terminal.ansiBrightWhite': '#e6e6e6',
|
||||
'terminal.ansiBrightYellow': '#f0a45d',
|
||||
'terminal.ansiCyan': '#42b3c2',
|
||||
'terminal.ansiGreen': '#8cc265',
|
||||
'terminal.ansiMagenta': '#c162de',
|
||||
'terminal.ansiRed': '#e05561',
|
||||
'terminal.ansiWhite': '#d7dae0',
|
||||
'terminal.ansiYellow': '#d18f52',
|
||||
'terminal.background': '#282c34',
|
||||
'terminal.border': '#3e4452',
|
||||
'terminal.foreground': '#abb2bf',
|
||||
'terminal.selectionBackground': '#abb2bf30',
|
||||
'textLink.activeForeground': '#f0f0f0',
|
||||
'textBlockQuote.background': '#2e3440',
|
||||
'textBlockQuote.border': '#4b5362',
|
||||
'textLink.foreground': '#f0f0f0',
|
||||
'textPreformat.foreground': '#d19a66',
|
||||
'titleBar.activeBackground': '#282c34',
|
||||
'titleBar.activeForeground': '#9da5b4',
|
||||
'titleBar.inactiveBackground': '#21252b',
|
||||
'titleBar.inactiveForeground': '#6b717d',
|
||||
'tree.indentGuidesStroke': '#343a45',
|
||||
'widget.shadow': '#23252c',
|
||||
'walkThrough.embeddedEditorBackground': '#2e3440',
|
||||
'welcomePage.buttonHoverBackground': '#404754',
|
||||
};
|
||||
//# sourceMappingURL=oneDarkProFlat.js.map
|
||||
@@ -0,0 +1,146 @@
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.default = {
|
||||
'activityBar.background': '#21252b',
|
||||
'activityBar.foreground': '#d7dae0',
|
||||
'activityBarBadge.background': '#4d78cc',
|
||||
'activityBarBadge.foreground': '#f8fafd',
|
||||
'badge.background': '#282c34',
|
||||
'button.background': '#404754',
|
||||
'button.secondaryBackground': '#30333d',
|
||||
'button.secondaryForeground': '#c0bdbd',
|
||||
'checkbox.border': '#404754',
|
||||
'debugToolBar.background': '#21252b',
|
||||
descriptionForeground: '#abb2bf',
|
||||
'diffEditor.insertedTextBackground': '#00809b33',
|
||||
'dropdown.background': '#21252b',
|
||||
'dropdown.border': '#21252b',
|
||||
'editor.background': '#282c34',
|
||||
'editor.findMatchBackground': '#42557b',
|
||||
'editor.findMatchBorder': '#457dff',
|
||||
'editor.findMatchHighlightBackground': '#6199ff2f',
|
||||
'editor.foreground': '#abb2bf',
|
||||
'editorBracketHighlight.foreground1': '#d19a66',
|
||||
'editorBracketHighlight.foreground2': '#c678dd',
|
||||
'editorBracketHighlight.foreground3': '#56b6c2',
|
||||
'editorHoverWidget.highlightForeground': '#61afef',
|
||||
'editorInlayHint.foreground': '#abb2bf',
|
||||
'editorInlayHint.background': '#2c313c',
|
||||
'editor.lineHighlightBackground': '#2c313c',
|
||||
'editorLineNumber.activeForeground': '#abb2bf',
|
||||
'editorGutter.addedBackground': '#109868',
|
||||
'editorGutter.deletedBackground': '#9A353D',
|
||||
'editorGutter.modifiedBackground': '#948B60',
|
||||
'editorOverviewRuler.addedBackground': '#109868',
|
||||
'editorOverviewRuler.deletedBackground': '#9A353D',
|
||||
'editorOverviewRuler.modifiedBackground': '#948B60',
|
||||
'editor.selectionBackground': '#67769660',
|
||||
'editor.selectionHighlightBackground': '#ffffff10',
|
||||
'editor.selectionHighlightBorder': '#dddddd',
|
||||
'editor.wordHighlightBackground': '#d2e0ff2f',
|
||||
'editor.wordHighlightBorder': '#7f848e',
|
||||
'editor.wordHighlightStrongBackground': '#abb2bf26',
|
||||
'editor.wordHighlightStrongBorder': '#7f848e',
|
||||
'editorBracketMatch.background': '#515a6b',
|
||||
'editorBracketMatch.border': '#515a6b',
|
||||
'editorCursor.background': '#ffffffc9',
|
||||
'editorCursor.foreground': '#528bff',
|
||||
'editorError.foreground': '#c24038',
|
||||
'editorGroup.background': '#181a1f',
|
||||
'editorGroup.border': '#181a1f',
|
||||
'editorGroupHeader.tabsBackground': '#21252b',
|
||||
'editorHoverWidget.background': '#21252b',
|
||||
'editorHoverWidget.border': '#181a1f',
|
||||
'editorIndentGuide.activeBackground': '#c8c8c859',
|
||||
'editorIndentGuide.background': '#3b4048',
|
||||
'editorLineNumber.foreground': '#495162',
|
||||
'editorMarkerNavigation.background': '#21252b',
|
||||
'editorRuler.foreground': '#abb2bf26',
|
||||
'editorSuggestWidget.background': '#21252b',
|
||||
'editorSuggestWidget.border': '#181a1f',
|
||||
'editorSuggestWidget.selectedBackground': '#2c313a',
|
||||
'editorWarning.foreground': '#d19a66',
|
||||
'editorWhitespace.foreground': '#ffffff1d',
|
||||
'editorWidget.background': '#21252b',
|
||||
focusBorder: '#3e4452c3',
|
||||
'gitDecoration.ignoredResourceForeground': '#636b78',
|
||||
'input.background': '#1d1f23',
|
||||
'input.foreground': '#abb2bf',
|
||||
'list.activeSelectionBackground': '#2c313a',
|
||||
'list.activeSelectionForeground': '#d7dae0',
|
||||
'list.focusBackground': '#323842',
|
||||
'list.focusForeground': '#f0f0f0',
|
||||
'list.highlightForeground': '#c5c5c5',
|
||||
'list.hoverBackground': '#2c313a',
|
||||
'list.hoverForeground': '#abb2bf',
|
||||
'list.inactiveSelectionBackground': '#323842',
|
||||
'list.inactiveSelectionForeground': '#d7dae0',
|
||||
'list.warningForeground': '#d19a66',
|
||||
'menu.foreground': '#abb2bf',
|
||||
'menu.separatorBackground': '#343a45',
|
||||
'minimapGutter.addedBackground': '#109868',
|
||||
'minimapGutter.deletedBackground': '#9A353D',
|
||||
'minimapGutter.modifiedBackground': '#948B60',
|
||||
'panel.border': '#3e4452',
|
||||
'panelSectionHeader.background': '#21252b',
|
||||
'peekViewEditor.background': '#1b1d23',
|
||||
'peekViewEditor.matchHighlightBackground': '#29244b',
|
||||
'peekViewResult.background': '#22262b',
|
||||
'scrollbar.shadow': '#23252c',
|
||||
'scrollbarSlider.activeBackground': '#747d9180',
|
||||
'scrollbarSlider.background': '#4e566660',
|
||||
'scrollbarSlider.hoverBackground': '#5a637580',
|
||||
'settings.focusedRowBackground': '#282c34',
|
||||
'settings.headerForeground': '#fff',
|
||||
'sideBar.background': '#21252b',
|
||||
'sideBar.foreground': '#abb2bfc4',
|
||||
'sideBarSectionHeader.background': '#21252b',
|
||||
'sideBarSectionHeader.foreground': '#abb2bf',
|
||||
'statusBar.background': '#21252b',
|
||||
'statusBar.debuggingBackground': '#cc6633',
|
||||
'statusBar.debuggingBorder': '#ff000000',
|
||||
'statusBar.debuggingForeground': '#ffffff',
|
||||
'statusBar.foreground': '#9da5b4',
|
||||
'statusBar.noFolderBackground': '#21252b',
|
||||
'statusBarItem.remoteBackground': '#4d78cc',
|
||||
'statusBarItem.remoteForeground': '#f8fafd',
|
||||
'tab.activeBackground': '#282c34',
|
||||
'tab.activeBorder': '#b4b4b4',
|
||||
'tab.activeForeground': '#dcdcdc',
|
||||
'tab.border': '#181a1f',
|
||||
'tab.hoverBackground': '#323842',
|
||||
'tab.inactiveBackground': '#21252b',
|
||||
'tab.unfocusedHoverBackground': '#323842',
|
||||
'terminal.ansiBlack': '#3f4451',
|
||||
'terminal.ansiBlue': '#4aa5f0',
|
||||
'terminal.ansiBrightBlack': '#4f5666',
|
||||
'terminal.ansiBrightBlue': '#4dc4ff',
|
||||
'terminal.ansiBrightCyan': '#4cd1e0',
|
||||
'terminal.ansiBrightGreen': '#a5e075',
|
||||
'terminal.ansiBrightMagenta': '#de73ff',
|
||||
'terminal.ansiBrightRed': '#ff616e',
|
||||
'terminal.ansiBrightWhite': '#e6e6e6',
|
||||
'terminal.ansiBrightYellow': '#f0a45d',
|
||||
'terminal.ansiCyan': '#42b3c2',
|
||||
'terminal.ansiGreen': '#8cc265',
|
||||
'terminal.ansiMagenta': '#c162de',
|
||||
'terminal.ansiRed': '#e05561',
|
||||
'terminal.ansiWhite': '#d7dae0',
|
||||
'terminal.ansiYellow': '#d18f52',
|
||||
'terminal.background': '#282c34',
|
||||
'terminal.border': '#3e4452',
|
||||
'terminal.foreground': '#abb2bf',
|
||||
'terminal.selectionBackground': '#abb2bf30',
|
||||
'textBlockQuote.background': '#2e3440',
|
||||
'textBlockQuote.border': '#4b5362',
|
||||
'textLink.foreground': '#61afef',
|
||||
'textPreformat.foreground': '#d19a66',
|
||||
'titleBar.activeBackground': '#21252b',
|
||||
'titleBar.activeForeground': '#9da5b4',
|
||||
'titleBar.inactiveBackground': '#21252b',
|
||||
'titleBar.inactiveForeground': '#6b717d',
|
||||
'tree.indentGuidesStroke': '#ffffff1d',
|
||||
'walkThrough.embeddedEditorBackground': '#2e3440',
|
||||
'welcomePage.buttonHoverBackground': '#404754',
|
||||
};
|
||||
//# sourceMappingURL=oneDarkProMix.js.map
|
||||
@@ -0,0 +1,108 @@
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.default = {
|
||||
'activityBar.background': '#222223',
|
||||
'activityBar.border': '#222223',
|
||||
'activityBar.foreground': '#e6e6e6',
|
||||
'activityBarBadge.background': '#19f9d8',
|
||||
'activityBarBadge.foreground': '#242526',
|
||||
'badge.background': '#6fc1ff',
|
||||
'badge.foreground': '#676b79',
|
||||
'button.background': '#45a9f9',
|
||||
'button.foreground': '#ffffff',
|
||||
'button.hoverBackground': '#676b79',
|
||||
'diffEditor.insertedTextBackground': '#19f9d866',
|
||||
'diffEditor.removedTextBackground': '#ff4b8266',
|
||||
'editor.background': '#292a2b',
|
||||
'editor.findMatchBackground': '#b084eb90',
|
||||
'editor.findMatchHighlightBackground': '#ffb86c40',
|
||||
'editor.foreground': '#abb2bf',
|
||||
'editor.inactiveSelectionBackground': '#ffb86c40',
|
||||
'editor.lineHighlightBackground': '#31353a',
|
||||
'editor.selectionBackground': '#ffb86c40',
|
||||
'editor.selectionHighlightBackground': '#ffb86c40',
|
||||
'editor.wordHighlightBackground': '#ffcc9560',
|
||||
'editor.wordHighlightStrongBackground': '#ff9ac170',
|
||||
'editorBracketMatch.border': '#19f9d8',
|
||||
'editorCodeLens.foreground': '#ffb86c40',
|
||||
'editorCursor.foreground': '#ff4b82',
|
||||
'editorError.border': '#ff4b82',
|
||||
'editorError.foreground': '#ff4b82',
|
||||
'editorGutter.addedBackground': '#19f9d8',
|
||||
'editorGutter.deletedBackground': '#ff4b82',
|
||||
'editorGutter.modifiedBackground': '#ffcc95',
|
||||
'editorHoverWidget.background': '#31353a',
|
||||
'editorOverviewRuler.addedForeground': '#19f9d8',
|
||||
'editorOverviewRuler.border': '#00000000',
|
||||
'editorOverviewRuler.deletedForeground': '#ff4b82',
|
||||
'editorOverviewRuler.errorForeground': '#ff4b82',
|
||||
'editorOverviewRuler.infoForeground': '#6fc1ff',
|
||||
'editorOverviewRuler.modifiedForeground': '#ffcc95',
|
||||
'editorOverviewRuler.warningForeground': '#ffcc95',
|
||||
'editorRuler.foreground': '#b084eb60',
|
||||
'editorSuggestWidget.selectedBackground': '#19f9d899',
|
||||
'editorWarning.border': '#ffcc95',
|
||||
'editorWarning.foreground': '#ffcc95',
|
||||
'editorWhitespace.foreground': '#4e5260',
|
||||
'editorWidget.background': '#2a2c2d',
|
||||
'editorWidget.border': '#373b41',
|
||||
errorForeground: '#ff4b82',
|
||||
'extensionButton.prominentBackground': '#45a9f9',
|
||||
'extensionButton.prominentForeground': '#ffffff',
|
||||
'extensionButton.prominentHoverBackground': '#676b79',
|
||||
foreground: '#e6e6e6',
|
||||
'list.activeSelectionBackground': '#292a2b',
|
||||
'list.activeSelectionForeground': '#19f9d8',
|
||||
'list.focusBackground': '#292a2b',
|
||||
'list.focusForeground': '#19f9d8',
|
||||
'list.highlightForeground': '#6fc1ff',
|
||||
'list.hoverBackground': '#292a2b',
|
||||
'list.hoverForeground': '#cdcdcd',
|
||||
'list.inactiveSelectionBackground': '#292a2b',
|
||||
'list.inactiveSelectionForeground': '#19f9d8',
|
||||
'merge.currentContentBackground': '#b084eb40',
|
||||
'merge.currentHeaderBackground': '#b084eb90',
|
||||
'merge.incomingContentBackground': '#ffb86c40',
|
||||
'merge.incomingHeaderBackground': '#45a9f990',
|
||||
'progressBar.background': '#b084eb',
|
||||
'scrollbar.shadow': '#222223',
|
||||
'scrollbarSlider.activeBackground': '#757575',
|
||||
'scrollbarSlider.background': '#373b4199',
|
||||
'scrollbarSlider.hoverBackground': '#757575',
|
||||
'sideBar.background': '#242526',
|
||||
'sideBar.border': '#222223',
|
||||
'sideBar.foreground': '#bbbbbb',
|
||||
'statusBar.background': '#222223',
|
||||
'statusBar.debuggingBackground': '#b084eb',
|
||||
'statusBar.debuggingForeground': '#e6e6e6',
|
||||
'statusBar.foreground': '#e6e6e6',
|
||||
'statusBar.noFolderBackground': '#242526',
|
||||
'statusBar.noFolderForeground': '#e6e6e6',
|
||||
'tab.activeBackground': '#292a2b',
|
||||
'tab.activeBorder': '#19f9d8',
|
||||
'tab.activeForeground': '#19f9d8',
|
||||
'tab.inactiveBackground': '#242526',
|
||||
'tab.inactiveForeground': '#e6e6e6',
|
||||
'terminal.ansiBlue': '#45a9f9',
|
||||
'terminal.ansiBrightBlack': '#757575',
|
||||
'terminal.ansiBrightBlue': '#6fc1ff',
|
||||
'terminal.ansiBrightCyan': '#bcaafe',
|
||||
'terminal.ansiBrightGreen': '#19f9d8',
|
||||
'terminal.ansiBrightMagenta': '#ff9ac1',
|
||||
'terminal.ansiBrightRed': '#ff2c6d',
|
||||
'terminal.ansiBrightWhite': '#e6e6e6',
|
||||
'terminal.ansiBrightYellow': '#ffcc95',
|
||||
'terminal.ansiCyan': '#b084eb',
|
||||
'terminal.ansiGreen': '#19f9d8',
|
||||
'terminal.ansiMagenta': '#ff75b5',
|
||||
'terminal.ansiRed': '#ff2c6d',
|
||||
'terminal.ansiWhite': '#cdcdcd',
|
||||
'terminal.ansiYellow': '#ffb86c',
|
||||
'terminalCursor.background': '#e6e6e6',
|
||||
'terminalCursor.foreground': '#ff4b82',
|
||||
'titleBar.activeBackground': '#242526',
|
||||
'titleBar.activeForeground': '#e6e6e6',
|
||||
'titleBar.inactiveBackground': '#242526',
|
||||
'titleBar.inactiveForeground': '#e6e6e6',
|
||||
};
|
||||
//# sourceMappingURL=panda.js.map
|
||||
@@ -0,0 +1,186 @@
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.default = {
|
||||
"badge.background": "#282c34",
|
||||
"button.background": "#404754",
|
||||
"button.secondaryBackground": "#30333d",
|
||||
"button.secondaryForeground": "#c0bdbd",
|
||||
"checkbox.border": "#404754",
|
||||
"descriptionForeground": "#abb2bf",
|
||||
"diffEditor.insertedTextBackground": "#00809b33",
|
||||
"editor.findMatchBorder": "#457dff",
|
||||
"editor.findMatchHighlightBackground": "#6199ff2f",
|
||||
"editorInlayHint.foreground": "#abb2bf",
|
||||
"editorInlayHint.background": "#2c313c",
|
||||
"editorLineNumber.activeForeground": "#abb2bf",
|
||||
"editorOverviewRuler.addedBackground": "#109868",
|
||||
"editorOverviewRuler.deletedBackground": "#9A353D",
|
||||
"editorOverviewRuler.modifiedBackground": "#948B60",
|
||||
"editor.selectionBackground": "#67769660",
|
||||
"editor.selectionHighlightBackground": "#ffffff10",
|
||||
"editor.selectionHighlightBorder": "#dddddd",
|
||||
"editor.wordHighlightBackground": "#d2e0ff2f",
|
||||
"editor.wordHighlightBorder": "#7f848e",
|
||||
"editor.wordHighlightStrongBackground": "#abb2bf26",
|
||||
"editor.wordHighlightStrongBorder": "#7f848e",
|
||||
"editorBracketMatch.background": "#515a6b",
|
||||
"editorCursor.background": "#ffffffc9",
|
||||
"editorError.foreground": "#c24038",
|
||||
"editorGroup.background": "#181a1f",
|
||||
"editorMarkerNavigation.background": "#21252b",
|
||||
"editorSuggestWidget.border": "#181a1f",
|
||||
"list.activeSelectionBackground": "#2c313a",
|
||||
"list.activeSelectionForeground": "#d7dae0",
|
||||
"list.focusBackground": "#323842",
|
||||
"list.focusForeground": "#f0f0f0",
|
||||
"list.hoverBackground": "#2c313a",
|
||||
"list.hoverForeground": "#fff",
|
||||
"list.inactiveSelectionBackground": "#323842",
|
||||
"list.inactiveSelectionForeground": "#d7dae0",
|
||||
"list.warningForeground": "#d19a66",
|
||||
"menu.foreground": "#abb2bf",
|
||||
"minimapGutter.deletedBackground": "#9A353D",
|
||||
"panelSectionHeader.background": "#21252b",
|
||||
"peekViewEditor.matchHighlightBackground": "#29244b",
|
||||
"scrollbarSlider.activeBackground": "#747d9180",
|
||||
"settings.focusedRowBackground": "#282c34",
|
||||
"settings.headerForeground": "#fff",
|
||||
"sideBar.foreground": "#abb2bf",
|
||||
"statusBar.debuggingBorder": "#66017a",
|
||||
"statusBar.debuggingForeground": "#ffffff",
|
||||
"statusBar.foreground": "#9da5b4",
|
||||
"statusBar.noFolderBackground": "#21252b",
|
||||
"statusBarItem.remoteBackground": "#4d78cc",
|
||||
"statusBarItem.remoteForeground": "#f8fafd",
|
||||
"tab.unfocusedHoverBackground": "#323842",
|
||||
"terminal.ansiBrightYellow": "#f0a45d",
|
||||
"terminal.ansiYellow": "#d18f52",
|
||||
"textBlockQuote.background": "#2e3440",
|
||||
"textBlockQuote.border": "#4b5362",
|
||||
"textPreformat.foreground": "#d19a66",
|
||||
"walkThrough.embeddedEditorBackground": "#2e3440",
|
||||
"welcomePage.buttonHoverBackground": "#404754",
|
||||
"foreground": "#74819B",
|
||||
"widget.shadow": "#000000",
|
||||
"input.background": "#0b1015",
|
||||
"input.border": "#18222D",
|
||||
"button.hoverBackground": "#18222D",
|
||||
"scrollbar.shadow": "#00000026",
|
||||
"scrollbarSlider.background": "#18222D",
|
||||
"scrollbarSlider.hoverBackground": "#22303Eff",
|
||||
"editorOverviewRuler.border": "#0b1015",
|
||||
"editor.background": "#0b1015",
|
||||
"editor.foreground": "#c7d0d9",
|
||||
"editorWidget.background": "#0b1015",
|
||||
"editor.findMatchBackground": "#18222D",
|
||||
"editor.lineHighlightBorder": "#18222D",
|
||||
"editor.lineHighlightBackground": "#18222D",
|
||||
"editorLineNumber.foreground": "#3A3E46",
|
||||
"editorBracketMatch.border": "#74819B",
|
||||
"editorGutter.deletedBackground": "#EF596F",
|
||||
"editorCursor.foreground": "#ffffff",
|
||||
"editorWhitespace.foreground": "#18222D",
|
||||
"editorIndentGuide.background": "#18222D",
|
||||
"editorIndentGuide.activeBackground": "#4B5567",
|
||||
"editorRuler.foreground": "#18222D",
|
||||
"editorGroupHeader.tabsBackground": "#0b1015",
|
||||
"editorGroupHeader.noTabsBackground": "#0b1015",
|
||||
"editorGroup.border": "#0b1015",
|
||||
"editorSuggestWidget.background": "#0b1015",
|
||||
"editorSuggestWidget.selectedBackground": "#18222D",
|
||||
"editorHoverWidget.background": "#0b1015",
|
||||
"tab.activeBackground": "#151e27",
|
||||
"tab.inactiveBackground": "#0b1015",
|
||||
"tab.border": "#0b1015",
|
||||
"tab.activeForeground": "#00FF1B",
|
||||
"tab.inactiveForeground": "#74819B",
|
||||
"tab.unfocusedActiveBorder": "#0b1015",
|
||||
"tab.hoverBackground": "#18222D",
|
||||
"tab.activeBorder": "#00FF1B",
|
||||
"panel.background": "#0b1015",
|
||||
"panel.border": "#00FF1B",
|
||||
"panelTitle.activeForeground": "#ffffff",
|
||||
"panelTitle.inactiveForeground": "#74819B",
|
||||
"statusBar.debuggingBackground": "#0b1015",
|
||||
"activityBar.background": "#0b1015",
|
||||
"activityBarBadge.foreground": "#000000",
|
||||
"sideBar.background": "#0b1015",
|
||||
"sideBarSectionHeader.foreground": "#FFFFFF",
|
||||
"sideBarSectionHeader.background": "#0b1015",
|
||||
"sideBar.border": "#00FF1B",
|
||||
"sideBarSectionHeader.border": "#00ff1a56",
|
||||
"titleBar.border": "#00FF1B",
|
||||
"titleBar.activeForeground": "#00FF1B",
|
||||
"titleBar.inactiveBackground": "#0b1015",
|
||||
"titleBar.inactiveForeground": "#ffffff66",
|
||||
"titleBar.activeBackground": "#0b1015",
|
||||
"menubar.selectionBackground": "#6161618b",
|
||||
"menu.separatorBackground": "#00FF1B",
|
||||
"menu.selectionBackground": "#6161618b",
|
||||
"debugToolBar.background": "#0b1015",
|
||||
"dropdown.background": "#0b1015",
|
||||
"dropdown.border": "#18222D",
|
||||
"peekViewEditor.background": "#18222D",
|
||||
"peekViewResult.background": "#18222D",
|
||||
"peekViewResult.selectionBackground": "#18222D",
|
||||
"peekViewTitle.background": "#18222D",
|
||||
"peekViewTitleLabel.foreground": "#ffffff",
|
||||
"notifications.border": "#18222D",
|
||||
"notificationCenterHeader.background": "#18222D",
|
||||
"notificationCenterHeader.foreground": "#eeeeee",
|
||||
"notifications.background": "#18222D",
|
||||
"notifications.foreground": "#eeeeee",
|
||||
"notificationToast.border": "#18222D",
|
||||
"gitDecoration.modifiedResourceForeground": "#08f758",
|
||||
"gitDecoration.deletedResourceForeground": "#EF596F",
|
||||
"gitDecoration.untrackedResourceForeground": "#11eb73",
|
||||
"gitDecoration.ignoredResourceForeground": "#00B7C9",
|
||||
"gitDecoration.conflictingResourceForeground": "#d55fde",
|
||||
"focusBorder": "#00FF1B",
|
||||
"activityBar.foreground": "#00FF1B",
|
||||
"activityBar.inactiveForeground": "#ffffff66",
|
||||
"activityBarBadge.background": "#00FF1B",
|
||||
"activityBar.border": "#00FF1B",
|
||||
"list.highlightForeground": "#00FF1B",
|
||||
"textLink.foreground": "#00FF1B",
|
||||
"editorWarning.foreground": "#329e24",
|
||||
"editorGutter.modifiedBackground": "#00FF1B",
|
||||
"editorGutter.addedBackground": "#329e24",
|
||||
"progressBar.background": "#00FF1B",
|
||||
"notificationsWarningIcon.foreground": "#cca700",
|
||||
"editorMarkerNavigationWarning.background": "#329e24",
|
||||
"editorHoverWidget.border": "#00FF1B",
|
||||
"peekView.border": "#00FF1B",
|
||||
"minimapGutter.addedBackground": "#329e24",
|
||||
"minimapGutter.modifiedBackground": "#00FF1B",
|
||||
"minimap.warningHighlight": "#329e24",
|
||||
"minimapSlider.hoverBackground": "#9996969d",
|
||||
"minimapSlider.activeBackground": "#bbb9b99d",
|
||||
"minimapSlider.background": "#7e7e7e9d",
|
||||
"terminal.foreground": "#cccccc",
|
||||
"terminal.selectionBackground": "#ffffff40",
|
||||
"terminalCursor.background": "#0d715fd1",
|
||||
"terminalCursor.foreground": "#ffffff",
|
||||
"terminal.border": "#80808059",
|
||||
"terminal.ansiBlack": "#000000",
|
||||
"terminal.ansiBlue": "#2472c8",
|
||||
"terminal.ansiBrightBlack": "#666666",
|
||||
"terminal.ansiBrightBlue": "#3b8eea",
|
||||
"terminal.ansiBrightCyan": "#29b8db",
|
||||
"terminal.ansiBrightGreen": "#23d18b",
|
||||
"terminal.ansiBrightMagenta": "#c682ff",
|
||||
"terminal.ansiBrightRed": "#64B5F6",
|
||||
"terminal.ansiBrightWhite": "#e5e5e5",
|
||||
"terminal.ansiBright45BD45": "#c7c531",
|
||||
"terminal.ansiCyan": "#11a8cd",
|
||||
"terminal.ansiGreen": "#21a771",
|
||||
"terminal.ansiMagenta": "#aa76d5",
|
||||
"terminal.ansiRed": "#b83360",
|
||||
"terminal.ansiWhite": "#e5e5e5",
|
||||
"terminal.ansi45BD45": "#329e24",
|
||||
"terminal.background": "#0b1015",
|
||||
"statusBarItem.hoverBackground": "#00ff2634",
|
||||
"statusBar.border": "#00FF1B",
|
||||
"statusBar.background": "#0b1015"
|
||||
};
|
||||
//# sourceMappingURL=retro.js.map
|
||||
@@ -0,0 +1,113 @@
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.default = {
|
||||
'activityBar.background': '#222222',
|
||||
'activityBar.foreground': '#dcdcdc',
|
||||
'activityBarBadge.background': '#4d78cc',
|
||||
'activityBarBadge.foreground': '#f3f3f3',
|
||||
'badge.background': '#222222',
|
||||
'button.background': '#404754',
|
||||
'debugToolBar.background': '#222222',
|
||||
'diffEditor.insertedTextBackground': '#00809b33',
|
||||
'dropdown.background': '#1f1f1f',
|
||||
'dropdown.border': '#1e1e1e',
|
||||
'editor.background': '#1e1e1e',
|
||||
'editor.findMatchBackground': '#555555',
|
||||
'editor.findMatchBorder': '#555555',
|
||||
'editor.findMatchHighlightBackground': '#444444',
|
||||
'editor.foreground': '#cccccc',
|
||||
'editor.lineHighlightBackground': '#2c2c2c',
|
||||
'editorLineNumber.activeForeground': '#ababab',
|
||||
'editorGutter.addedBackground': '#109868',
|
||||
'editorGutter.deletedBackground': '#9A353D',
|
||||
'editorGutter.modifiedBackground': '#948B60',
|
||||
'editor.selectionBackground': '#3e3e3e',
|
||||
'editor.selectionHighlightBackground': '#ffffff10',
|
||||
'editor.selectionHighlightBorder': '#acacac',
|
||||
'editor.wordHighlightBackground': '#dcdcdc2f',
|
||||
'editor.wordHighlightBorder': '#848484',
|
||||
'editor.wordHighlightStrongBackground': '#ababab26',
|
||||
'editor.wordHighlightStrongBorder': '#848484',
|
||||
'editorBracketMatch.background': '#555555',
|
||||
'editorBracketMatch.border': '#555555',
|
||||
'editorCursor.background': '#ffffffc9',
|
||||
'editorCursor.foreground': '#528bff',
|
||||
'editorError.foreground': '#c53f46',
|
||||
'editorGroup.background': '#1e1e1e',
|
||||
'editorGroup.border': '#1e1e1e',
|
||||
'editorGroupHeader.tabsBackground': '#222222',
|
||||
'editorHoverWidget.background': '#222222',
|
||||
'editorHoverWidget.border': '#1e1e1e',
|
||||
'editorIndentGuide.activeBackground': '#c8c8c859',
|
||||
'editorIndentGuide.background': '#454545',
|
||||
'editorLineNumber.foreground': '#555555',
|
||||
'editorMarkerNavigation.background': '#222222',
|
||||
'editorRuler.foreground': '#484848',
|
||||
'editorSuggestWidget.background': '#222222',
|
||||
'editorSuggestWidget.border': '#1e1e1e',
|
||||
'editorSuggestWidget.selectedBackground': '#2c2c2c',
|
||||
'editorWarning.foreground': '#d19a66',
|
||||
'editorWhitespace.foreground': '#454545',
|
||||
'editorWidget.background': '#2c2c2c',
|
||||
focusBorder: '#464646',
|
||||
'input.background': '#1d1d1d',
|
||||
'list.activeSelectionBackground': '#3c3c3c',
|
||||
'list.activeSelectionForeground': '#dedede',
|
||||
'list.focusBackground': '#3c3c3c',
|
||||
'list.highlightForeground': '#c5c5c5',
|
||||
'list.hoverBackground': '#333333',
|
||||
'list.inactiveSelectionBackground': '#3c3c3c',
|
||||
'list.inactiveSelectionForeground': '#d7d7d7',
|
||||
'list.warningForeground': '#d19a66',
|
||||
'menu.foreground': '#c8c8c8',
|
||||
'menu.background': '#3c3c3c',
|
||||
'panelSectionHeader.background': '#222222',
|
||||
'peekViewEditor.background': '#222222',
|
||||
'peekViewEditor.matchHighlightBackground': '#292929',
|
||||
'peekViewResult.background': '#222222',
|
||||
'scrollbarSlider.activeBackground': '#89898980',
|
||||
'scrollbarSlider.background': '#55555580',
|
||||
'scrollbarSlider.hoverBackground': '#5a5a5a80',
|
||||
'sideBar.background': '#1e1e1e',
|
||||
'sideBarSectionHeader.background': '#2c2c2c',
|
||||
'statusBar.background': '#222222',
|
||||
'statusBar.debuggingBorder': '#222222',
|
||||
'statusBar.debuggingForeground': '#ececec',
|
||||
'statusBar.foreground': '#ececec',
|
||||
'statusBar.noFolderBackground': '#222222',
|
||||
'statusBarItem.hoverBackground': '#353535',
|
||||
'statusBarItem.remoteBackground': '#4d78cc',
|
||||
'statusBarItem.remoteForeground': '#f8fafd',
|
||||
'tab.activeBackground': '#454545',
|
||||
'tab.activeForeground': '#dcdcdc',
|
||||
'tab.border': '#2a2a2a',
|
||||
'tab.hoverBackground': '#565656',
|
||||
'tab.inactiveBackground': '#2c2c2c',
|
||||
'tab.unfocusedHoverBackground': '#2c2c2c',
|
||||
'terminal.ansiBlack': '#313131',
|
||||
'terminal.ansiBlue': '#4aa5f0',
|
||||
'terminal.ansiBrightBlack': '#4f5666',
|
||||
'terminal.ansiBrightBlue': '#4dc4ff',
|
||||
'terminal.ansiBrightCyan': '#4cd1e0',
|
||||
'terminal.ansiBrightGreen': '#a5e075',
|
||||
'terminal.ansiBrightMagenta': '#de73ff',
|
||||
'terminal.ansiBrightRed': '#ff616e',
|
||||
'terminal.ansiBrightWhite': '#e6e6e6',
|
||||
'terminal.ansiBrightYellow': '#f0a45d',
|
||||
'terminal.ansiCyan': '#42b3c2',
|
||||
'terminal.ansiGreen': '#8cc265',
|
||||
'terminal.ansiMagenta': '#c162de',
|
||||
'terminal.ansiRed': '#e05561',
|
||||
'terminal.ansiWhite': '#d7dae0',
|
||||
'terminal.ansiYellow': '#d18f52',
|
||||
'terminal.background': '#1e1e1e',
|
||||
'terminal.border': '#222222',
|
||||
'terminal.foreground': '#cccccc',
|
||||
'terminal.selectionBackground': '#ababab30',
|
||||
'textLink.foreground': '#61afef',
|
||||
'titleBar.activeBackground': '#282828',
|
||||
'titleBar.activeForeground': '#a5a5a5',
|
||||
'titleBar.inactiveBackground': '#272727',
|
||||
'titleBar.inactiveForeground': '#757575',
|
||||
};
|
||||
//# sourceMappingURL=shadow.js.map
|
||||
@@ -0,0 +1,92 @@
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.default = {
|
||||
'activityBar.background': '#003847',
|
||||
'badge.background': '#047aa6',
|
||||
'button.background': '#2aa19899',
|
||||
'debugExceptionWidget.background': '#00212b',
|
||||
'debugExceptionWidget.border': '#ab395b',
|
||||
'debugToolBar.background': '#00212b',
|
||||
'dropdown.background': '#00212b',
|
||||
'dropdown.border': '#2aa19899',
|
||||
'editor.background': '#002b36',
|
||||
'editor.foreground': '#abb2bf',
|
||||
'editor.lineHighlightBackground': '#073642',
|
||||
'editor.selectionBackground': '#274642',
|
||||
'editor.selectionHighlightBackground': '#005a6faa',
|
||||
'editor.wordHighlightBackground': '#004454aa',
|
||||
'editor.wordHighlightStrongBackground': '#005a6faa',
|
||||
'editorCursor.foreground': '#528bff',
|
||||
'editorGroup.border': '#00212b',
|
||||
'editorGroup.dropBackground': '#2aa19844',
|
||||
'editorGroupHeader.tabsBackground': '#004052',
|
||||
'editorHoverWidget.background': '#004052',
|
||||
'editorIndentGuide.activeBackground': '#c3e1e180',
|
||||
'editorIndentGuide.background': '#93a1a180',
|
||||
'editorLineNumber.activeForeground': '#949494',
|
||||
'editorMarkerNavigationError.background': '#ab395b',
|
||||
'editorMarkerNavigationWarning.background': '#5b7e7a',
|
||||
'editorWhitespace.foreground': '#93a1a180',
|
||||
'editorWidget.background': '#00212b',
|
||||
errorForeground: '#ffeaea',
|
||||
focusBorder: '#2aa19899',
|
||||
'input.background': '#003847',
|
||||
'input.foreground': '#93a1a1',
|
||||
'input.placeholderForeground': '#93a1a1aa',
|
||||
'inputOption.activeBorder': '#2aa19899',
|
||||
'inputValidation.errorBackground': '#571b26',
|
||||
'inputValidation.errorBorder': '#a92049',
|
||||
'inputValidation.infoBackground': '#052730',
|
||||
'inputValidation.infoBorder': '#363b5f',
|
||||
'inputValidation.warningBackground': '#5d5938',
|
||||
'inputValidation.warningBorder': '#9d8a5e',
|
||||
'list.activeSelectionBackground': '#005a6f',
|
||||
'list.dropBackground': '#00445488',
|
||||
'list.focusBackground': '#005a6f',
|
||||
'list.highlightForeground': '#1ebcc5',
|
||||
'list.hoverBackground': '#004454aa',
|
||||
'list.inactiveSelectionBackground': '#00445488',
|
||||
'minimap.selectionHighlight': '#274642',
|
||||
'panel.border': '#2b2b4a',
|
||||
'peekView.border': '#2b2b4a',
|
||||
'peekViewEditor.background': '#10192c',
|
||||
'peekViewEditor.matchHighlightBackground': '#7744aa40',
|
||||
'peekViewResult.background': '#00212b',
|
||||
'peekViewTitle.background': '#00212b',
|
||||
'pickerGroup.border': '#2aa19899',
|
||||
'pickerGroup.foreground': '#2aa19899',
|
||||
'progressBar.background': '#047aa6',
|
||||
'selection.background': '#2aa19899',
|
||||
'sideBar.background': '#00212b',
|
||||
'sideBarTitle.foreground': '#93a1a1',
|
||||
'statusBar.background': '#00212b',
|
||||
'statusBar.debuggingBackground': '#00212b',
|
||||
'statusBar.foreground': '#93a1a1',
|
||||
'statusBar.noFolderBackground': '#00212b',
|
||||
'statusBarItem.prominentBackground': '#003847',
|
||||
'statusBarItem.prominentHoverBackground': '#003847',
|
||||
'statusBarItem.remoteBackground': '#2aa19899',
|
||||
'tab.activeBackground': '#002b37',
|
||||
'tab.activeForeground': '#d6dbdb',
|
||||
'tab.border': '#003847',
|
||||
'tab.inactiveBackground': '#004052',
|
||||
'tab.inactiveForeground': '#93a1a1',
|
||||
'terminal.ansiBlack': '#073642',
|
||||
'terminal.ansiBlue': '#268bd2',
|
||||
'terminal.ansiBrightBlack': '#586e75',
|
||||
'terminal.ansiBrightBlue': '#839496',
|
||||
'terminal.ansiBrightCyan': '#93a1a1',
|
||||
'terminal.ansiBrightGreen': '#586e75',
|
||||
'terminal.ansiBrightMagenta': '#6c71c4',
|
||||
'terminal.ansiBrightRed': '#cb4b16',
|
||||
'terminal.ansiBrightWhite': '#fdf6e3',
|
||||
'terminal.ansiBrightYellow': '#657b83',
|
||||
'terminal.ansiCyan': '#2aa198',
|
||||
'terminal.ansiGreen': '#859900',
|
||||
'terminal.ansiMagenta': '#d33682',
|
||||
'terminal.ansiRed': '#dc322f',
|
||||
'terminal.ansiWhite': '#eee8d5',
|
||||
'terminal.ansiYellow': '#b58900',
|
||||
'titleBar.activeBackground': '#002c39',
|
||||
};
|
||||
//# sourceMappingURL=solarized.js.map
|
||||
@@ -0,0 +1,90 @@
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.default = {
|
||||
'activityBar.background': '#073642',
|
||||
'badge.background': '#047aa6',
|
||||
'button.background': '#2aa19899',
|
||||
'debugExceptionWidget.background': '#00212b',
|
||||
'debugExceptionWidget.border': '#ab395b',
|
||||
'debugToolBar.background': '#00212b',
|
||||
'dropdown.background': '#00212b',
|
||||
'dropdown.border': '#2aa19899',
|
||||
'editor.background': '#002b36',
|
||||
'editor.foreground': '#abb2bf',
|
||||
'editor.lineHighlightBackground': '#073642',
|
||||
'editor.selectionBackground': '#073642',
|
||||
'editorCursor.foreground': '#528bff',
|
||||
'editorGroup.background': '#011b23',
|
||||
'editorGroup.border': '#073642',
|
||||
'editorGroup.dropBackground': '#2aa19844',
|
||||
'editorGroupHeader.tabsBackground': '#073642',
|
||||
'editorHoverWidget.background': '#004052',
|
||||
'editorMarkerNavigationError.background': '#ab395b',
|
||||
'editorMarkerNavigationWarning.background': '#5b7e7a',
|
||||
'editorWhitespace.foreground': '#93a1a180',
|
||||
'editorWidget.background': '#00212b',
|
||||
errorForeground: '#ffeaea',
|
||||
focusBorder: '#2aa19899',
|
||||
'input.background': '#002b36',
|
||||
'input.foreground': '#93a1a1',
|
||||
'input.placeholderForeground': '#93a1a1aa',
|
||||
'inputOption.activeBorder': '#2aa19899',
|
||||
'inputValidation.errorBackground': '#571b26',
|
||||
'inputValidation.errorBorder': '#a92049',
|
||||
'inputValidation.infoBackground': '#052730',
|
||||
'inputValidation.infoBorder': '#363b5f',
|
||||
'inputValidation.warningBackground': '#5d5938',
|
||||
'inputValidation.warningBorder': '#9d8a5e',
|
||||
'list.activeSelectionBackground': '#002b36',
|
||||
'list.dropBackground': '#00445488',
|
||||
'list.focusBackground': '#005a6f',
|
||||
'list.highlightForeground': '#1ebcc5',
|
||||
'list.hoverBackground': '#004454aa',
|
||||
'list.inactiveSelectionBackground': '#002b36',
|
||||
'panel.border': '#2b2b4a',
|
||||
'peekView.border': '#2b2b4a',
|
||||
'peekViewEditor.background': '#10192c',
|
||||
'peekViewEditor.matchHighlightBackground': '#7744aa40',
|
||||
'peekViewResult.background': '#00212b',
|
||||
'peekViewTitle.background': '#00212b',
|
||||
'pickerGroup.border': '#2aa19899',
|
||||
'pickerGroup.foreground': '#2aa19899',
|
||||
'progressBar.background': '#047aa6',
|
||||
'scrollbar.shadow': '#073642',
|
||||
'scrollbarSlider.activeBackground': '#073642',
|
||||
'scrollbarSlider.background': '#002b36',
|
||||
'scrollbarSlider.hoverBackground': '#073642',
|
||||
'selection.background': '#2aa19899',
|
||||
'sideBar.background': '#073642',
|
||||
'sideBarSectionHeader.background': '#073642',
|
||||
'sideBarTitle.foreground': '#93a1a1',
|
||||
'statusBar.background': '#073642',
|
||||
'statusBar.debuggingBackground': '#00212b',
|
||||
'statusBar.foreground': '#93a1a1',
|
||||
'statusBar.noFolderBackground': '#00212b',
|
||||
'statusBarItem.prominentBackground': '#003847',
|
||||
'statusBarItem.prominentHoverBackground': '#003847',
|
||||
'tab.activeBackground': '#002b37',
|
||||
'tab.activeForeground': '#d6dbdb',
|
||||
'tab.border': '#003847',
|
||||
'tab.inactiveBackground': '#073642',
|
||||
'tab.inactiveForeground': '#93a1a1',
|
||||
'terminal.ansiBlack': '#073642',
|
||||
'terminal.ansiBlue': '#268bd2',
|
||||
'terminal.ansiBrightBlack': '#002b36',
|
||||
'terminal.ansiBrightBlue': '#839496',
|
||||
'terminal.ansiBrightCyan': '#93a1a1',
|
||||
'terminal.ansiBrightGreen': '#586e75',
|
||||
'terminal.ansiBrightMagenta': '#6c71c4',
|
||||
'terminal.ansiBrightRed': '#cb4b16',
|
||||
'terminal.ansiBrightWhite': '#fdf6e3',
|
||||
'terminal.ansiBrightYellow': '#657b83',
|
||||
'terminal.ansiCyan': '#2aa198',
|
||||
'terminal.ansiGreen': '#859900',
|
||||
'terminal.ansiMagenta': '#d33682',
|
||||
'terminal.ansiRed': '#dc322f',
|
||||
'terminal.ansiWhite': '#eee8d5',
|
||||
'terminal.ansiYellow': '#b58900',
|
||||
'titleBar.activeBackground': '#073642',
|
||||
};
|
||||
//# sourceMappingURL=solarizedFlat.js.map
|
||||
@@ -0,0 +1,289 @@
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.default = {
|
||||
'activityBar.background': '#1f2335',
|
||||
'activityBar.border': '#1f2335',
|
||||
'activityBar.foreground': '#7982a9',
|
||||
'activityBar.inactiveForeground': '#41496b',
|
||||
'activityBarBadge.background': '#3d59a1',
|
||||
'activityBarBadge.foreground': '#ffffff',
|
||||
'badge.background': '#7e83b233',
|
||||
'badge.foreground': '#a9b1d6',
|
||||
'breadcrumb.activeSelectionForeground': '#a9b1d6',
|
||||
'breadcrumb.background': '#1f2335',
|
||||
'breadcrumb.focusForeground': '#a9b1d6',
|
||||
'breadcrumb.foreground': '#545c7e',
|
||||
'breadcrumbPicker.background': '#1f2335',
|
||||
'button.background': '#3d59a1dd',
|
||||
'button.foreground': '#ffffff',
|
||||
'button.hoverBackground': '#3d59a1aa',
|
||||
'charts.blue': '#7aa2f7',
|
||||
'charts.foreground': '#9aa5ce',
|
||||
'charts.green': '#73daca',
|
||||
'charts.lines': '#1f2335',
|
||||
'charts.orange': '#ff9e64',
|
||||
'charts.purple': '#9d7cd8',
|
||||
'charts.red': '#f7768e',
|
||||
'charts.yellow': '#e0af68',
|
||||
'debugConsole.errorForeground': '#bb616b',
|
||||
'debugConsole.infoForeground': '#7982a9',
|
||||
'debugConsole.sourceForeground': '#7982a9',
|
||||
'debugConsole.warningForeground': '#c49a5a',
|
||||
'debugConsoleInputIcon.foreground': '#73daca',
|
||||
'debugExceptionWidget.background': '#1b1e2e',
|
||||
'debugExceptionWidget.border': '#963c47',
|
||||
'debugTokenExpression.boolean': '#ff9e64',
|
||||
'debugTokenExpression.error': '#bb616b',
|
||||
'debugTokenExpression.name': '#7dcfff',
|
||||
'debugTokenExpression.number': '#ff9e64',
|
||||
'debugTokenExpression.string': '#9ece6a',
|
||||
'debugTokenExpression.value': '#9aa5ce',
|
||||
'debugToolBar.background': '#1b1e2e',
|
||||
'debugView.stateLabelBackground': '#1b1e2e',
|
||||
'debugView.stateLabelForeground': '#7982a9',
|
||||
'debugView.valueChangedHighlight': '#3d59a1cc',
|
||||
descriptionForeground: '#545c7e',
|
||||
'diffEditor.insertedTextBackground': '#41a6b515',
|
||||
'diffEditor.removedTextBackground': '#db4b4b22',
|
||||
'dropdown.background': '#1b1e2e',
|
||||
'dropdown.foreground': '#7982a9',
|
||||
'dropdown.listBackground': '#1b1e2e',
|
||||
'editor.background': '#24283b',
|
||||
'editor.findMatchBackground': '#3d59a166',
|
||||
'editor.findMatchBorder': '#ffdb69aa',
|
||||
'editor.findMatchHighlightBackground': '#3d59a166',
|
||||
'editor.findRangeHighlightBackground': '#6f7bb625',
|
||||
'editor.focusedStackFrameHighlightBackground': '#73daca20',
|
||||
'editor.foreground': '#a9b1d6',
|
||||
'editor.inactiveSelectionBackground': '#6f7bb615',
|
||||
'editor.lineHighlightBackground': '#292e42',
|
||||
'editor.rangeHighlightBackground': '#6f7bb620',
|
||||
'editor.selectionBackground': '#6f7bb630',
|
||||
'editor.selectionHighlightBackground': '#6f7bb633',
|
||||
'editor.stackFrameHighlightBackground': '#e2bd3a20',
|
||||
'editor.wordHighlightBackground': '#6f7bb633',
|
||||
'editor.wordHighlightStrongBackground': '#6f7bb644',
|
||||
'editorBracketMatch.background': '#1f2335',
|
||||
'editorBracketMatch.border': '#545c7e',
|
||||
'editorCodeLens.foreground': '#565f89',
|
||||
'editorCursor.foreground': '#c0caf5',
|
||||
'editorError.foreground': '#db4b4b',
|
||||
'editorGroup.border': '#1b1e2e',
|
||||
'editorGroup.dropBackground': '#292e42',
|
||||
'editorGroupHeader.border': '#1b1e2e',
|
||||
'editorGroupHeader.noTabsBackground': '#1f2335',
|
||||
'editorGroupHeader.tabsBackground': '#1f2335',
|
||||
'editorGroupHeader.tabsBorder': '#1b1e2e',
|
||||
'editorGutter.addedBackground': '#164846',
|
||||
'editorGutter.deletedBackground': '#823c41',
|
||||
'editorGutter.modifiedBackground': '#394b70',
|
||||
'editorHint.foreground': '#0da0ba',
|
||||
'editorHoverWidget.background': '#1f2335',
|
||||
'editorHoverWidget.border': '#1b1e2e',
|
||||
'editorIndentGuide.activeBackground': '#3b4261',
|
||||
'editorIndentGuide.background': '#292e42',
|
||||
'editorInfo.foreground': '#0da0ba',
|
||||
'editorInlayHint.background': '#2c313c',
|
||||
'editorInlayHint.foreground': '#abb2bf',
|
||||
'editorLightBulb.foreground': '#e0af68',
|
||||
'editorLightBulbAutoFix.foreground': '#e0af68',
|
||||
'editorLineNumber.activeForeground': '#737aa2',
|
||||
'editorLineNumber.foreground': '#3b4261',
|
||||
'editorLink.activeForeground': '#a9b1d6',
|
||||
'editorMarkerNavigation.background': '#1f2335',
|
||||
'editorOverviewRuler.addedForeground': '#164846',
|
||||
'editorOverviewRuler.border': '#1b1e2e',
|
||||
'editorOverviewRuler.bracketMatchForeground': '#1b1e2e',
|
||||
'editorOverviewRuler.deletedForeground': '#703438',
|
||||
'editorOverviewRuler.errorForeground': '#db4b4b',
|
||||
'editorOverviewRuler.findMatchForeground': '#a9b1d644',
|
||||
'editorOverviewRuler.infoForeground': '#1abc9c',
|
||||
'editorOverviewRuler.modifiedForeground': '#394b70',
|
||||
'editorOverviewRuler.rangeHighlightForeground': '#a9b1d644',
|
||||
'editorOverviewRuler.selectionHighlightForeground': '#a9b1d622',
|
||||
'editorOverviewRuler.warningForeground': '#e0af68',
|
||||
'editorOverviewRuler.wordHighlightForeground': '#bb9af755',
|
||||
'editorOverviewRuler.wordHighlightStrongForeground': '#bb9af766',
|
||||
'editorPane.background': '#1f2335',
|
||||
'editorRuler.foreground': '#1b1e2e',
|
||||
'editorSuggestWidget.background': '#1f2335',
|
||||
'editorSuggestWidget.border': '#1b1e2e',
|
||||
'editorSuggestWidget.highlightForeground': '#668ac4',
|
||||
'editorSuggestWidget.selectedBackground': '#282e44',
|
||||
'editorWarning.foreground': '#e0af68',
|
||||
'editorWhitespace.foreground': '#3b4261',
|
||||
'editorWidget.background': '#1f2335',
|
||||
'editorWidget.resizeBorder': '#545c7e33',
|
||||
errorForeground: '#5a607d',
|
||||
'extensionBadge.remoteBackground': '#3d59a1',
|
||||
'extensionBadge.remoteForeground': '#ffffff',
|
||||
'extensionButton.prominentBackground': '#3d59a1dd',
|
||||
'extensionButton.prominentForeground': '#ffffff',
|
||||
'extensionButton.prominentHoverBackground': '#3d59a1aa',
|
||||
focusBorder: '#545c7e33',
|
||||
foreground: '#7982a9',
|
||||
'gitDecoration.addedResourceForeground': '#449dab',
|
||||
'gitDecoration.conflictingResourceForeground': '#bb7a61',
|
||||
'gitDecoration.deletedResourceForeground': '#914c54',
|
||||
'gitDecoration.ignoredResourceForeground': '#545c7e',
|
||||
'gitDecoration.modifiedResourceForeground': '#6183bb',
|
||||
'gitDecoration.renamedResourceForeground': '#449dab',
|
||||
'gitDecoration.stageDeletedResourceForeground': '#914c54',
|
||||
'gitDecoration.stageModifiedResourceForeground': '#6183bb',
|
||||
'gitDecoration.untrackedResourceForeground': '#449dab',
|
||||
'gitlens.gutterForegroundColor': '#565f89',
|
||||
'gitlens.gutterUncommittedForegroundColor': '#565f89',
|
||||
'gitlens.trailingLineForegroundColor': '#565f89',
|
||||
'icon.foreground': '#7982a9',
|
||||
'input.background': '#1b1e2e',
|
||||
'input.border': '#282e44',
|
||||
'input.foreground': '#a9b1d6',
|
||||
'input.placeholderForeground': '#4a5272',
|
||||
'inputOption.activeBackground': '#3d59a144',
|
||||
'inputOption.activeForeground': '#c0caf5',
|
||||
'inputValidation.errorBackground': '#85353e',
|
||||
'inputValidation.errorBorder': '#963c47',
|
||||
'inputValidation.errorForeground': '#bbc2e0',
|
||||
'inputValidation.infoBackground': '#0da0ba',
|
||||
'inputValidation.infoBorder': '#0db9d7',
|
||||
'inputValidation.infoForeground': '#000000',
|
||||
'inputValidation.warningBackground': '#c2985b',
|
||||
'inputValidation.warningBorder': '#e0af68',
|
||||
'inputValidation.warningForeground': '#000000',
|
||||
'list.activeSelectionBackground': '#2c324a',
|
||||
'list.activeSelectionForeground': '#a9b1d6',
|
||||
'list.deemphasizedForeground': '#7982a9',
|
||||
'list.dropBackground': '#292e42',
|
||||
'list.errorForeground': '#bb616b',
|
||||
'list.focusBackground': '#292e42',
|
||||
'list.focusForeground': '#a9b1d6',
|
||||
'list.highlightForeground': '#668ac4',
|
||||
'list.hoverBackground': '#1b1e2e',
|
||||
'list.hoverForeground': '#a9b1d6',
|
||||
'list.inactiveSelectionBackground': '#292e42',
|
||||
'list.inactiveSelectionForeground': '#a9b1d6',
|
||||
'list.invalidItemForeground': '#c97018',
|
||||
'list.warningForeground': '#c49a5a',
|
||||
'listFilterWidget.background': '#1b1e2e',
|
||||
'listFilterWidget.noMatchesOutline': '#a6333f',
|
||||
'listFilterWidget.outline': '#3d59a1',
|
||||
'menu.background': '#1f2335',
|
||||
'menu.border': '#1b1e2e',
|
||||
'menu.foreground': '#7982a9',
|
||||
'menu.selectionBackground': '#2f3549',
|
||||
'menu.selectionForeground': '#c0caf5',
|
||||
'menu.separatorBackground': '#1b1e2e',
|
||||
'menubar.selectionBackground': '#2f3549',
|
||||
'menubar.selectionBorder': '#1b1e2e',
|
||||
'menubar.selectionForeground': '#c0caf5',
|
||||
'merge.currentContentBackground': '#007a7544',
|
||||
'merge.currentHeaderBackground': '#007a75aa',
|
||||
'merge.incomingContentBackground': '#3d59a144',
|
||||
'merge.incomingHeaderBackground': '#3d59a1aa',
|
||||
'minimapGutter.addedBackground': '#1c5957',
|
||||
'minimapGutter.deletedBackground': '#944449',
|
||||
'minimapGutter.modifiedBackground': '#425882',
|
||||
'notificationCenterHeader.background': '#1b1e2e',
|
||||
'notificationLink.foreground': '#6183bb',
|
||||
'notifications.background': '#1b1e2e',
|
||||
'notificationsErrorIcon.foreground': '#bb616b',
|
||||
'notificationsInfoIcon.foreground': '#0da0ba',
|
||||
'notificationsWarningIcon.foreground': '#bba461',
|
||||
'panel.background': '#1f2335',
|
||||
'panel.border': '#1b1e2e',
|
||||
'panelInput.border': '#1f2335',
|
||||
'panelTitle.activeBorder': '#1f2335',
|
||||
'panelTitle.activeForeground': '#7982a9',
|
||||
'panelTitle.inactiveForeground': '#545c7e',
|
||||
'peekView.border': '#1b1e2e',
|
||||
'peekViewEditor.background': '#1f2335',
|
||||
'peekViewEditor.matchHighlightBackground': '#3d59a166',
|
||||
'peekViewResult.background': '#1b1e2e',
|
||||
'peekViewResult.fileForeground': '#7982a9',
|
||||
'peekViewResult.lineForeground': '#a9b1d6',
|
||||
'peekViewResult.matchHighlightBackground': '#3d59a166',
|
||||
'peekViewResult.selectionBackground': '#3d59a133',
|
||||
'peekViewResult.selectionForeground': '#a9b1d6',
|
||||
'peekViewTitle.background': '#1b1e2e',
|
||||
'peekViewTitleDescription.foreground': '#7982a9',
|
||||
'peekViewTitleLabel.foreground': '#a9b1d6',
|
||||
'pickerGroup.border': '#1b1e2e',
|
||||
'pickerGroup.foreground': '#a9b1d6',
|
||||
'progressBar.background': '#3d59a1',
|
||||
'scrollbar.shadow': '#00000033',
|
||||
'scrollbarSlider.activeBackground': '#9cacff22',
|
||||
'scrollbarSlider.background': '#9cacff15',
|
||||
'scrollbarSlider.hoverBackground': '#9cacff10',
|
||||
'selection.background': '#6f7bb635',
|
||||
'settings.headerForeground': '#6183bb',
|
||||
'sideBar.background': '#1f2335',
|
||||
'sideBar.border': '#1b1e2e',
|
||||
'sideBar.dropBackground': '#292e42',
|
||||
'sideBar.foreground': '#7982a9',
|
||||
'sideBarSectionHeader.background': '#1f2335',
|
||||
'sideBarSectionHeader.border': '#1b1e2e',
|
||||
'sideBarSectionHeader.foreground': '#a9b1d6',
|
||||
'sideBarTitle.foreground': '#7982a9',
|
||||
'statusBar.background': '#1f2335',
|
||||
'statusBar.border': '#1b1e2e',
|
||||
'statusBar.debuggingBackground': '#1f2335',
|
||||
'statusBar.debuggingForeground': '#7982a9',
|
||||
'statusBar.foreground': '#7982a9',
|
||||
'statusBar.noFolderBackground': '#1f2335',
|
||||
'statusBarItem.activeBackground': '#1b1e2e',
|
||||
'statusBarItem.hoverBackground': '#282e44',
|
||||
'statusBarItem.prominentBackground': '#1b1e2e',
|
||||
'statusBarItem.prominentHoverBackground': '#282e44',
|
||||
'tab.activeBackground': '#1f2335',
|
||||
'tab.activeBorder': '#d19a66',
|
||||
'tab.activeForeground': '#a9b1d6',
|
||||
'tab.activeModifiedBorder': '#282d42',
|
||||
'tab.border': '#1b1e2e',
|
||||
'tab.hoverForeground': '#a9b1d6',
|
||||
'tab.inactiveBackground': '#1f2335',
|
||||
'tab.inactiveForeground': '#7982a9',
|
||||
'tab.inactiveModifiedBorder': '#282d42',
|
||||
'tab.lastPinnedBorder': '#2c3147',
|
||||
'tab.unfocusedActiveBorder': '#3b4261',
|
||||
'tab.unfocusedActiveForeground': '#a9b1d6',
|
||||
'tab.unfocusedHoverForeground': '#a9b1d6',
|
||||
'tab.unfocusedInactiveForeground': '#7982a9',
|
||||
'terminal.ansiBlack': '#414868',
|
||||
'terminal.ansiBlue': '#7aa2f7',
|
||||
'terminal.ansiBrightBlack': '#414868',
|
||||
'terminal.ansiBrightBlue': '#7aa2f7',
|
||||
'terminal.ansiBrightCyan': '#7dcfff',
|
||||
'terminal.ansiBrightGreen': '#73daca',
|
||||
'terminal.ansiBrightMagenta': '#bb9af7',
|
||||
'terminal.ansiBrightRed': '#f7768e',
|
||||
'terminal.ansiBrightWhite': '#a9b1d6',
|
||||
'terminal.ansiBrightYellow': '#e0af68',
|
||||
'terminal.ansiCyan': '#7dcfff',
|
||||
'terminal.ansiGreen': '#73daca',
|
||||
'terminal.ansiMagenta': '#bb9af7',
|
||||
'terminal.ansiRed': '#f7768e',
|
||||
'terminal.ansiWhite': '#7982a9',
|
||||
'terminal.ansiYellow': '#e0af68',
|
||||
'terminal.background': '#1f2335',
|
||||
'terminal.foreground': '#7982a9',
|
||||
'terminal.selectionBackground': '#6f7bb620',
|
||||
'textBlockQuote.background': '#1f2335',
|
||||
'textCodeBlock.background': '#1f2335',
|
||||
'textLink.activeForeground': '#7dcfff',
|
||||
'textLink.foreground': '#668ac4',
|
||||
'textPreformat.foreground': '#73daca',
|
||||
'textSeparator.foreground': '#545c7e',
|
||||
'titleBar.activeBackground': '#1f2335',
|
||||
'titleBar.activeForeground': '#7982a9',
|
||||
'titleBar.border': '#1b1e2e',
|
||||
'titleBar.inactiveBackground': '#1f2335',
|
||||
'titleBar.inactiveForeground': '#7982a9',
|
||||
'tree.indentGuidesStroke': '#2e344f',
|
||||
'walkThrough.embeddedEditorBackground': '#1f2335',
|
||||
'welcomePage.buttonBackground': '#1b1e2e',
|
||||
'welcomePage.buttonHoverBackground': '#1b1e2eaa',
|
||||
'widget.shadow': '#ffffff00',
|
||||
'window.activeBorder': '#0d0f17',
|
||||
'window.inactiveBorder': '#0d0f17',
|
||||
};
|
||||
//# sourceMappingURL=tokyo.js.map
|
||||
@@ -0,0 +1,21 @@
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.default = {
|
||||
'activityBarBadge.background': '#007acc',
|
||||
'editor.background': '#1e1e1e',
|
||||
'editor.foreground': '#d4d4d4',
|
||||
'editor.inactiveSelectionBackground': '#3a3d41',
|
||||
'editor.selectionHighlightBackground': '#add6ff26',
|
||||
'editorIndentGuide.activeBackground': '#707070',
|
||||
'editorIndentGuide.background': '#404040',
|
||||
'input.placeholderForeground': '#a6a6a6',
|
||||
'list.dropBackground': '#383b3d',
|
||||
'menu.background': '#252526',
|
||||
'menu.foreground': '#cccccc',
|
||||
'settings.numberInputBackground': '#292929',
|
||||
'settings.textInputBackground': '#292929',
|
||||
'sideBarTitle.foreground': '#bbbbbb',
|
||||
'statusBarItem.remoteBackground': '#16825d',
|
||||
'statusBarItem.remoteForeground': '#ffffff',
|
||||
};
|
||||
//# sourceMappingURL=vscode.js.map
|
||||
@@ -0,0 +1,39 @@
|
||||
"use strict";
|
||||
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
||||
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
||||
return new (P || (P = Promise))(function (resolve, reject) {
|
||||
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
|
||||
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
|
||||
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
|
||||
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
||||
});
|
||||
};
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.generateTheme = void 0;
|
||||
const vscode_1 = require("vscode");
|
||||
const Theme_1 = require("./Theme");
|
||||
const defaultSettings = require("../defaultConfig.json");
|
||||
const colorObjArr_1 = require("../utils/colorObjArr");
|
||||
exports.generateTheme = {
|
||||
default: function () {
|
||||
return __awaiter(this, void 0, void 0, function* () {
|
||||
return yield Theme_1.Theme.init(defaultSettings);
|
||||
});
|
||||
},
|
||||
fromSettings: function (themeName) {
|
||||
return __awaiter(this, void 0, void 0, function* () {
|
||||
const configuration = vscode_1.workspace.getConfiguration('oneDarkPro');
|
||||
let colorObj = {};
|
||||
colorObjArr_1.default.forEach((item) => {
|
||||
let value = configuration.get('color')[item];
|
||||
if (value) {
|
||||
colorObj[item] = value;
|
||||
}
|
||||
});
|
||||
const buildConfig = Object.assign({ bold: configuration.get('bold', defaultSettings.bold), editorTheme: themeName ||
|
||||
configuration.get('editorTheme', defaultSettings.editorTheme), italic: configuration.get('italic', defaultSettings.italic), vivid: configuration.get('vivid', defaultSettings.vivid) }, colorObj);
|
||||
return yield Theme_1.Theme.init(buildConfig);
|
||||
});
|
||||
},
|
||||
};
|
||||
//# sourceMappingURL=generator.js.map
|
||||
@@ -0,0 +1,6 @@
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.generateTheme = void 0;
|
||||
var generator_1 = require("./generator");
|
||||
Object.defineProperty(exports, "generateTheme", { enumerable: true, get: function () { return generator_1.generateTheme; } });
|
||||
//# sourceMappingURL=index.js.map
|
||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,18 @@
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.default = [
|
||||
'chalky',
|
||||
'coral',
|
||||
'dark',
|
||||
'error',
|
||||
'fountainBlue',
|
||||
'green',
|
||||
'invalid',
|
||||
'lightDark',
|
||||
'lightWhite',
|
||||
'malibu',
|
||||
'purple',
|
||||
'whiskey',
|
||||
'deepRed',
|
||||
];
|
||||
//# sourceMappingURL=colorObjArr.js.map
|
||||
@@ -0,0 +1,20 @@
|
||||
"use strict";
|
||||
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
var desc = Object.getOwnPropertyDescriptor(m, k);
|
||||
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
||||
desc = { enumerable: true, get: function() { return m[k]; } };
|
||||
}
|
||||
Object.defineProperty(o, k2, desc);
|
||||
}) : (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
o[k2] = m[k];
|
||||
}));
|
||||
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
||||
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
||||
};
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
__exportStar(require("./reload-prompt"), exports);
|
||||
__exportStar(require("./updateTheme"), exports);
|
||||
__exportStar(require("./updateCSS"), exports);
|
||||
//# sourceMappingURL=index.js.map
|
||||
@@ -0,0 +1,28 @@
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.promptToReload = void 0;
|
||||
const vscode_1 = require("vscode");
|
||||
function promptToReload() {
|
||||
const action = 'Reload';
|
||||
const msg = {
|
||||
en: {
|
||||
reload: 'Please reload to apply the theme configuration changes.',
|
||||
},
|
||||
'zh-cn': {
|
||||
reload: '请重新加载以让主题配置更改生效',
|
||||
},
|
||||
};
|
||||
const config = JSON.parse(process.env.VSCODE_NLS_CONFIG);
|
||||
const locale = config.locale;
|
||||
let msgReload = msg.en.reload;
|
||||
if (locale === 'zh-cn') {
|
||||
msgReload = msg['zh-cn'].reload;
|
||||
}
|
||||
vscode_1.window.showInformationMessage(msgReload, action).then((selectedAction) => {
|
||||
if (selectedAction === action) {
|
||||
vscode_1.commands.executeCommand('workbench.action.reloadWindow');
|
||||
}
|
||||
});
|
||||
}
|
||||
exports.promptToReload = promptToReload;
|
||||
//# sourceMappingURL=reload-prompt.js.map
|
||||
@@ -0,0 +1,37 @@
|
||||
"use strict";
|
||||
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
||||
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
||||
return new (P || (P = Promise))(function (resolve, reject) {
|
||||
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
|
||||
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
|
||||
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
|
||||
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
||||
});
|
||||
};
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.updateCSS = void 0;
|
||||
const vscode_1 = require("vscode");
|
||||
const util_1 = require("util");
|
||||
const path_1 = require("path");
|
||||
const getCSSPath = file => (0, path_1.join)(__dirname, '../../', 'styles', file);
|
||||
function updateCSS() {
|
||||
const configuration = vscode_1.workspace.getConfiguration('oneDarkPro');
|
||||
const files = [
|
||||
'atom-one-dark-inside.css',
|
||||
'base-inside.css',
|
||||
'markdown-inside.css'
|
||||
];
|
||||
if (!configuration.get('markdownStyle')) {
|
||||
files.forEach(file => {
|
||||
vscode_1.workspace.fs.writeFile(vscode_1.Uri.file(getCSSPath(file)), new util_1.TextEncoder().encode(''));
|
||||
});
|
||||
}
|
||||
else {
|
||||
files.forEach((file) => __awaiter(this, void 0, void 0, function* () {
|
||||
const fileContents = yield vscode_1.workspace.fs.readFile(vscode_1.Uri.file(getCSSPath(`./origin/${file}`)));
|
||||
vscode_1.workspace.fs.writeFile(vscode_1.Uri.file(getCSSPath(`./${file}`)), fileContents);
|
||||
}));
|
||||
}
|
||||
}
|
||||
exports.updateCSS = updateCSS;
|
||||
//# sourceMappingURL=updateCSS.js.map
|
||||
@@ -0,0 +1,36 @@
|
||||
"use strict";
|
||||
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
||||
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
||||
return new (P || (P = Promise))(function (resolve, reject) {
|
||||
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
|
||||
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
|
||||
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
|
||||
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
||||
});
|
||||
};
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.updateTheme = void 0;
|
||||
const path_1 = require("path");
|
||||
const vscode_1 = require("vscode");
|
||||
const util_1 = require("util");
|
||||
const themes_1 = require("../themes");
|
||||
const _1 = require("./");
|
||||
function updateTheme() {
|
||||
return __awaiter(this, void 0, void 0, function* () {
|
||||
const writeTheme = (fileName, themeName) => __awaiter(this, void 0, void 0, function* () {
|
||||
const THEME_PATH = vscode_1.Uri.file((0, path_1.join)(__dirname, '../../', 'themes', fileName));
|
||||
const theme = yield themes_1.generateTheme.fromSettings(themeName);
|
||||
return vscode_1.workspace.fs.writeFile(THEME_PATH, new util_1.TextEncoder().encode(JSON.stringify(theme, null, 2)));
|
||||
});
|
||||
let promiseArr = [];
|
||||
promiseArr = [
|
||||
writeTheme('OneDark-Pro.json'),
|
||||
writeTheme('OneDark-Pro-flat.json', 'One Dark Pro Flat'),
|
||||
writeTheme('OneDark-Pro-darker.json', 'One Dark Pro Darker'),
|
||||
];
|
||||
yield Promise.all(promiseArr);
|
||||
(0, _1.promptToReload)();
|
||||
});
|
||||
}
|
||||
exports.updateTheme = updateTheme;
|
||||
//# sourceMappingURL=updateTheme.js.map
|
||||
File diff suppressed because one or more lines are too long
@@ -0,0 +1,36 @@
|
||||
"use strict";
|
||||
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
||||
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
||||
return new (P || (P = Promise))(function (resolve, reject) {
|
||||
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
|
||||
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
|
||||
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
|
||||
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
||||
});
|
||||
};
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.ChangelogWebview = void 0;
|
||||
const Webview_1 = require("./Webview");
|
||||
const vscode_1 = require("vscode");
|
||||
const util_1 = require("util");
|
||||
const path = require("path");
|
||||
const marked_1 = require("marked");
|
||||
class ChangelogWebview extends Webview_1.WebviewController {
|
||||
get id() {
|
||||
return 'Onedark Pro.Changelog';
|
||||
}
|
||||
get title() {
|
||||
return 'Onedark Pro theme Changelog';
|
||||
}
|
||||
get content() {
|
||||
const changelogPath = vscode_1.Uri.file(path.join(__dirname, '../../', 'CHANGELOG.md'));
|
||||
return new Promise((resolve) => __awaiter(this, void 0, void 0, function* () {
|
||||
const content = vscode_1.workspace.fs.readFile(changelogPath).then((data) => {
|
||||
return new util_1.TextDecoder().decode(data);
|
||||
});
|
||||
resolve(marked_1.marked.parse(yield content));
|
||||
}));
|
||||
}
|
||||
}
|
||||
exports.ChangelogWebview = ChangelogWebview;
|
||||
//# sourceMappingURL=Changelog.js.map
|
||||
@@ -0,0 +1,41 @@
|
||||
"use strict";
|
||||
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
||||
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
||||
return new (P || (P = Promise))(function (resolve, reject) {
|
||||
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
|
||||
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
|
||||
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
|
||||
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
||||
});
|
||||
};
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.WebviewController = void 0;
|
||||
const vscode_1 = require("vscode");
|
||||
class WebviewController extends vscode_1.Disposable {
|
||||
constructor() {
|
||||
super(() => this.dispose());
|
||||
}
|
||||
dispose() {
|
||||
if (this.disposablePanel) {
|
||||
this.disposablePanel.dispose();
|
||||
}
|
||||
}
|
||||
show() {
|
||||
return __awaiter(this, void 0, void 0, function* () {
|
||||
const fullHtml = yield this.content;
|
||||
if (this.panel !== undefined) {
|
||||
this.panel.webview.html = fullHtml;
|
||||
return this.panel.reveal(vscode_1.ViewColumn.Active);
|
||||
}
|
||||
this.panel = vscode_1.window.createWebviewPanel(this.id, this.title, vscode_1.ViewColumn.Active, {
|
||||
enableCommandUris: true,
|
||||
enableFindWidget: true,
|
||||
enableScripts: true,
|
||||
retainContextWhenHidden: true
|
||||
});
|
||||
this.panel.webview.html = fullHtml;
|
||||
});
|
||||
}
|
||||
}
|
||||
exports.WebviewController = WebviewController;
|
||||
//# sourceMappingURL=Webview.js.map
|
||||
Reference in New Issue
Block a user