first commit
This commit is contained in:
parent
7e147d8e5d
commit
3499ef52cc
4
.gitignore
vendored
4
.gitignore
vendored
@ -21,3 +21,7 @@ pnpm-debug.log*
|
||||
*.njsproj
|
||||
*.sln
|
||||
*.sw?
|
||||
*.vcd
|
||||
*.view
|
||||
|
||||
deploy.bat
|
41
README.md
41
README.md
@ -1,24 +1,33 @@
|
||||
# digital-netlist-render
|
||||
|
||||
## Project setup
|
||||
```
|
||||
npm install
|
||||
## 构建
|
||||
|
||||
```bash
|
||||
python scripts/vscode-package.py
|
||||
```
|
||||
|
||||
### Compiles and hot-reloads for development
|
||||
|
||||
## 部署
|
||||
|
||||
保证 Digital IDE 项目下为:
|
||||
|
||||
```
|
||||
npm run serve
|
||||
resources
|
||||
- dide-viewer
|
||||
- view
|
||||
- css
|
||||
- js
|
||||
- worker.js
|
||||
- index.html
|
||||
- vcd.wasm
|
||||
- vcd.css
|
||||
- ...
|
||||
- index.js
|
||||
```
|
||||
|
||||
### Compiles and minifies for production
|
||||
```
|
||||
npm run build
|
||||
```
|
||||
|
||||
### Lints and fixes files
|
||||
```
|
||||
npm run lint
|
||||
```
|
||||
---
|
||||
|
||||
### Customize configuration
|
||||
See [Configuration Reference](https://cli.vuejs.org/config/).
|
||||
触发 view 修改的地方
|
||||
|
||||
- src\components\treeview\signals.vue
|
||||
-
|
22780
package-lock.json
generated
22780
package-lock.json
generated
File diff suppressed because it is too large
Load Diff
80
package.json
80
package.json
@ -1,43 +1,45 @@
|
||||
{
|
||||
"name": "digital-netlist-render",
|
||||
"version": "0.1.0",
|
||||
"private": true,
|
||||
"scripts": {
|
||||
"serve": "vue-cli-service serve",
|
||||
"build": "vue-cli-service build",
|
||||
"lint": "vue-cli-service lint"
|
||||
},
|
||||
"dependencies": {
|
||||
"core-js": "^3.8.3",
|
||||
"vue": "^3.2.13"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/core": "^7.12.16",
|
||||
"@babel/eslint-parser": "^7.12.16",
|
||||
"@vue/cli-plugin-babel": "~5.0.0",
|
||||
"@vue/cli-plugin-eslint": "~5.0.0",
|
||||
"@vue/cli-service": "~5.0.0",
|
||||
"eslint": "^7.32.0",
|
||||
"eslint-plugin-vue": "^8.0.3"
|
||||
},
|
||||
"eslintConfig": {
|
||||
"root": true,
|
||||
"env": {
|
||||
"node": true
|
||||
"name": "digital-netlist-render",
|
||||
"version": "0.1.0",
|
||||
"private": true,
|
||||
"scripts": {
|
||||
"serve": "vue-cli-service serve",
|
||||
"build": "vue-cli-service build",
|
||||
"lint": "vue-cli-service lint"
|
||||
},
|
||||
"extends": [
|
||||
"plugin:vue/vue3-essential",
|
||||
"eslint:recommended"
|
||||
],
|
||||
"parserOptions": {
|
||||
"parser": "@babel/eslint-parser"
|
||||
"dependencies": {
|
||||
"core-js": "^3.8.3",
|
||||
"vue": "^3.2.13",
|
||||
"vue-i18n": "10.0.5",
|
||||
"element-plus": "^2.9.1"
|
||||
},
|
||||
"rules": {}
|
||||
},
|
||||
"browserslist": [
|
||||
"> 1%",
|
||||
"last 2 versions",
|
||||
"not dead",
|
||||
"not ie 11"
|
||||
]
|
||||
"devDependencies": {
|
||||
"@babel/core": "^7.12.16",
|
||||
"@babel/eslint-parser": "^7.12.16",
|
||||
"@vue/cli-plugin-babel": "~5.0.0",
|
||||
"@vue/cli-plugin-eslint": "~5.0.0",
|
||||
"@vue/cli-service": "~5.0.0",
|
||||
"eslint": "^7.32.0",
|
||||
"eslint-plugin-vue": "^8.0.3"
|
||||
},
|
||||
"eslintConfig": {
|
||||
"root": true,
|
||||
"env": {
|
||||
"node": true
|
||||
},
|
||||
"extends": [
|
||||
"plugin:vue/vue3-essential",
|
||||
"eslint:recommended"
|
||||
],
|
||||
"parserOptions": {
|
||||
"parser": "@babel/eslint-parser"
|
||||
},
|
||||
"rules": {}
|
||||
},
|
||||
"browserslist": [
|
||||
"> 1%",
|
||||
"last 2 versions",
|
||||
"not dead",
|
||||
"not ie 11"
|
||||
]
|
||||
}
|
BIN
public/CascadiaCode.woff2
Normal file
BIN
public/CascadiaCode.woff2
Normal file
Binary file not shown.
105
public/animation.css
Normal file
105
public/animation.css
Normal file
@ -0,0 +1,105 @@
|
||||
:root {
|
||||
--main-during: 0.35s;
|
||||
--fade-during: .5s;
|
||||
}
|
||||
|
||||
.fade-animation-effect {
|
||||
transition: var(--animation-5s);
|
||||
-webkit-transition: var(--animation-5s);
|
||||
-ms-transition: var(--animation-5s);
|
||||
}
|
||||
|
||||
.easy-hidden {
|
||||
visibility: hidden;
|
||||
}
|
||||
|
||||
.main-fade-enter-from,
|
||||
.main-fade-leave-to {
|
||||
opacity: 0;
|
||||
}
|
||||
.main-fade-enter-to,
|
||||
.main-fade-leave-from {
|
||||
opacity: 1;
|
||||
}
|
||||
.main-fade-enter-active,
|
||||
.main-fade-leave-active {
|
||||
transition: opacity var(--main-during);
|
||||
-moz-transition: opacity var(--main-during);
|
||||
-webkit-transition: opacity var(--main-during);
|
||||
}
|
||||
|
||||
.slide-enter-active,
|
||||
.slide-leave-active {
|
||||
transition: all .5s ease-out;
|
||||
-moz-transition: all .5s ease-out;
|
||||
-webkit-transition: all .5s ease-out;
|
||||
}
|
||||
.slide-enter-from {
|
||||
position: relative;
|
||||
transform: translateY(-100px);
|
||||
opacity: 0%;
|
||||
}
|
||||
.slide-leave-to {
|
||||
transform: translateY(100px);
|
||||
opacity: 0%;
|
||||
}
|
||||
|
||||
|
||||
.slide-down-enter-active,
|
||||
.slide-down-leave-active {
|
||||
transition: all .5s ease-out;
|
||||
-moz-transition: all .5s ease-out;
|
||||
-webkit-transition: all .5s ease-out;
|
||||
}
|
||||
.slide-down-enter-from {
|
||||
position: relative;
|
||||
transform: translateY(100px);
|
||||
opacity: 0%;
|
||||
}
|
||||
.slide-down-leave-to {
|
||||
transform: translateY(100px);
|
||||
opacity: 0%;
|
||||
}
|
||||
|
||||
.slide-up-enter-active,
|
||||
.slide-up-leave-active {
|
||||
transition: all .5s ease-out;
|
||||
-moz-transition: all .5s ease-out;
|
||||
-webkit-transition: all .5s ease-out;
|
||||
}
|
||||
.slide-up-enter-from {
|
||||
position: relative;
|
||||
transform: translateY(-100px);
|
||||
opacity: 0%;
|
||||
}
|
||||
.slide-up-leave-to {
|
||||
transform: translateY(-100px);
|
||||
opacity: 0%;
|
||||
}
|
||||
|
||||
.collapse-from-top-enter-active,
|
||||
.collapse-from-top-leave-active {
|
||||
transition: var(--animation-3s);
|
||||
-moz-transition: var(--animation-3s);
|
||||
-webkit-transition: var(--animation-3s);
|
||||
}
|
||||
|
||||
.collapse-from-top-enter-from {
|
||||
transform: scaleY(0);
|
||||
transform-origin: center top;
|
||||
opacity: 0%;
|
||||
}
|
||||
.collapse-from-top-leave-to {
|
||||
transform: scaleY(0);
|
||||
transform-origin: center top;
|
||||
opacity: 0%;
|
||||
}
|
||||
|
||||
@keyframes loading-mask {
|
||||
0% {
|
||||
background-position: 100% 50%;
|
||||
}
|
||||
100% {
|
||||
background-position: 0 50%;
|
||||
}
|
||||
}
|
772
public/default-dark.css
Normal file
772
public/default-dark.css
Normal file
@ -0,0 +1,772 @@
|
||||
:root {
|
||||
--vscode-foreground: #cccccc;
|
||||
--vscode-disabledForeground: rgba(204, 204, 204, 0.5);
|
||||
--vscode-errorForeground: #f48771;
|
||||
--vscode-descriptionForeground: rgba(204, 204, 204, 0.7);
|
||||
--vscode-icon-foreground: #c5c5c5;
|
||||
--vscode-focusBorder: #007fd4;
|
||||
--vscode-textLink-foreground: #3794ff;
|
||||
--vscode-textLink-activeForeground: #3794ff;
|
||||
--vscode-textSeparator-foreground: rgba(255, 255, 255, 0.18);
|
||||
--vscode-textPreformat-foreground: #d7ba7d;
|
||||
--vscode-textPreformat-background: rgba(255, 255, 255, 0.1);
|
||||
--vscode-textBlockQuote-background: #222222;
|
||||
--vscode-textBlockQuote-border: rgba(0, 122, 204, 0.5);
|
||||
--vscode-textCodeBlock-background: rgba(10, 10, 10, 0.4);
|
||||
--vscode-sash-hoverBorder: #007fd4;
|
||||
--vscode-badge-background: #4d4d4d;
|
||||
--vscode-badge-foreground: #ffffff;
|
||||
--vscode-scrollbar-shadow: #000000;
|
||||
--vscode-scrollbarSlider-background: rgba(121, 121, 121, 0.4);
|
||||
--vscode-scrollbarSlider-hoverBackground: rgba(100, 100, 100, 0.7);
|
||||
--vscode-scrollbarSlider-activeBackground: rgba(191, 191, 191, 0.4);
|
||||
--vscode-progressBar-background: #0e70c0;
|
||||
--vscode-editor-background: #1e1e1e;
|
||||
--vscode-editor-foreground: #d4d4d4;
|
||||
--vscode-editorStickyScroll-background: #1e1e1e;
|
||||
--vscode-editorStickyScrollHover-background: #2a2d2e;
|
||||
--vscode-editorStickyScroll-shadow: #000000;
|
||||
--vscode-editorWidget-background: #252526;
|
||||
--vscode-editorWidget-foreground: #cccccc;
|
||||
--vscode-editorWidget-border: #454545;
|
||||
--vscode-editorError-foreground: #f14c4c;
|
||||
--vscode-editorWarning-foreground: #cca700;
|
||||
--vscode-editorInfo-foreground: #3794ff;
|
||||
--vscode-editorHint-foreground: rgba(238, 238, 238, 0.7);
|
||||
--vscode-editorLink-activeForeground: #4e94ce;
|
||||
--vscode-editor-selectionBackground: #264f78;
|
||||
--vscode-editor-inactiveSelectionBackground: #3a3d41;
|
||||
--vscode-editor-selectionHighlightBackground: rgba(173, 214, 255, 0.15);
|
||||
--vscode-editor-findMatchBackground: #515c6a;
|
||||
--vscode-editor-findMatchHighlightBackground: rgba(234, 92, 0, 0.33);
|
||||
--vscode-editor-findRangeHighlightBackground: rgba(58, 61, 65, 0.4);
|
||||
--vscode-editor-hoverHighlightBackground: rgba(38, 79, 120, 0.25);
|
||||
--vscode-editorHoverWidget-background: #252526;
|
||||
--vscode-editorHoverWidget-foreground: #cccccc;
|
||||
--vscode-editorHoverWidget-border: #454545;
|
||||
--vscode-editorHoverWidget-statusBarBackground: #2c2c2d;
|
||||
--vscode-editorInlayHint-foreground: #969696;
|
||||
--vscode-editorInlayHint-background: rgba(77, 77, 77, 0.1);
|
||||
--vscode-editorInlayHint-typeForeground: #969696;
|
||||
--vscode-editorInlayHint-typeBackground: rgba(77, 77, 77, 0.1);
|
||||
--vscode-editorInlayHint-parameterForeground: #969696;
|
||||
--vscode-editorInlayHint-parameterBackground: rgba(77, 77, 77, 0.1);
|
||||
--vscode-editorLightBulb-foreground: #ffcc00;
|
||||
--vscode-editorLightBulbAutoFix-foreground: #75beff;
|
||||
--vscode-editorLightBulbAi-foreground: #ffcc00;
|
||||
--vscode-editor-snippetTabstopHighlightBackground: rgba(124, 124, 124, 0.3);
|
||||
--vscode-editor-snippetFinalTabstopHighlightBorder: #525252;
|
||||
--vscode-diffEditor-insertedTextBackground: rgba(156, 204, 44, 0.2);
|
||||
--vscode-diffEditor-removedTextBackground: rgba(255, 0, 0, 0.2);
|
||||
--vscode-diffEditor-insertedLineBackground: rgba(155, 185, 85, 0.2);
|
||||
--vscode-diffEditor-removedLineBackground: rgba(255, 0, 0, 0.2);
|
||||
--vscode-diffEditor-diagonalFill: rgba(204, 204, 204, 0.2);
|
||||
--vscode-diffEditor-unchangedRegionBackground: #252526;
|
||||
--vscode-diffEditor-unchangedRegionForeground: #cccccc;
|
||||
--vscode-diffEditor-unchangedCodeBackground: rgba(116, 116, 116, 0.16);
|
||||
--vscode-widget-shadow: rgba(0, 0, 0, 0.36);
|
||||
--vscode-widget-border: #303031;
|
||||
--vscode-toolbar-hoverBackground: rgba(90, 93, 94, 0.31);
|
||||
--vscode-toolbar-activeBackground: rgba(99, 102, 103, 0.31);
|
||||
--vscode-breadcrumb-foreground: rgba(204, 204, 204, 0.8);
|
||||
--vscode-breadcrumb-background: #1e1e1e;
|
||||
--vscode-breadcrumb-focusForeground: #e0e0e0;
|
||||
--vscode-breadcrumb-activeSelectionForeground: #e0e0e0;
|
||||
--vscode-breadcrumbPicker-background: #252526;
|
||||
--vscode-merge-currentHeaderBackground: rgba(64, 200, 174, 0.5);
|
||||
--vscode-merge-currentContentBackground: rgba(64, 200, 174, 0.2);
|
||||
--vscode-merge-incomingHeaderBackground: rgba(64, 166, 255, 0.5);
|
||||
--vscode-merge-incomingContentBackground: rgba(64, 166, 255, 0.2);
|
||||
--vscode-merge-commonHeaderBackground: rgba(96, 96, 96, 0.4);
|
||||
--vscode-merge-commonContentBackground: rgba(96, 96, 96, 0.16);
|
||||
--vscode-editorOverviewRuler-currentContentForeground: rgba(64, 200, 174, 0.5);
|
||||
--vscode-editorOverviewRuler-incomingContentForeground: rgba(64, 166, 255, 0.5);
|
||||
--vscode-editorOverviewRuler-commonContentForeground: rgba(96, 96, 96, 0.4);
|
||||
--vscode-editorOverviewRuler-findMatchForeground: rgba(209, 134, 22, 0.49);
|
||||
--vscode-editorOverviewRuler-selectionHighlightForeground: rgba(160, 160, 160, 0.8);
|
||||
--vscode-problemsErrorIcon-foreground: #f14c4c;
|
||||
--vscode-problemsWarningIcon-foreground: #cca700;
|
||||
--vscode-problemsInfoIcon-foreground: #3794ff;
|
||||
--vscode-minimap-findMatchHighlight: #d18616;
|
||||
--vscode-minimap-selectionOccurrenceHighlight: #676767;
|
||||
--vscode-minimap-selectionHighlight: #264f78;
|
||||
--vscode-minimap-infoHighlight: #3794ff;
|
||||
--vscode-minimap-warningHighlight: #cca700;
|
||||
--vscode-minimap-errorHighlight: rgba(255, 18, 18, 0.7);
|
||||
--vscode-minimap-foregroundOpacity: #000000;
|
||||
--vscode-minimapSlider-background: rgba(121, 121, 121, 0.2);
|
||||
--vscode-minimapSlider-hoverBackground: rgba(100, 100, 100, 0.35);
|
||||
--vscode-minimapSlider-activeBackground: rgba(191, 191, 191, 0.2);
|
||||
--vscode-charts-foreground: #cccccc;
|
||||
--vscode-charts-lines: rgba(204, 204, 204, 0.5);
|
||||
--vscode-charts-red: #f14c4c;
|
||||
--vscode-charts-blue: #3794ff;
|
||||
--vscode-charts-yellow: #cca700;
|
||||
--vscode-charts-orange: #d18616;
|
||||
--vscode-charts-green: #89d185;
|
||||
--vscode-charts-purple: #b180d7;
|
||||
--vscode-input-background: #3c3c3c;
|
||||
--vscode-input-foreground: #cccccc;
|
||||
--vscode-inputOption-activeBorder: #007acc;
|
||||
--vscode-inputOption-hoverBackground: rgba(90, 93, 94, 0.5);
|
||||
--vscode-inputOption-activeBackground: rgba(0, 127, 212, 0.4);
|
||||
--vscode-inputOption-activeForeground: #ffffff;
|
||||
--vscode-input-placeholderForeground: #a6a6a6;
|
||||
--vscode-inputValidation-infoBackground: #063b49;
|
||||
--vscode-inputValidation-infoBorder: #007acc;
|
||||
--vscode-inputValidation-warningBackground: #352a05;
|
||||
--vscode-inputValidation-warningBorder: #b89500;
|
||||
--vscode-inputValidation-errorBackground: #5a1d1d;
|
||||
--vscode-inputValidation-errorBorder: #be1100;
|
||||
--vscode-dropdown-background: #3c3c3c;
|
||||
--vscode-dropdown-foreground: #f0f0f0;
|
||||
--vscode-dropdown-border: #3c3c3c;
|
||||
--vscode-button-foreground: #ffffff;
|
||||
--vscode-button-separator: rgba(255, 255, 255, 0.4);
|
||||
--vscode-button-background: #0e639c;
|
||||
--vscode-button-hoverBackground: #1177bb;
|
||||
--vscode-button-secondaryForeground: #ffffff;
|
||||
--vscode-button-secondaryBackground: #3a3d41;
|
||||
--vscode-button-secondaryHoverBackground: #45494e;
|
||||
--vscode-radio-activeForeground: #ffffff;
|
||||
--vscode-radio-activeBackground: rgba(0, 127, 212, 0.4);
|
||||
--vscode-radio-activeBorder: #007acc;
|
||||
--vscode-radio-inactiveBorder: rgba(255, 255, 255, 0.2);
|
||||
--vscode-radio-inactiveHoverBackground: rgba(90, 93, 94, 0.5);
|
||||
--vscode-checkbox-background: #3c3c3c;
|
||||
--vscode-checkbox-selectBackground: #252526;
|
||||
--vscode-checkbox-foreground: #f0f0f0;
|
||||
--vscode-checkbox-border: #6b6b6b;
|
||||
--vscode-checkbox-selectBorder: #c5c5c5;
|
||||
--vscode-keybindingLabel-background: rgba(128, 128, 128, 0.17);
|
||||
--vscode-keybindingLabel-foreground: #cccccc;
|
||||
--vscode-keybindingLabel-border: rgba(51, 51, 51, 0.6);
|
||||
--vscode-keybindingLabel-bottomBorder: rgba(68, 68, 68, 0.6);
|
||||
--vscode-list-focusOutline: #007fd4;
|
||||
--vscode-list-activeSelectionBackground: #04395e;
|
||||
--vscode-list-activeSelectionForeground: #ffffff;
|
||||
--vscode-list-activeSelectionIconForeground: #ffffff;
|
||||
--vscode-list-inactiveSelectionBackground: #37373d;
|
||||
--vscode-list-hoverBackground: #2a2d2e;
|
||||
--vscode-list-dropBackground: #383b3d;
|
||||
--vscode-list-dropBetweenBackground: #c5c5c5;
|
||||
--vscode-list-highlightForeground: #2aaaff;
|
||||
--vscode-list-focusHighlightForeground: #2aaaff;
|
||||
--vscode-list-invalidItemForeground: #b89500;
|
||||
--vscode-list-errorForeground: #f88070;
|
||||
--vscode-list-warningForeground: #cca700;
|
||||
--vscode-listFilterWidget-background: #252526;
|
||||
--vscode-listFilterWidget-outline: rgba(0, 0, 0, 0);
|
||||
--vscode-listFilterWidget-noMatchesOutline: #be1100;
|
||||
--vscode-listFilterWidget-shadow: rgba(0, 0, 0, 0.36);
|
||||
--vscode-list-filterMatchBackground: rgba(234, 92, 0, 0.33);
|
||||
--vscode-list-deemphasizedForeground: #8c8c8c;
|
||||
--vscode-tree-indentGuidesStroke: #585858;
|
||||
--vscode-tree-inactiveIndentGuidesStroke: rgba(88, 88, 88, 0.4);
|
||||
--vscode-tree-tableColumnsBorder: rgba(204, 204, 204, 0.13);
|
||||
--vscode-tree-tableOddRowsBackground: rgba(204, 204, 204, 0.04);
|
||||
--vscode-editorActionList-background: #252526;
|
||||
--vscode-editorActionList-foreground: #cccccc;
|
||||
--vscode-editorActionList-focusForeground: #ffffff;
|
||||
--vscode-editorActionList-focusBackground: #04395e;
|
||||
--vscode-menu-border: #454545;
|
||||
--vscode-menu-foreground: #cccccc;
|
||||
--vscode-menu-background: #252526;
|
||||
--vscode-menu-selectionForeground: #ffffff;
|
||||
--vscode-menu-selectionBackground: #0078d4;
|
||||
--vscode-menu-separatorBackground: #454545;
|
||||
--vscode-quickInput-background: #252526;
|
||||
--vscode-quickInput-foreground: #cccccc;
|
||||
--vscode-quickInputTitle-background: rgba(255, 255, 255, 0.1);
|
||||
--vscode-pickerGroup-foreground: #3794ff;
|
||||
--vscode-pickerGroup-border: #3f3f46;
|
||||
--vscode-quickInputList-focusForeground: #ffffff;
|
||||
--vscode-quickInputList-focusIconForeground: #ffffff;
|
||||
--vscode-quickInputList-focusBackground: #04395e;
|
||||
--vscode-search-resultsInfoForeground: rgba(204, 204, 204, 0.65);
|
||||
--vscode-searchEditor-findMatchBackground: rgba(234, 92, 0, 0.22);
|
||||
--vscode-editor-lineHighlightBorder: #282828;
|
||||
--vscode-editor-rangeHighlightBackground: rgba(255, 255, 255, 0.04);
|
||||
--vscode-editor-symbolHighlightBackground: rgba(234, 92, 0, 0.33);
|
||||
--vscode-editorCursor-foreground: #aeafad;
|
||||
--vscode-editorMultiCursor-primary-foreground: #aeafad;
|
||||
--vscode-editorMultiCursor-secondary-foreground: #aeafad;
|
||||
--vscode-editorWhitespace-foreground: rgba(227, 228, 226, 0.16);
|
||||
--vscode-editorLineNumber-foreground: #858585;
|
||||
--vscode-editorIndentGuide-background: rgba(227, 228, 226, 0.16);
|
||||
--vscode-editorIndentGuide-activeBackground: rgba(227, 228, 226, 0.16);
|
||||
--vscode-editorIndentGuide-background1: #404040;
|
||||
--vscode-editorIndentGuide-background2: rgba(0, 0, 0, 0);
|
||||
--vscode-editorIndentGuide-background3: rgba(0, 0, 0, 0);
|
||||
--vscode-editorIndentGuide-background4: rgba(0, 0, 0, 0);
|
||||
--vscode-editorIndentGuide-background5: rgba(0, 0, 0, 0);
|
||||
--vscode-editorIndentGuide-background6: rgba(0, 0, 0, 0);
|
||||
--vscode-editorIndentGuide-activeBackground1: #707070;
|
||||
--vscode-editorIndentGuide-activeBackground2: rgba(0, 0, 0, 0);
|
||||
--vscode-editorIndentGuide-activeBackground3: rgba(0, 0, 0, 0);
|
||||
--vscode-editorIndentGuide-activeBackground4: rgba(0, 0, 0, 0);
|
||||
--vscode-editorIndentGuide-activeBackground5: rgba(0, 0, 0, 0);
|
||||
--vscode-editorIndentGuide-activeBackground6: rgba(0, 0, 0, 0);
|
||||
--vscode-editorActiveLineNumber-foreground: #c6c6c6;
|
||||
--vscode-editorLineNumber-activeForeground: #c6c6c6;
|
||||
--vscode-editorRuler-foreground: #5a5a5a;
|
||||
--vscode-editorCodeLens-foreground: #999999;
|
||||
--vscode-editorBracketMatch-background: rgba(0, 100, 0, 0.1);
|
||||
--vscode-editorBracketMatch-border: #888888;
|
||||
--vscode-editorOverviewRuler-border: rgba(127, 127, 127, 0.3);
|
||||
--vscode-editorGutter-background: #1e1e1e;
|
||||
--vscode-editorUnnecessaryCode-opacity: rgba(0, 0, 0, 0.67);
|
||||
--vscode-editorGhostText-foreground: rgba(255, 255, 255, 0.34);
|
||||
--vscode-editorOverviewRuler-rangeHighlightForeground: rgba(0, 122, 204, 0.6);
|
||||
--vscode-editorOverviewRuler-errorForeground: rgba(255, 18, 18, 0.7);
|
||||
--vscode-editorOverviewRuler-warningForeground: #cca700;
|
||||
--vscode-editorOverviewRuler-infoForeground: #3794ff;
|
||||
--vscode-editorBracketHighlight-foreground1: #ffd700;
|
||||
--vscode-editorBracketHighlight-foreground2: #da70d6;
|
||||
--vscode-editorBracketHighlight-foreground3: #179fff;
|
||||
--vscode-editorBracketHighlight-foreground4: rgba(0, 0, 0, 0);
|
||||
--vscode-editorBracketHighlight-foreground5: rgba(0, 0, 0, 0);
|
||||
--vscode-editorBracketHighlight-foreground6: rgba(0, 0, 0, 0);
|
||||
--vscode-editorBracketHighlight-unexpectedBracket-foreground: rgba(255, 18, 18, 0.8);
|
||||
--vscode-editorBracketPairGuide-background1: rgba(0, 0, 0, 0);
|
||||
--vscode-editorBracketPairGuide-background2: rgba(0, 0, 0, 0);
|
||||
--vscode-editorBracketPairGuide-background3: rgba(0, 0, 0, 0);
|
||||
--vscode-editorBracketPairGuide-background4: rgba(0, 0, 0, 0);
|
||||
--vscode-editorBracketPairGuide-background5: rgba(0, 0, 0, 0);
|
||||
--vscode-editorBracketPairGuide-background6: rgba(0, 0, 0, 0);
|
||||
--vscode-editorBracketPairGuide-activeBackground1: rgba(0, 0, 0, 0);
|
||||
--vscode-editorBracketPairGuide-activeBackground2: rgba(0, 0, 0, 0);
|
||||
--vscode-editorBracketPairGuide-activeBackground3: rgba(0, 0, 0, 0);
|
||||
--vscode-editorBracketPairGuide-activeBackground4: rgba(0, 0, 0, 0);
|
||||
--vscode-editorBracketPairGuide-activeBackground5: rgba(0, 0, 0, 0);
|
||||
--vscode-editorBracketPairGuide-activeBackground6: rgba(0, 0, 0, 0);
|
||||
--vscode-editorUnicodeHighlight-border: #cca700;
|
||||
--vscode-diffEditor-move-border: rgba(139, 139, 139, 0.61);
|
||||
--vscode-diffEditor-moveActive-border: #ffa500;
|
||||
--vscode-diffEditor-unchangedRegionShadow: #000000;
|
||||
--vscode-editorOverviewRuler-bracketMatchForeground: #a0a0a0;
|
||||
--vscode-symbolIcon-arrayForeground: #cccccc;
|
||||
--vscode-symbolIcon-booleanForeground: #cccccc;
|
||||
--vscode-symbolIcon-classForeground: #ee9d28;
|
||||
--vscode-symbolIcon-colorForeground: #cccccc;
|
||||
--vscode-symbolIcon-constantForeground: #cccccc;
|
||||
--vscode-symbolIcon-constructorForeground: #b180d7;
|
||||
--vscode-symbolIcon-enumeratorForeground: #ee9d28;
|
||||
--vscode-symbolIcon-enumeratorMemberForeground: #75beff;
|
||||
--vscode-symbolIcon-eventForeground: #ee9d28;
|
||||
--vscode-symbolIcon-fieldForeground: #75beff;
|
||||
--vscode-symbolIcon-fileForeground: #cccccc;
|
||||
--vscode-symbolIcon-folderForeground: #cccccc;
|
||||
--vscode-symbolIcon-functionForeground: #b180d7;
|
||||
--vscode-symbolIcon-interfaceForeground: #75beff;
|
||||
--vscode-symbolIcon-keyForeground: #cccccc;
|
||||
--vscode-symbolIcon-keywordForeground: #cccccc;
|
||||
--vscode-symbolIcon-methodForeground: #b180d7;
|
||||
--vscode-symbolIcon-moduleForeground: #cccccc;
|
||||
--vscode-symbolIcon-namespaceForeground: #cccccc;
|
||||
--vscode-symbolIcon-nullForeground: #cccccc;
|
||||
--vscode-symbolIcon-numberForeground: #cccccc;
|
||||
--vscode-symbolIcon-objectForeground: #cccccc;
|
||||
--vscode-symbolIcon-operatorForeground: #cccccc;
|
||||
--vscode-symbolIcon-packageForeground: #cccccc;
|
||||
--vscode-symbolIcon-propertyForeground: #cccccc;
|
||||
--vscode-symbolIcon-referenceForeground: #cccccc;
|
||||
--vscode-symbolIcon-snippetForeground: #cccccc;
|
||||
--vscode-symbolIcon-stringForeground: #cccccc;
|
||||
--vscode-symbolIcon-structForeground: #cccccc;
|
||||
--vscode-symbolIcon-textForeground: #cccccc;
|
||||
--vscode-symbolIcon-typeParameterForeground: #cccccc;
|
||||
--vscode-symbolIcon-unitForeground: #cccccc;
|
||||
--vscode-symbolIcon-variableForeground: #75beff;
|
||||
--vscode-actionBar-toggledBackground: #383a49;
|
||||
--vscode-peekViewTitle-background: #252526;
|
||||
--vscode-peekViewTitleLabel-foreground: #ffffff;
|
||||
--vscode-peekViewTitleDescription-foreground: rgba(204, 204, 204, 0.7);
|
||||
--vscode-peekView-border: #3794ff;
|
||||
--vscode-peekViewResult-background: #252526;
|
||||
--vscode-peekViewResult-lineForeground: #bbbbbb;
|
||||
--vscode-peekViewResult-fileForeground: #ffffff;
|
||||
--vscode-peekViewResult-selectionBackground: rgba(51, 153, 255, 0.2);
|
||||
--vscode-peekViewResult-selectionForeground: #ffffff;
|
||||
--vscode-peekViewEditor-background: #001f33;
|
||||
--vscode-peekViewEditorGutter-background: #001f33;
|
||||
--vscode-peekViewEditorStickyScroll-background: #001f33;
|
||||
--vscode-peekViewResult-matchHighlightBackground: rgba(234, 92, 0, 0.3);
|
||||
--vscode-peekViewEditor-matchHighlightBackground: rgba(255, 143, 0, 0.6);
|
||||
--vscode-editor-foldBackground: rgba(38, 79, 120, 0.3);
|
||||
--vscode-editor-foldPlaceholderForeground: #808080;
|
||||
--vscode-editorGutter-foldingControlForeground: #c5c5c5;
|
||||
--vscode-editorSuggestWidget-background: #252526;
|
||||
--vscode-editorSuggestWidget-border: #454545;
|
||||
--vscode-editorSuggestWidget-foreground: #d4d4d4;
|
||||
--vscode-editorSuggestWidget-selectedForeground: #ffffff;
|
||||
--vscode-editorSuggestWidget-selectedIconForeground: #ffffff;
|
||||
--vscode-editorSuggestWidget-selectedBackground: #04395e;
|
||||
--vscode-editorSuggestWidget-highlightForeground: #2aaaff;
|
||||
--vscode-editorSuggestWidget-focusHighlightForeground: #2aaaff;
|
||||
--vscode-editorSuggestWidgetStatus-foreground: rgba(212, 212, 212, 0.5);
|
||||
--vscode-editorMarkerNavigationError-background: #f14c4c;
|
||||
--vscode-editorMarkerNavigationError-headerBackground: rgba(241, 76, 76, 0.1);
|
||||
--vscode-editorMarkerNavigationWarning-background: #cca700;
|
||||
--vscode-editorMarkerNavigationWarning-headerBackground: rgba(204, 167, 0, 0.1);
|
||||
--vscode-editorMarkerNavigationInfo-background: #3794ff;
|
||||
--vscode-editorMarkerNavigationInfo-headerBackground: rgba(55, 148, 255, 0.1);
|
||||
--vscode-editorMarkerNavigation-background: #1e1e1e;
|
||||
--vscode-editor-linkedEditingBackground: rgba(255, 0, 0, 0.3);
|
||||
--vscode-editor-wordHighlightBackground: rgba(87, 87, 87, 0.72);
|
||||
--vscode-editor-wordHighlightStrongBackground: rgba(0, 73, 114, 0.72);
|
||||
--vscode-editor-wordHighlightTextBackground: rgba(87, 87, 87, 0.72);
|
||||
--vscode-editorOverviewRuler-wordHighlightForeground: rgba(160, 160, 160, 0.8);
|
||||
--vscode-editorOverviewRuler-wordHighlightStrongForeground: rgba(192, 160, 192, 0.8);
|
||||
--vscode-editorOverviewRuler-wordHighlightTextForeground: rgba(160, 160, 160, 0.8);
|
||||
--vscode-editorHoverWidget-highlightForeground: #2aaaff;
|
||||
--vscode-editor-placeholder-foreground: rgba(255, 255, 255, 0.34);
|
||||
--vscode-tab-activeBackground: #1e1e1e;
|
||||
--vscode-tab-unfocusedActiveBackground: #1e1e1e;
|
||||
--vscode-tab-inactiveBackground: #2d2d2d;
|
||||
--vscode-tab-unfocusedInactiveBackground: #2d2d2d;
|
||||
--vscode-tab-activeForeground: #ffffff;
|
||||
--vscode-tab-inactiveForeground: rgba(255, 255, 255, 0.5);
|
||||
--vscode-tab-unfocusedActiveForeground: rgba(255, 255, 255, 0.5);
|
||||
--vscode-tab-unfocusedInactiveForeground: rgba(255, 255, 255, 0.25);
|
||||
--vscode-tab-border: #252526;
|
||||
--vscode-tab-lastPinnedBorder: rgba(204, 204, 204, 0.2);
|
||||
--vscode-tab-selectedBackground: #222222;
|
||||
--vscode-tab-selectedForeground: rgba(255, 255, 255, 0.63);
|
||||
--vscode-tab-dragAndDropBorder: #ffffff;
|
||||
--vscode-tab-activeModifiedBorder: #3399cc;
|
||||
--vscode-tab-inactiveModifiedBorder: rgba(51, 153, 204, 0.5);
|
||||
--vscode-tab-unfocusedActiveModifiedBorder: rgba(51, 153, 204, 0.5);
|
||||
--vscode-tab-unfocusedInactiveModifiedBorder: rgba(51, 153, 204, 0.25);
|
||||
--vscode-editorPane-background: #1e1e1e;
|
||||
--vscode-editorGroupHeader-tabsBackground: #252526;
|
||||
--vscode-editorGroupHeader-noTabsBackground: #1e1e1e;
|
||||
--vscode-editorGroup-border: #444444;
|
||||
--vscode-editorGroup-dropBackground: rgba(83, 89, 93, 0.5);
|
||||
--vscode-editorGroup-dropIntoPromptForeground: #cccccc;
|
||||
--vscode-editorGroup-dropIntoPromptBackground: #252526;
|
||||
--vscode-sideBySideEditor-horizontalBorder: #444444;
|
||||
--vscode-sideBySideEditor-verticalBorder: #444444;
|
||||
--vscode-panel-background: #1e1e1e;
|
||||
--vscode-panel-border: rgba(128, 128, 128, 0.35);
|
||||
--vscode-panelTitle-activeForeground: #e7e7e7;
|
||||
--vscode-panelTitle-inactiveForeground: rgba(231, 231, 231, 0.6);
|
||||
--vscode-panelTitle-activeBorder: #e7e7e7;
|
||||
--vscode-panel-dropBorder: #e7e7e7;
|
||||
--vscode-panelSection-dropBackground: rgba(83, 89, 93, 0.5);
|
||||
--vscode-panelSectionHeader-background: rgba(128, 128, 128, 0.2);
|
||||
--vscode-panelSection-border: rgba(128, 128, 128, 0.35);
|
||||
--vscode-panelStickyScroll-background: #1e1e1e;
|
||||
--vscode-panelStickyScroll-shadow: #000000;
|
||||
--vscode-banner-background: #04395e;
|
||||
--vscode-banner-foreground: #ffffff;
|
||||
--vscode-banner-iconForeground: #3794ff;
|
||||
--vscode-statusBar-foreground: #ffffff;
|
||||
--vscode-statusBar-noFolderForeground: #ffffff;
|
||||
--vscode-statusBar-background: #007acc;
|
||||
--vscode-statusBar-noFolderBackground: #68217a;
|
||||
--vscode-statusBar-focusBorder: #ffffff;
|
||||
--vscode-statusBarItem-activeBackground: rgba(255, 255, 255, 0.18);
|
||||
--vscode-statusBarItem-focusBorder: #ffffff;
|
||||
--vscode-statusBarItem-hoverBackground: rgba(255, 255, 255, 0.12);
|
||||
--vscode-statusBarItem-hoverForeground: #ffffff;
|
||||
--vscode-statusBarItem-compactHoverBackground: rgba(255, 255, 255, 0.2);
|
||||
--vscode-statusBarItem-prominentForeground: #ffffff;
|
||||
--vscode-statusBarItem-prominentBackground: rgba(0, 0, 0, 0.5);
|
||||
--vscode-statusBarItem-prominentHoverForeground: #ffffff;
|
||||
--vscode-statusBarItem-prominentHoverBackground: rgba(0, 0, 0, 0.3);
|
||||
--vscode-statusBarItem-errorBackground: #c72e0f;
|
||||
--vscode-statusBarItem-errorForeground: #ffffff;
|
||||
--vscode-statusBarItem-errorHoverForeground: #ffffff;
|
||||
--vscode-statusBarItem-errorHoverBackground: rgba(255, 255, 255, 0.12);
|
||||
--vscode-statusBarItem-warningBackground: #7a6400;
|
||||
--vscode-statusBarItem-warningForeground: #ffffff;
|
||||
--vscode-statusBarItem-warningHoverForeground: #ffffff;
|
||||
--vscode-statusBarItem-warningHoverBackground: rgba(255, 255, 255, 0.12);
|
||||
--vscode-activityBar-background: #333333;
|
||||
--vscode-activityBar-foreground: #ffffff;
|
||||
--vscode-activityBar-inactiveForeground: rgba(255, 255, 255, 0.4);
|
||||
--vscode-activityBar-activeBorder: #ffffff;
|
||||
--vscode-activityBar-dropBorder: #ffffff;
|
||||
--vscode-activityBarBadge-background: #007acc;
|
||||
--vscode-activityBarBadge-foreground: #ffffff;
|
||||
--vscode-activityBarTop-foreground: #e7e7e7;
|
||||
--vscode-activityBarTop-activeBorder: #e7e7e7;
|
||||
--vscode-activityBarTop-inactiveForeground: rgba(231, 231, 231, 0.6);
|
||||
--vscode-activityBarTop-dropBorder: #e7e7e7;
|
||||
--vscode-profileBadge-background: #4d4d4d;
|
||||
--vscode-profileBadge-foreground: #ffffff;
|
||||
--vscode-statusBarItem-remoteBackground: #16825d;
|
||||
--vscode-statusBarItem-remoteForeground: #ffffff;
|
||||
--vscode-statusBarItem-remoteHoverForeground: #ffffff;
|
||||
--vscode-statusBarItem-remoteHoverBackground: rgba(255, 255, 255, 0.12);
|
||||
--vscode-statusBarItem-offlineBackground: #6c1717;
|
||||
--vscode-statusBarItem-offlineForeground: #ffffff;
|
||||
--vscode-statusBarItem-offlineHoverForeground: #ffffff;
|
||||
--vscode-statusBarItem-offlineHoverBackground: rgba(255, 255, 255, 0.12);
|
||||
--vscode-extensionBadge-remoteBackground: #007acc;
|
||||
--vscode-extensionBadge-remoteForeground: #ffffff;
|
||||
--vscode-sideBar-background: #252526;
|
||||
--vscode-sideBarTitle-background: #252526;
|
||||
--vscode-sideBarTitle-foreground: #bbbbbb;
|
||||
--vscode-sideBar-dropBackground: rgba(83, 89, 93, 0.5);
|
||||
--vscode-sideBarSectionHeader-background: rgba(0, 0, 0, 0);
|
||||
--vscode-sideBarSectionHeader-border: rgba(204, 204, 204, 0.2);
|
||||
--vscode-sideBarActivityBarTop-border: rgba(204, 204, 204, 0.2);
|
||||
--vscode-sideBarStickyScroll-background: #252526;
|
||||
--vscode-sideBarStickyScroll-shadow: #000000;
|
||||
--vscode-titleBar-activeForeground: #cccccc;
|
||||
--vscode-titleBar-inactiveForeground: rgba(204, 204, 204, 0.6);
|
||||
--vscode-titleBar-activeBackground: #3c3c3c;
|
||||
--vscode-titleBar-inactiveBackground: rgba(60, 60, 60, 0.6);
|
||||
--vscode-menubar-selectionForeground: #cccccc;
|
||||
--vscode-menubar-selectionBackground: rgba(90, 93, 94, 0.31);
|
||||
--vscode-commandCenter-foreground: #cccccc;
|
||||
--vscode-commandCenter-activeForeground: #cccccc;
|
||||
--vscode-commandCenter-inactiveForeground: rgba(204, 204, 204, 0.6);
|
||||
--vscode-commandCenter-background: rgba(255, 255, 255, 0.05);
|
||||
--vscode-commandCenter-activeBackground: rgba(255, 255, 255, 0.08);
|
||||
--vscode-commandCenter-border: rgba(204, 204, 204, 0.2);
|
||||
--vscode-commandCenter-activeBorder: rgba(204, 204, 204, 0.3);
|
||||
--vscode-commandCenter-inactiveBorder: rgba(204, 204, 204, 0.15);
|
||||
--vscode-notificationCenter-border: #303031;
|
||||
--vscode-notificationToast-border: #303031;
|
||||
--vscode-notifications-foreground: #cccccc;
|
||||
--vscode-notifications-background: #252526;
|
||||
--vscode-notificationLink-foreground: #3794ff;
|
||||
--vscode-notificationCenterHeader-background: #303031;
|
||||
--vscode-notifications-border: #303031;
|
||||
--vscode-notificationsErrorIcon-foreground: #f14c4c;
|
||||
--vscode-notificationsWarningIcon-foreground: #cca700;
|
||||
--vscode-notificationsInfoIcon-foreground: #3794ff;
|
||||
--vscode-inlineChat-foreground: #cccccc;
|
||||
--vscode-inlineChat-background: #252526;
|
||||
--vscode-inlineChat-border: #454545;
|
||||
--vscode-inlineChat-shadow: rgba(0, 0, 0, 0.36);
|
||||
--vscode-inlineChatInput-border: #454545;
|
||||
--vscode-inlineChatInput-focusBorder: #007fd4;
|
||||
--vscode-inlineChatInput-placeholderForeground: #a6a6a6;
|
||||
--vscode-inlineChatInput-background: #3c3c3c;
|
||||
--vscode-inlineChatDiff-inserted: rgba(156, 204, 44, 0.1);
|
||||
--vscode-editorOverviewRuler-inlineChatInserted: rgba(156, 204, 44, 0.12);
|
||||
--vscode-inlineChatDiff-removed: rgba(255, 0, 0, 0.1);
|
||||
--vscode-editorOverviewRuler-inlineChatRemoved: rgba(255, 0, 0, 0.12);
|
||||
--vscode-extensionButton-background: #0e639c;
|
||||
--vscode-extensionButton-foreground: #ffffff;
|
||||
--vscode-extensionButton-hoverBackground: #1177bb;
|
||||
--vscode-extensionButton-separator: rgba(255, 255, 255, 0.4);
|
||||
--vscode-extensionButton-prominentBackground: #0e639c;
|
||||
--vscode-extensionButton-prominentForeground: #ffffff;
|
||||
--vscode-extensionButton-prominentHoverBackground: #1177bb;
|
||||
--vscode-chat-requestBorder: rgba(255, 255, 255, 0.1);
|
||||
--vscode-chat-requestBackground: rgba(30, 30, 30, 0.62);
|
||||
--vscode-chat-slashCommandBackground: rgba(52, 65, 75, 0.56);
|
||||
--vscode-chat-slashCommandForeground: #40a6ff;
|
||||
--vscode-chat-avatarBackground: #1f1f1f;
|
||||
--vscode-chat-avatarForeground: #cccccc;
|
||||
--vscode-terminal-foreground: #cccccc;
|
||||
--vscode-terminal-selectionBackground: #264f78;
|
||||
--vscode-terminal-inactiveSelectionBackground: #3a3d41;
|
||||
--vscode-terminalCommandDecoration-defaultBackground: rgba(255, 255, 255, 0.25);
|
||||
--vscode-terminalCommandDecoration-successBackground: #1b81a8;
|
||||
--vscode-terminalCommandDecoration-errorBackground: #f14c4c;
|
||||
--vscode-terminalOverviewRuler-cursorForeground: rgba(160, 160, 160, 0.8);
|
||||
--vscode-terminal-border: rgba(128, 128, 128, 0.35);
|
||||
--vscode-terminalOverviewRuler-border: rgba(127, 127, 127, 0.3);
|
||||
--vscode-terminal-findMatchBackground: #515c6a;
|
||||
--vscode-terminal-hoverHighlightBackground: rgba(38, 79, 120, 0.13);
|
||||
--vscode-terminal-findMatchHighlightBackground: rgba(234, 92, 0, 0.33);
|
||||
--vscode-terminalOverviewRuler-findMatchForeground: rgba(209, 134, 22, 0.49);
|
||||
--vscode-terminal-dropBackground: rgba(83, 89, 93, 0.5);
|
||||
--vscode-terminal-initialHintForeground: rgba(255, 255, 255, 0.34);
|
||||
--vscode-terminalStickyScrollHover-background: #2a2d2e;
|
||||
--vscode-scmGraph-historyItemRefColor: #3794ff;
|
||||
--vscode-scmGraph-historyItemRemoteRefColor: #b180d7;
|
||||
--vscode-scmGraph-historyItemBaseRefColor: #ea5c00;
|
||||
--vscode-scmGraph-historyItemHoverDefaultLabelForeground: #cccccc;
|
||||
--vscode-scmGraph-historyItemHoverDefaultLabelBackground: #4d4d4d;
|
||||
--vscode-scmGraph-historyItemHoverLabelForeground: #ffffff;
|
||||
--vscode-scmGraph-historyItemHoverAdditionsForeground: #81b88b;
|
||||
--vscode-scmGraph-historyItemHoverDeletionsForeground: #c74e39;
|
||||
--vscode-scmGraph-foreground1: #ffb000;
|
||||
--vscode-scmGraph-foreground2: #dc267f;
|
||||
--vscode-scmGraph-foreground3: #994f00;
|
||||
--vscode-scmGraph-foreground4: #40b0a6;
|
||||
--vscode-scmGraph-foreground5: #b66dff;
|
||||
--vscode-commentsView-resolvedIcon: rgba(204, 204, 204, 0.5);
|
||||
--vscode-commentsView-unresolvedIcon: #007fd4;
|
||||
--vscode-editorCommentsWidget-replyInputBackground: #252526;
|
||||
--vscode-editorCommentsWidget-resolvedBorder: rgba(204, 204, 204, 0.5);
|
||||
--vscode-editorCommentsWidget-unresolvedBorder: #007fd4;
|
||||
--vscode-editorCommentsWidget-rangeBackground: rgba(0, 127, 212, 0.1);
|
||||
--vscode-editorCommentsWidget-rangeActiveBackground: rgba(0, 127, 212, 0.1);
|
||||
--vscode-editorGutter-commentRangeForeground: #37373d;
|
||||
--vscode-editorOverviewRuler-commentForeground: #37373d;
|
||||
--vscode-editorOverviewRuler-commentUnresolvedForeground: #37373d;
|
||||
--vscode-editorGutter-commentGlyphForeground: #d4d4d4;
|
||||
--vscode-editorGutter-commentUnresolvedGlyphForeground: #d4d4d4;
|
||||
--vscode-activityWarningBadge-foreground: #000000;
|
||||
--vscode-activityWarningBadge-background: #cca700;
|
||||
--vscode-activityErrorBadge-foreground: #000000;
|
||||
--vscode-activityErrorBadge-background: #f14c4c;
|
||||
--vscode-ports-iconRunningProcessForeground: #369432;
|
||||
--vscode-editorWatermark-foreground: rgba(212, 212, 212, 0.6);
|
||||
--vscode-settings-headerForeground: #e7e7e7;
|
||||
--vscode-settings-settingsHeaderHoverForeground: rgba(231, 231, 231, 0.7);
|
||||
--vscode-settings-modifiedItemIndicator: #0c7d9d;
|
||||
--vscode-settings-headerBorder: rgba(128, 128, 128, 0.35);
|
||||
--vscode-settings-sashBorder: rgba(128, 128, 128, 0.35);
|
||||
--vscode-settings-dropdownBackground: #3c3c3c;
|
||||
--vscode-settings-dropdownForeground: #f0f0f0;
|
||||
--vscode-settings-dropdownBorder: #3c3c3c;
|
||||
--vscode-settings-dropdownListBorder: #454545;
|
||||
--vscode-settings-checkboxBackground: #3c3c3c;
|
||||
--vscode-settings-checkboxForeground: #f0f0f0;
|
||||
--vscode-settings-checkboxBorder: #6b6b6b;
|
||||
--vscode-settings-textInputBackground: #3c3c3c;
|
||||
--vscode-settings-textInputForeground: #cccccc;
|
||||
--vscode-settings-numberInputBackground: #3c3c3c;
|
||||
--vscode-settings-numberInputForeground: #cccccc;
|
||||
--vscode-settings-focusedRowBackground: rgba(42, 45, 46, 0.6);
|
||||
--vscode-settings-rowHoverBackground: rgba(42, 45, 46, 0.3);
|
||||
--vscode-settings-focusedRowBorder: #007fd4;
|
||||
--vscode-keybindingTable-headerBackground: rgba(204, 204, 204, 0.04);
|
||||
--vscode-keybindingTable-rowsBackground: rgba(204, 204, 204, 0.04);
|
||||
--vscode-debugToolBar-background: #333333;
|
||||
--vscode-debugIcon-startForeground: #89d185;
|
||||
--vscode-notebook-cellBorderColor: #37373d;
|
||||
--vscode-notebook-focusedEditorBorder: #007fd4;
|
||||
--vscode-notebookStatusSuccessIcon-foreground: #89d185;
|
||||
--vscode-notebookEditorOverviewRuler-runningCellForeground: #89d185;
|
||||
--vscode-notebookStatusErrorIcon-foreground: #f48771;
|
||||
--vscode-notebookStatusRunningIcon-foreground: #cccccc;
|
||||
--vscode-notebook-cellToolbarSeparator: rgba(128, 128, 128, 0.35);
|
||||
--vscode-notebook-selectedCellBackground: #37373d;
|
||||
--vscode-notebook-selectedCellBorder: #37373d;
|
||||
--vscode-notebook-focusedCellBorder: #007fd4;
|
||||
--vscode-notebook-inactiveFocusedCellBorder: #37373d;
|
||||
--vscode-notebook-cellStatusBarItemHoverBackground: rgba(255, 255, 255, 0.15);
|
||||
--vscode-notebook-cellInsertionIndicator: #007fd4;
|
||||
--vscode-notebookScrollbarSlider-background: rgba(121, 121, 121, 0.4);
|
||||
--vscode-notebookScrollbarSlider-hoverBackground: rgba(100, 100, 100, 0.7);
|
||||
--vscode-notebookScrollbarSlider-activeBackground: rgba(191, 191, 191, 0.4);
|
||||
--vscode-notebook-symbolHighlightBackground: rgba(255, 255, 255, 0.04);
|
||||
--vscode-notebook-cellEditorBackground: #252526;
|
||||
--vscode-notebook-editorBackground: #1e1e1e;
|
||||
--vscode-debugIcon-breakpointForeground: #e51400;
|
||||
--vscode-debugIcon-breakpointDisabledForeground: #848484;
|
||||
--vscode-debugIcon-breakpointUnverifiedForeground: #848484;
|
||||
--vscode-debugIcon-breakpointCurrentStackframeForeground: #ffcc00;
|
||||
--vscode-debugIcon-breakpointStackframeForeground: #89d185;
|
||||
--vscode-editor-stackFrameHighlightBackground: rgba(255, 255, 0, 0.2);
|
||||
--vscode-editor-focusedStackFrameHighlightBackground: rgba(122, 189, 122, 0.3);
|
||||
--vscode-multiDiffEditor-headerBackground: #262626;
|
||||
--vscode-multiDiffEditor-background: #1e1e1e;
|
||||
--vscode-multiDiffEditor-border: rgba(204, 204, 204, 0.2);
|
||||
--vscode-interactive-activeCodeBorder: #007acc;
|
||||
--vscode-interactive-inactiveCodeBorder: #37373d;
|
||||
--vscode-testing-iconFailed: #f14c4c;
|
||||
--vscode-testing-iconErrored: #f14c4c;
|
||||
--vscode-testing-iconPassed: #73c991;
|
||||
--vscode-testing-runAction: #73c991;
|
||||
--vscode-testing-iconQueued: #cca700;
|
||||
--vscode-testing-iconUnset: #848484;
|
||||
--vscode-testing-iconSkipped: #848484;
|
||||
--vscode-testing-peekBorder: #f14c4c;
|
||||
--vscode-testing-messagePeekBorder: #3794ff;
|
||||
--vscode-testing-peekHeaderBackground: rgba(241, 76, 76, 0.1);
|
||||
--vscode-testing-messagePeekHeaderBackground: rgba(55, 148, 255, 0.1);
|
||||
--vscode-testing-coveredBackground: rgba(156, 204, 44, 0.2);
|
||||
--vscode-testing-coveredBorder: rgba(156, 204, 44, 0.15);
|
||||
--vscode-testing-coveredGutterBackground: rgba(156, 204, 44, 0.12);
|
||||
--vscode-testing-uncoveredBranchBackground: #781212;
|
||||
--vscode-testing-uncoveredBackground: rgba(255, 0, 0, 0.2);
|
||||
--vscode-testing-uncoveredBorder: rgba(255, 0, 0, 0.15);
|
||||
--vscode-testing-uncoveredGutterBackground: rgba(255, 0, 0, 0.3);
|
||||
--vscode-testing-coverCountBadgeBackground: #4d4d4d;
|
||||
--vscode-testing-coverCountBadgeForeground: #ffffff;
|
||||
--vscode-testing-message-error-decorationForeground: #f14c4c;
|
||||
--vscode-testing-message-error-lineBackground: rgba(255, 0, 0, 0.1);
|
||||
--vscode-testing-message-info-decorationForeground: rgba(212, 212, 212, 0.5);
|
||||
--vscode-testing-iconErrored-retired: rgba(241, 76, 76, 0.7);
|
||||
--vscode-testing-iconFailed-retired: rgba(241, 76, 76, 0.7);
|
||||
--vscode-testing-iconPassed-retired: rgba(115, 201, 145, 0.7);
|
||||
--vscode-testing-iconQueued-retired: rgba(204, 167, 0, 0.7);
|
||||
--vscode-testing-iconUnset-retired: rgba(132, 132, 132, 0.7);
|
||||
--vscode-testing-iconSkipped-retired: rgba(132, 132, 132, 0.7);
|
||||
--vscode-editorGutter-modifiedBackground: #1b81a8;
|
||||
--vscode-editorGutter-addedBackground: #487e02;
|
||||
--vscode-editorGutter-deletedBackground: #f14c4c;
|
||||
--vscode-minimapGutter-modifiedBackground: #1b81a8;
|
||||
--vscode-minimapGutter-addedBackground: #487e02;
|
||||
--vscode-minimapGutter-deletedBackground: #f14c4c;
|
||||
--vscode-editorOverviewRuler-modifiedForeground: rgba(27, 129, 168, 0.6);
|
||||
--vscode-editorOverviewRuler-addedForeground: rgba(72, 126, 2, 0.6);
|
||||
--vscode-editorOverviewRuler-deletedForeground: rgba(241, 76, 76, 0.6);
|
||||
--vscode-debugExceptionWidget-border: #a31515;
|
||||
--vscode-debugExceptionWidget-background: #420b0d;
|
||||
--vscode-editor-inlineValuesForeground: rgba(255, 255, 255, 0.5);
|
||||
--vscode-editor-inlineValuesBackground: rgba(255, 200, 0, 0.2);
|
||||
--vscode-statusBar-debuggingBackground: #cc6633;
|
||||
--vscode-statusBar-debuggingForeground: #ffffff;
|
||||
--vscode-commandCenter-debuggingBackground: rgba(204, 102, 51, 0.26);
|
||||
--vscode-debugTokenExpression-name: #c586c0;
|
||||
--vscode-debugTokenExpression-type: #4a90e2;
|
||||
--vscode-debugTokenExpression-value: rgba(204, 204, 204, 0.6);
|
||||
--vscode-debugTokenExpression-string: #ce9178;
|
||||
--vscode-debugTokenExpression-boolean: #4e94ce;
|
||||
--vscode-debugTokenExpression-number: #b5cea8;
|
||||
--vscode-debugTokenExpression-error: #f48771;
|
||||
--vscode-debugView-exceptionLabelForeground: #cccccc;
|
||||
--vscode-debugView-exceptionLabelBackground: #6c2022;
|
||||
--vscode-debugView-stateLabelForeground: #cccccc;
|
||||
--vscode-debugView-stateLabelBackground: rgba(136, 136, 136, 0.27);
|
||||
--vscode-debugView-valueChangedHighlight: #569cd6;
|
||||
--vscode-debugConsole-infoForeground: #3794ff;
|
||||
--vscode-debugConsole-warningForeground: #cca700;
|
||||
--vscode-debugConsole-errorForeground: #f48771;
|
||||
--vscode-debugConsole-sourceForeground: #cccccc;
|
||||
--vscode-debugConsoleInputIcon-foreground: #cccccc;
|
||||
--vscode-debugIcon-pauseForeground: #75beff;
|
||||
--vscode-debugIcon-stopForeground: #f48771;
|
||||
--vscode-debugIcon-disconnectForeground: #f48771;
|
||||
--vscode-debugIcon-restartForeground: #89d185;
|
||||
--vscode-debugIcon-stepOverForeground: #75beff;
|
||||
--vscode-debugIcon-stepIntoForeground: #75beff;
|
||||
--vscode-debugIcon-stepOutForeground: #75beff;
|
||||
--vscode-debugIcon-continueForeground: #75beff;
|
||||
--vscode-debugIcon-stepBackForeground: #75beff;
|
||||
--vscode-mergeEditor-change-background: rgba(155, 185, 85, 0.2);
|
||||
--vscode-mergeEditor-change-word-background: rgba(156, 204, 44, 0.2);
|
||||
--vscode-mergeEditor-changeBase-background: #4b1818;
|
||||
--vscode-mergeEditor-changeBase-word-background: #6f1313;
|
||||
--vscode-mergeEditor-conflict-unhandledUnfocused-border: rgba(255, 166, 0, 0.48);
|
||||
--vscode-mergeEditor-conflict-unhandledFocused-border: #ffa600;
|
||||
--vscode-mergeEditor-conflict-handledUnfocused-border: rgba(134, 134, 134, 0.29);
|
||||
--vscode-mergeEditor-conflict-handledFocused-border: rgba(193, 193, 193, 0.8);
|
||||
--vscode-mergeEditor-conflict-handled-minimapOverViewRuler: rgba(173, 172, 168, 0.93);
|
||||
--vscode-mergeEditor-conflict-unhandled-minimapOverViewRuler: #fcba03;
|
||||
--vscode-mergeEditor-conflictingLines-background: rgba(255, 234, 0, 0.28);
|
||||
--vscode-mergeEditor-conflict-input1-background: rgba(64, 200, 174, 0.2);
|
||||
--vscode-mergeEditor-conflict-input2-background: rgba(64, 166, 255, 0.2);
|
||||
--vscode-extensionIcon-starForeground: #ff8e00;
|
||||
--vscode-extensionIcon-verifiedForeground: #3794ff;
|
||||
--vscode-extensionIcon-preReleaseForeground: #1d9271;
|
||||
--vscode-extensionIcon-sponsorForeground: #d758b3;
|
||||
--vscode-terminal-ansiBlack: #000000;
|
||||
--vscode-terminal-ansiRed: #cd3131;
|
||||
--vscode-terminal-ansiGreen: #0dbc79;
|
||||
--vscode-terminal-ansiYellow: #e5e510;
|
||||
--vscode-terminal-ansiBlue: #2472c8;
|
||||
--vscode-terminal-ansiMagenta: #bc3fbc;
|
||||
--vscode-terminal-ansiCyan: #11a8cd;
|
||||
--vscode-terminal-ansiWhite: #e5e5e5;
|
||||
--vscode-terminal-ansiBrightBlack: #666666;
|
||||
--vscode-terminal-ansiBrightRed: #f14c4c;
|
||||
--vscode-terminal-ansiBrightGreen: #23d18b;
|
||||
--vscode-terminal-ansiBrightYellow: #f5f543;
|
||||
--vscode-terminal-ansiBrightBlue: #3b8eea;
|
||||
--vscode-terminal-ansiBrightMagenta: #d670d6;
|
||||
--vscode-terminal-ansiBrightCyan: #29b8db;
|
||||
--vscode-terminal-ansiBrightWhite: #e5e5e5;
|
||||
--vscode-simpleFindWidget-sashBorder: #454545;
|
||||
--vscode-terminalCommandGuide-foreground: #37373d;
|
||||
--vscode-welcomePage-tileBackground: #252526;
|
||||
--vscode-welcomePage-tileHoverBackground: #2c2c2d;
|
||||
--vscode-welcomePage-tileBorder: rgba(255, 255, 255, 0.1);
|
||||
--vscode-welcomePage-progress-background: #3c3c3c;
|
||||
--vscode-welcomePage-progress-foreground: #3794ff;
|
||||
--vscode-walkthrough-stepTitle-foreground: #ffffff;
|
||||
--vscode-walkThrough-embeddedEditorBackground: rgba(0, 0, 0, 0.4);
|
||||
--vscode-profiles-sashBorder: rgba(128, 128, 128, 0.35);
|
||||
--vscode-gitDecoration-addedResourceForeground: #81b88b;
|
||||
--vscode-gitDecoration-modifiedResourceForeground: #e2c08d;
|
||||
--vscode-gitDecoration-deletedResourceForeground: #c74e39;
|
||||
--vscode-gitDecoration-renamedResourceForeground: #73c991;
|
||||
--vscode-gitDecoration-untrackedResourceForeground: #73c991;
|
||||
--vscode-gitDecoration-ignoredResourceForeground: #8c8c8c;
|
||||
--vscode-gitDecoration-stageModifiedResourceForeground: #e2c08d;
|
||||
--vscode-gitDecoration-stageDeletedResourceForeground: #c74e39;
|
||||
--vscode-gitDecoration-conflictingResourceForeground: #e4676b;
|
||||
--vscode-gitDecoration-submoduleResourceForeground: #8db9e2;
|
||||
--vscode-gitlens-gutterBackgroundColor: rgba(255, 255, 255, 0.07);
|
||||
--vscode-gitlens-gutterForegroundColor: #bebebe;
|
||||
--vscode-gitlens-gutterUncommittedForegroundColor: rgba(0, 188, 242, 0.6);
|
||||
--vscode-gitlens-trailingLineBackgroundColor: rgba(0, 0, 0, 0);
|
||||
--vscode-gitlens-trailingLineForegroundColor: rgba(153, 153, 153, 0.35);
|
||||
--vscode-gitlens-lineHighlightBackgroundColor: rgba(0, 188, 242, 0.2);
|
||||
--vscode-gitlens-lineHighlightOverviewRulerColor: rgba(0, 188, 242, 0.6);
|
||||
--vscode-gitlens-openAutolinkedIssueIconColor: #3fb950;
|
||||
--vscode-gitlens-closedAutolinkedIssueIconColor: #a371f7;
|
||||
--vscode-gitlens-closedPullRequestIconColor: #f85149;
|
||||
--vscode-gitlens-openPullRequestIconColor: #3fb950;
|
||||
--vscode-gitlens-mergedPullRequestIconColor: #a371f7;
|
||||
--vscode-gitlens-unpublishedChangesIconColor: #35b15e;
|
||||
--vscode-gitlens-unpublishedCommitIconColor: #35b15e;
|
||||
--vscode-gitlens-unpulledChangesIconColor: #b15e35;
|
||||
--vscode-gitlens-decorations-addedForegroundColor: #81b88b;
|
||||
--vscode-gitlens-decorations-copiedForegroundColor: #73c991;
|
||||
--vscode-gitlens-decorations-deletedForegroundColor: #c74e39;
|
||||
--vscode-gitlens-decorations-ignoredForegroundColor: #8c8c8c;
|
||||
--vscode-gitlens-decorations-modifiedForegroundColor: #e2c08d;
|
||||
--vscode-gitlens-decorations-untrackedForegroundColor: #73c991;
|
||||
--vscode-gitlens-decorations-renamedForegroundColor: #73c991;
|
||||
--vscode-gitlens-decorations-branchAheadForegroundColor: #35b15e;
|
||||
--vscode-gitlens-decorations-branchBehindForegroundColor: #b15e35;
|
||||
--vscode-gitlens-decorations-branchDivergedForegroundColor: #d8af1b;
|
||||
--vscode-gitlens-decorations-branchMissingUpstreamForegroundColor: #c74e39;
|
||||
--vscode-gitlens-decorations-statusMergingOrRebasingConflictForegroundColor: #c74e39;
|
||||
--vscode-gitlens-decorations-statusMergingOrRebasingForegroundColor: #d8af1b;
|
||||
--vscode-gitlens-decorations-workspaceRepoMissingForegroundColor: #909090;
|
||||
--vscode-gitlens-decorations-workspaceCurrentForegroundColor: #35b15e;
|
||||
--vscode-gitlens-decorations-workspaceRepoOpenForegroundColor: #35b15e;
|
||||
--vscode-gitlens-decorations-worktreeHasUncommittedChangesForegroundColor: #e2c08d;
|
||||
--vscode-gitlens-decorations-worktreeMissingForegroundColor: #c74e39;
|
||||
--vscode-gitlens-graphLane1Color: #15a0bf;
|
||||
--vscode-gitlens-graphLane2Color: #0669f7;
|
||||
--vscode-gitlens-graphLane3Color: #8e00c2;
|
||||
--vscode-gitlens-graphLane4Color: #c517b6;
|
||||
--vscode-gitlens-graphLane5Color: #d90171;
|
||||
--vscode-gitlens-graphLane6Color: #cd0101;
|
||||
--vscode-gitlens-graphLane7Color: #f25d2e;
|
||||
--vscode-gitlens-graphLane8Color: #f2ca33;
|
||||
--vscode-gitlens-graphLane9Color: #7bd938;
|
||||
--vscode-gitlens-graphLane10Color: #2ece9d;
|
||||
--vscode-gitlens-graphChangesColumnAddedColor: #347d39;
|
||||
--vscode-gitlens-graphChangesColumnDeletedColor: #c93c37;
|
||||
--vscode-gitlens-graphMinimapMarkerHeadColor: #05e617;
|
||||
--vscode-gitlens-graphScrollMarkerHeadColor: #05e617;
|
||||
--vscode-gitlens-graphMinimapMarkerUpstreamColor: #09ae17;
|
||||
--vscode-gitlens-graphScrollMarkerUpstreamColor: #09ae17;
|
||||
--vscode-gitlens-graphMinimapMarkerHighlightsColor: #fbff0a;
|
||||
--vscode-gitlens-graphScrollMarkerHighlightsColor: #fbff0a;
|
||||
--vscode-gitlens-graphMinimapMarkerLocalBranchesColor: #3087cf;
|
||||
--vscode-gitlens-graphScrollMarkerLocalBranchesColor: #3087cf;
|
||||
--vscode-gitlens-graphMinimapMarkerPullRequestsColor: #c76801;
|
||||
--vscode-gitlens-graphScrollMarkerPullRequestsColor: #c76801;
|
||||
--vscode-gitlens-graphMinimapMarkerRemoteBranchesColor: #2b5e88;
|
||||
--vscode-gitlens-graphScrollMarkerRemoteBranchesColor: #2b5e88;
|
||||
--vscode-gitlens-graphMinimapMarkerStashesColor: #b34db3;
|
||||
--vscode-gitlens-graphScrollMarkerStashesColor: #b34db3;
|
||||
--vscode-gitlens-graphMinimapMarkerTagsColor: #6b562e;
|
||||
--vscode-gitlens-graphScrollMarkerTagsColor: #6b562e;
|
||||
--vscode-gitlens-launchpadIndicatorMergeableColor: #3fb950;
|
||||
--vscode-gitlens-launchpadIndicatorMergeableHoverColor: #3fb950;
|
||||
--vscode-gitlens-launchpadIndicatorBlockedColor: #c74e39;
|
||||
--vscode-gitlens-launchpadIndicatorBlockedHoverColor: #c74e39;
|
||||
--vscode-gitlens-launchpadIndicatorAttentionColor: #d8af1b;
|
||||
--vscode-gitlens-launchpadIndicatorAttentionHoverColor: #d8af1b;
|
||||
--vscode-remoteHub-decorations-addedForegroundColor: #81b88b;
|
||||
--vscode-remoteHub-decorations-modifiedForegroundColor: #e2c08d;
|
||||
--vscode-remoteHub-decorations-deletedForegroundColor: #c74e39;
|
||||
--vscode-remoteHub-decorations-submoduleForegroundColor: #8db9e2;
|
||||
--vscode-remoteHub-decorations-conflictForegroundColor: #e4676b;
|
||||
--vscode-remoteHub-decorations-incomingAddedForegroundColor: #81b88b;
|
||||
--vscode-remoteHub-decorations-incomingModifiedForegroundColor: #e2c08d;
|
||||
--vscode-remoteHub-decorations-incomingDeletedForegroundColor: #c74e39;
|
||||
--vscode-remoteHub-decorations-incomingRenamedForegroundColor: #73c991;
|
||||
--vscode-remoteHub-decorations-possibleConflictForegroundColor: #cca700;
|
||||
--vscode-remoteHub-decorations-ignoredResourceForeground: #8c8c8c;
|
||||
--vscode-remoteHub-decorations-workspaceRepositoriesView-hasUncommittedChangesForegroundColor: #e2c08d;
|
||||
--vscode-rust_analyzer-syntaxTreeBorder: #ffffff;
|
||||
}
|
777
public/default-light.css
Normal file
777
public/default-light.css
Normal file
@ -0,0 +1,777 @@
|
||||
:root {
|
||||
--vscode-foreground: #616161;
|
||||
--vscode-disabledForeground: rgba(97, 97, 97, 0.5);
|
||||
--vscode-errorForeground: #a1260d;
|
||||
--vscode-descriptionForeground: #717171;
|
||||
--vscode-icon-foreground: #424242;
|
||||
--vscode-focusBorder: #0090f1;
|
||||
--vscode-textLink-foreground: #006ab1;
|
||||
--vscode-textLink-activeForeground: #006ab1;
|
||||
--vscode-textSeparator-foreground: rgba(0, 0, 0, 0.18);
|
||||
--vscode-textPreformat-foreground: #a31515;
|
||||
--vscode-textPreformat-background: rgba(0, 0, 0, 0.1);
|
||||
--vscode-textBlockQuote-background: #f2f2f2;
|
||||
--vscode-textBlockQuote-border: rgba(0, 122, 204, 0.5);
|
||||
--vscode-textCodeBlock-background: rgba(220, 220, 220, 0.4);
|
||||
--vscode-sash-hoverBorder: #0090f1;
|
||||
--vscode-badge-background: #c4c4c4;
|
||||
--vscode-badge-foreground: #333333;
|
||||
--vscode-scrollbar-shadow: #dddddd;
|
||||
--vscode-scrollbarSlider-background: rgba(100, 100, 100, 0.4);
|
||||
--vscode-scrollbarSlider-hoverBackground: rgba(100, 100, 100, 0.7);
|
||||
--vscode-scrollbarSlider-activeBackground: rgba(0, 0, 0, 0.6);
|
||||
--vscode-progressBar-background: #0e70c0;
|
||||
--vscode-editor-background: #ffffff;
|
||||
--vscode-editor-foreground: #000000;
|
||||
--vscode-editorStickyScroll-background: #ffffff;
|
||||
--vscode-editorStickyScrollHover-background: #f0f0f0;
|
||||
--vscode-editorStickyScroll-shadow: #dddddd;
|
||||
--vscode-editorWidget-background: #f3f3f3;
|
||||
--vscode-editorWidget-foreground: #616161;
|
||||
--vscode-editorWidget-border: #c8c8c8;
|
||||
--vscode-editorError-foreground: #e51400;
|
||||
--vscode-editorWarning-foreground: #bf8803;
|
||||
--vscode-editorInfo-foreground: #1a85ff;
|
||||
--vscode-editorHint-foreground: #6c6c6c;
|
||||
--vscode-editorLink-activeForeground: #0000ff;
|
||||
--vscode-editor-selectionBackground: #add6ff;
|
||||
--vscode-editor-inactiveSelectionBackground: #e5ebf1;
|
||||
--vscode-editor-selectionHighlightBackground: rgba(173, 214, 255, 0.5);
|
||||
--vscode-editor-findMatchBackground: #a8ac94;
|
||||
--vscode-editor-findMatchHighlightBackground: rgba(234, 92, 0, 0.33);
|
||||
--vscode-editor-findRangeHighlightBackground: rgba(180, 180, 180, 0.3);
|
||||
--vscode-editor-hoverHighlightBackground: rgba(173, 214, 255, 0.15);
|
||||
--vscode-editorHoverWidget-background: #f3f3f3;
|
||||
--vscode-editorHoverWidget-foreground: #616161;
|
||||
--vscode-editorHoverWidget-border: #c8c8c8;
|
||||
--vscode-editorHoverWidget-statusBarBackground: #e7e7e7;
|
||||
--vscode-editorInlayHint-foreground: #969696;
|
||||
--vscode-editorInlayHint-background: rgba(196, 196, 196, 0.1);
|
||||
--vscode-editorInlayHint-typeForeground: #969696;
|
||||
--vscode-editorInlayHint-typeBackground: rgba(196, 196, 196, 0.1);
|
||||
--vscode-editorInlayHint-parameterForeground: #969696;
|
||||
--vscode-editorInlayHint-parameterBackground: rgba(196, 196, 196, 0.1);
|
||||
--vscode-editorLightBulb-foreground: #ddb100;
|
||||
--vscode-editorLightBulbAutoFix-foreground: #007acc;
|
||||
--vscode-editorLightBulbAi-foreground: #ddb100;
|
||||
--vscode-editor-snippetTabstopHighlightBackground: rgba(10, 50, 100, 0.2);
|
||||
--vscode-editor-snippetFinalTabstopHighlightBorder: rgba(10, 50, 100, 0.5);
|
||||
--vscode-diffEditor-insertedTextBackground: rgba(156, 204, 44, 0.25);
|
||||
--vscode-diffEditor-removedTextBackground: rgba(255, 0, 0, 0.2);
|
||||
--vscode-diffEditor-insertedLineBackground: rgba(155, 185, 85, 0.2);
|
||||
--vscode-diffEditor-removedLineBackground: rgba(255, 0, 0, 0.2);
|
||||
--vscode-diffEditor-diagonalFill: rgba(34, 34, 34, 0.2);
|
||||
--vscode-diffEditor-unchangedRegionBackground: #f8f8f8;
|
||||
--vscode-diffEditor-unchangedRegionForeground: #616161;
|
||||
--vscode-diffEditor-unchangedCodeBackground: rgba(184, 184, 184, 0.16);
|
||||
--vscode-widget-shadow: rgba(0, 0, 0, 0.16);
|
||||
--vscode-widget-border: #d4d4d4;
|
||||
--vscode-toolbar-hoverBackground: rgba(184, 184, 184, 0.31);
|
||||
--vscode-toolbar-activeBackground: rgba(166, 166, 166, 0.31);
|
||||
--vscode-breadcrumb-foreground: rgba(97, 97, 97, 0.8);
|
||||
--vscode-breadcrumb-background: #ffffff;
|
||||
--vscode-breadcrumb-focusForeground: #4e4e4e;
|
||||
--vscode-breadcrumb-activeSelectionForeground: #4e4e4e;
|
||||
--vscode-breadcrumbPicker-background: #f3f3f3;
|
||||
--vscode-merge-currentHeaderBackground: rgba(64, 200, 174, 0.5);
|
||||
--vscode-merge-currentContentBackground: rgba(64, 200, 174, 0.2);
|
||||
--vscode-merge-incomingHeaderBackground: rgba(64, 166, 255, 0.5);
|
||||
--vscode-merge-incomingContentBackground: rgba(64, 166, 255, 0.2);
|
||||
--vscode-merge-commonHeaderBackground: rgba(96, 96, 96, 0.4);
|
||||
--vscode-merge-commonContentBackground: rgba(96, 96, 96, 0.16);
|
||||
--vscode-editorOverviewRuler-currentContentForeground: rgba(64, 200, 174, 0.5);
|
||||
--vscode-editorOverviewRuler-incomingContentForeground: rgba(64, 166, 255, 0.5);
|
||||
--vscode-editorOverviewRuler-commonContentForeground: rgba(96, 96, 96, 0.4);
|
||||
--vscode-editorOverviewRuler-findMatchForeground: rgba(209, 134, 22, 0.49);
|
||||
--vscode-editorOverviewRuler-selectionHighlightForeground: rgba(160, 160, 160, 0.8);
|
||||
--vscode-problemsErrorIcon-foreground: #e51400;
|
||||
--vscode-problemsWarningIcon-foreground: #bf8803;
|
||||
--vscode-problemsInfoIcon-foreground: #1a85ff;
|
||||
--vscode-minimap-findMatchHighlight: #d18616;
|
||||
--vscode-minimap-selectionOccurrenceHighlight: #c9c9c9;
|
||||
--vscode-minimap-selectionHighlight: #add6ff;
|
||||
--vscode-minimap-infoHighlight: #1a85ff;
|
||||
--vscode-minimap-warningHighlight: #bf8803;
|
||||
--vscode-minimap-errorHighlight: rgba(255, 18, 18, 0.7);
|
||||
--vscode-minimap-foregroundOpacity: #000000;
|
||||
--vscode-minimapSlider-background: rgba(100, 100, 100, 0.2);
|
||||
--vscode-minimapSlider-hoverBackground: rgba(100, 100, 100, 0.35);
|
||||
--vscode-minimapSlider-activeBackground: rgba(0, 0, 0, 0.3);
|
||||
--vscode-charts-foreground: #616161;
|
||||
--vscode-charts-lines: rgba(97, 97, 97, 0.5);
|
||||
--vscode-charts-red: #e51400;
|
||||
--vscode-charts-blue: #1a85ff;
|
||||
--vscode-charts-yellow: #bf8803;
|
||||
--vscode-charts-orange: #d18616;
|
||||
--vscode-charts-green: #388a34;
|
||||
--vscode-charts-purple: #652d90;
|
||||
--vscode-input-background: #ffffff;
|
||||
--vscode-input-foreground: #616161;
|
||||
--vscode-inputOption-activeBorder: #007acc;
|
||||
--vscode-inputOption-hoverBackground: rgba(184, 184, 184, 0.31);
|
||||
--vscode-inputOption-activeBackground: rgba(0, 144, 241, 0.2);
|
||||
--vscode-inputOption-activeForeground: #000000;
|
||||
--vscode-input-placeholderForeground: #767676;
|
||||
--vscode-inputValidation-infoBackground: #d6ecf2;
|
||||
--vscode-inputValidation-infoBorder: #007acc;
|
||||
--vscode-inputValidation-warningBackground: #f6f5d2;
|
||||
--vscode-inputValidation-warningBorder: #b89500;
|
||||
--vscode-inputValidation-errorBackground: #f2dede;
|
||||
--vscode-inputValidation-errorBorder: #be1100;
|
||||
--vscode-dropdown-background: #ffffff;
|
||||
--vscode-dropdown-foreground: #616161;
|
||||
--vscode-dropdown-border: #cecece;
|
||||
--vscode-button-foreground: #ffffff;
|
||||
--vscode-button-separator: rgba(255, 255, 255, 0.4);
|
||||
--vscode-button-background: #007acc;
|
||||
--vscode-button-hoverBackground: #0062a3;
|
||||
--vscode-button-secondaryForeground: #ffffff;
|
||||
--vscode-button-secondaryBackground: #5f6a79;
|
||||
--vscode-button-secondaryHoverBackground: #4c5561;
|
||||
--vscode-radio-activeForeground: #000000;
|
||||
--vscode-radio-activeBackground: rgba(0, 144, 241, 0.2);
|
||||
--vscode-radio-activeBorder: #007acc;
|
||||
--vscode-radio-inactiveBorder: rgba(0, 0, 0, 0.2);
|
||||
--vscode-radio-inactiveHoverBackground: rgba(184, 184, 184, 0.31);
|
||||
--vscode-checkbox-background: #ffffff;
|
||||
--vscode-checkbox-selectBackground: #f3f3f3;
|
||||
--vscode-checkbox-foreground: #616161;
|
||||
--vscode-checkbox-border: #919191;
|
||||
--vscode-checkbox-selectBorder: #424242;
|
||||
--vscode-keybindingLabel-background: rgba(221, 221, 221, 0.4);
|
||||
--vscode-keybindingLabel-foreground: #555555;
|
||||
--vscode-keybindingLabel-border: rgba(204, 204, 204, 0.4);
|
||||
--vscode-keybindingLabel-bottomBorder: rgba(187, 187, 187, 0.4);
|
||||
--vscode-list-focusOutline: #0090f1;
|
||||
--vscode-list-focusAndSelectionOutline: #90c2f9;
|
||||
--vscode-list-activeSelectionBackground: #0060c0;
|
||||
--vscode-list-activeSelectionForeground: #ffffff;
|
||||
--vscode-list-activeSelectionIconForeground: #ffffff;
|
||||
--vscode-list-inactiveSelectionBackground: #e4e6f1;
|
||||
--vscode-list-hoverBackground: #e8e8e8;
|
||||
--vscode-list-dropBackground: #d6ebff;
|
||||
--vscode-list-dropBetweenBackground: #424242;
|
||||
--vscode-list-highlightForeground: #0066bf;
|
||||
--vscode-list-focusHighlightForeground: #bbe7ff;
|
||||
--vscode-list-invalidItemForeground: #b89500;
|
||||
--vscode-list-errorForeground: #b01011;
|
||||
--vscode-list-warningForeground: #855f00;
|
||||
--vscode-listFilterWidget-background: #f3f3f3;
|
||||
--vscode-listFilterWidget-outline: rgba(0, 0, 0, 0);
|
||||
--vscode-listFilterWidget-noMatchesOutline: #be1100;
|
||||
--vscode-listFilterWidget-shadow: rgba(0, 0, 0, 0.16);
|
||||
--vscode-list-filterMatchBackground: rgba(234, 92, 0, 0.33);
|
||||
--vscode-list-deemphasizedForeground: #8e8e90;
|
||||
--vscode-tree-indentGuidesStroke: #a9a9a9;
|
||||
--vscode-tree-inactiveIndentGuidesStroke: rgba(169, 169, 169, 0.4);
|
||||
--vscode-tree-tableColumnsBorder: rgba(97, 97, 97, 0.13);
|
||||
--vscode-tree-tableOddRowsBackground: rgba(97, 97, 97, 0.04);
|
||||
--vscode-editorActionList-background: #f3f3f3;
|
||||
--vscode-editorActionList-foreground: #616161;
|
||||
--vscode-editorActionList-focusForeground: #ffffff;
|
||||
--vscode-editorActionList-focusBackground: #0060c0;
|
||||
--vscode-menu-border: #d4d4d4;
|
||||
--vscode-menu-foreground: #616161;
|
||||
--vscode-menu-background: #ffffff;
|
||||
--vscode-menu-selectionForeground: #ffffff;
|
||||
--vscode-menu-selectionBackground: #0060c0;
|
||||
--vscode-menu-separatorBackground: #d4d4d4;
|
||||
--vscode-quickInput-background: #f3f3f3;
|
||||
--vscode-quickInput-foreground: #616161;
|
||||
--vscode-quickInputTitle-background: rgba(0, 0, 0, 0.06);
|
||||
--vscode-pickerGroup-foreground: #0066bf;
|
||||
--vscode-pickerGroup-border: #cccedb;
|
||||
--vscode-quickInputList-focusForeground: #ffffff;
|
||||
--vscode-quickInputList-focusIconForeground: #ffffff;
|
||||
--vscode-quickInputList-focusBackground: #0060c0;
|
||||
--vscode-search-resultsInfoForeground: #616161;
|
||||
--vscode-searchEditor-findMatchBackground: rgba(234, 92, 0, 0.22);
|
||||
--vscode-editor-lineHighlightBorder: #eeeeee;
|
||||
--vscode-editor-rangeHighlightBackground: rgba(253, 255, 0, 0.2);
|
||||
--vscode-editor-symbolHighlightBackground: rgba(234, 92, 0, 0.33);
|
||||
--vscode-editorCursor-foreground: #000000;
|
||||
--vscode-editorMultiCursor-primary-foreground: #000000;
|
||||
--vscode-editorMultiCursor-secondary-foreground: #000000;
|
||||
--vscode-editorWhitespace-foreground: rgba(51, 51, 51, 0.2);
|
||||
--vscode-editorLineNumber-foreground: #237893;
|
||||
--vscode-editorIndentGuide-background: rgba(51, 51, 51, 0.2);
|
||||
--vscode-editorIndentGuide-activeBackground: rgba(51, 51, 51, 0.2);
|
||||
--vscode-editorIndentGuide-background1: #d3d3d3;
|
||||
--vscode-editorIndentGuide-background2: rgba(0, 0, 0, 0);
|
||||
--vscode-editorIndentGuide-background3: rgba(0, 0, 0, 0);
|
||||
--vscode-editorIndentGuide-background4: rgba(0, 0, 0, 0);
|
||||
--vscode-editorIndentGuide-background5: rgba(0, 0, 0, 0);
|
||||
--vscode-editorIndentGuide-background6: rgba(0, 0, 0, 0);
|
||||
--vscode-editorIndentGuide-activeBackground1: #939393;
|
||||
--vscode-editorIndentGuide-activeBackground2: rgba(0, 0, 0, 0);
|
||||
--vscode-editorIndentGuide-activeBackground3: rgba(0, 0, 0, 0);
|
||||
--vscode-editorIndentGuide-activeBackground4: rgba(0, 0, 0, 0);
|
||||
--vscode-editorIndentGuide-activeBackground5: rgba(0, 0, 0, 0);
|
||||
--vscode-editorIndentGuide-activeBackground6: rgba(0, 0, 0, 0);
|
||||
--vscode-editorActiveLineNumber-foreground: #0b216f;
|
||||
--vscode-editorLineNumber-activeForeground: #0b216f;
|
||||
--vscode-editorRuler-foreground: #d3d3d3;
|
||||
--vscode-editorCodeLens-foreground: #919191;
|
||||
--vscode-editorBracketMatch-background: rgba(0, 100, 0, 0.1);
|
||||
--vscode-editorBracketMatch-border: #b9b9b9;
|
||||
--vscode-editorOverviewRuler-border: rgba(127, 127, 127, 0.3);
|
||||
--vscode-editorGutter-background: #ffffff;
|
||||
--vscode-editorUnnecessaryCode-opacity: rgba(0, 0, 0, 0.47);
|
||||
--vscode-editorGhostText-foreground: rgba(0, 0, 0, 0.47);
|
||||
--vscode-editorOverviewRuler-rangeHighlightForeground: rgba(0, 122, 204, 0.6);
|
||||
--vscode-editorOverviewRuler-errorForeground: rgba(255, 18, 18, 0.7);
|
||||
--vscode-editorOverviewRuler-warningForeground: #bf8803;
|
||||
--vscode-editorOverviewRuler-infoForeground: #1a85ff;
|
||||
--vscode-editorBracketHighlight-foreground1: #0431fa;
|
||||
--vscode-editorBracketHighlight-foreground2: #319331;
|
||||
--vscode-editorBracketHighlight-foreground3: #7b3814;
|
||||
--vscode-editorBracketHighlight-foreground4: rgba(0, 0, 0, 0);
|
||||
--vscode-editorBracketHighlight-foreground5: rgba(0, 0, 0, 0);
|
||||
--vscode-editorBracketHighlight-foreground6: rgba(0, 0, 0, 0);
|
||||
--vscode-editorBracketHighlight-unexpectedBracket-foreground: rgba(255, 18, 18, 0.8);
|
||||
--vscode-editorBracketPairGuide-background1: rgba(0, 0, 0, 0);
|
||||
--vscode-editorBracketPairGuide-background2: rgba(0, 0, 0, 0);
|
||||
--vscode-editorBracketPairGuide-background3: rgba(0, 0, 0, 0);
|
||||
--vscode-editorBracketPairGuide-background4: rgba(0, 0, 0, 0);
|
||||
--vscode-editorBracketPairGuide-background5: rgba(0, 0, 0, 0);
|
||||
--vscode-editorBracketPairGuide-background6: rgba(0, 0, 0, 0);
|
||||
--vscode-editorBracketPairGuide-activeBackground1: rgba(0, 0, 0, 0);
|
||||
--vscode-editorBracketPairGuide-activeBackground2: rgba(0, 0, 0, 0);
|
||||
--vscode-editorBracketPairGuide-activeBackground3: rgba(0, 0, 0, 0);
|
||||
--vscode-editorBracketPairGuide-activeBackground4: rgba(0, 0, 0, 0);
|
||||
--vscode-editorBracketPairGuide-activeBackground5: rgba(0, 0, 0, 0);
|
||||
--vscode-editorBracketPairGuide-activeBackground6: rgba(0, 0, 0, 0);
|
||||
--vscode-editorUnicodeHighlight-border: #bf8803;
|
||||
--vscode-diffEditor-move-border: rgba(139, 139, 139, 0.61);
|
||||
--vscode-diffEditor-moveActive-border: #ffa500;
|
||||
--vscode-diffEditor-unchangedRegionShadow: rgba(115, 115, 115, 0.75);
|
||||
--vscode-editorOverviewRuler-bracketMatchForeground: #a0a0a0;
|
||||
--vscode-symbolIcon-arrayForeground: #616161;
|
||||
--vscode-symbolIcon-booleanForeground: #616161;
|
||||
--vscode-symbolIcon-classForeground: #d67e00;
|
||||
--vscode-symbolIcon-colorForeground: #616161;
|
||||
--vscode-symbolIcon-constantForeground: #616161;
|
||||
--vscode-symbolIcon-constructorForeground: #652d90;
|
||||
--vscode-symbolIcon-enumeratorForeground: #d67e00;
|
||||
--vscode-symbolIcon-enumeratorMemberForeground: #007acc;
|
||||
--vscode-symbolIcon-eventForeground: #d67e00;
|
||||
--vscode-symbolIcon-fieldForeground: #007acc;
|
||||
--vscode-symbolIcon-fileForeground: #616161;
|
||||
--vscode-symbolIcon-folderForeground: #616161;
|
||||
--vscode-symbolIcon-functionForeground: #652d90;
|
||||
--vscode-symbolIcon-interfaceForeground: #007acc;
|
||||
--vscode-symbolIcon-keyForeground: #616161;
|
||||
--vscode-symbolIcon-keywordForeground: #616161;
|
||||
--vscode-symbolIcon-methodForeground: #652d90;
|
||||
--vscode-symbolIcon-moduleForeground: #616161;
|
||||
--vscode-symbolIcon-namespaceForeground: #616161;
|
||||
--vscode-symbolIcon-nullForeground: #616161;
|
||||
--vscode-symbolIcon-numberForeground: #616161;
|
||||
--vscode-symbolIcon-objectForeground: #616161;
|
||||
--vscode-symbolIcon-operatorForeground: #616161;
|
||||
--vscode-symbolIcon-packageForeground: #616161;
|
||||
--vscode-symbolIcon-propertyForeground: #616161;
|
||||
--vscode-symbolIcon-referenceForeground: #616161;
|
||||
--vscode-symbolIcon-snippetForeground: #616161;
|
||||
--vscode-symbolIcon-stringForeground: #616161;
|
||||
--vscode-symbolIcon-structForeground: #616161;
|
||||
--vscode-symbolIcon-textForeground: #616161;
|
||||
--vscode-symbolIcon-typeParameterForeground: #616161;
|
||||
--vscode-symbolIcon-unitForeground: #616161;
|
||||
--vscode-symbolIcon-variableForeground: #007acc;
|
||||
--vscode-actionBar-toggledBackground: #dddddd;
|
||||
--vscode-peekViewTitle-background: #f3f3f3;
|
||||
--vscode-peekViewTitleLabel-foreground: #000000;
|
||||
--vscode-peekViewTitleDescription-foreground: #616161;
|
||||
--vscode-peekView-border: #1a85ff;
|
||||
--vscode-peekViewResult-background: #f3f3f3;
|
||||
--vscode-peekViewResult-lineForeground: #646465;
|
||||
--vscode-peekViewResult-fileForeground: #1e1e1e;
|
||||
--vscode-peekViewResult-selectionBackground: rgba(51, 153, 255, 0.2);
|
||||
--vscode-peekViewResult-selectionForeground: #6c6c6c;
|
||||
--vscode-peekViewEditor-background: #f2f8fc;
|
||||
--vscode-peekViewEditorGutter-background: #f2f8fc;
|
||||
--vscode-peekViewEditorStickyScroll-background: #f2f8fc;
|
||||
--vscode-peekViewResult-matchHighlightBackground: rgba(234, 92, 0, 0.3);
|
||||
--vscode-peekViewEditor-matchHighlightBackground: rgba(245, 216, 2, 0.87);
|
||||
--vscode-editor-foldBackground: rgba(173, 214, 255, 0.3);
|
||||
--vscode-editor-foldPlaceholderForeground: #808080;
|
||||
--vscode-editorGutter-foldingControlForeground: #424242;
|
||||
--vscode-editorSuggestWidget-background: #f3f3f3;
|
||||
--vscode-editorSuggestWidget-border: #c8c8c8;
|
||||
--vscode-editorSuggestWidget-foreground: #000000;
|
||||
--vscode-editorSuggestWidget-selectedForeground: #ffffff;
|
||||
--vscode-editorSuggestWidget-selectedIconForeground: #ffffff;
|
||||
--vscode-editorSuggestWidget-selectedBackground: #0060c0;
|
||||
--vscode-editorSuggestWidget-highlightForeground: #0066bf;
|
||||
--vscode-editorSuggestWidget-focusHighlightForeground: #bbe7ff;
|
||||
--vscode-editorSuggestWidgetStatus-foreground: rgba(0, 0, 0, 0.5);
|
||||
--vscode-editorMarkerNavigationError-background: #e51400;
|
||||
--vscode-editorMarkerNavigationError-headerBackground: rgba(229, 20, 0, 0.1);
|
||||
--vscode-editorMarkerNavigationWarning-background: #bf8803;
|
||||
--vscode-editorMarkerNavigationWarning-headerBackground: rgba(191, 136, 3, 0.1);
|
||||
--vscode-editorMarkerNavigationInfo-background: #1a85ff;
|
||||
--vscode-editorMarkerNavigationInfo-headerBackground: rgba(26, 133, 255, 0.1);
|
||||
--vscode-editorMarkerNavigation-background: #ffffff;
|
||||
--vscode-editor-linkedEditingBackground: rgba(255, 0, 0, 0.3);
|
||||
--vscode-editor-wordHighlightBackground: rgba(87, 87, 87, 0.25);
|
||||
--vscode-editor-wordHighlightStrongBackground: rgba(14, 99, 156, 0.25);
|
||||
--vscode-editor-wordHighlightTextBackground: rgba(87, 87, 87, 0.25);
|
||||
--vscode-editorOverviewRuler-wordHighlightForeground: rgba(160, 160, 160, 0.8);
|
||||
--vscode-editorOverviewRuler-wordHighlightStrongForeground: rgba(192, 160, 192, 0.8);
|
||||
--vscode-editorOverviewRuler-wordHighlightTextForeground: rgba(160, 160, 160, 0.8);
|
||||
--vscode-editorHoverWidget-highlightForeground: #0066bf;
|
||||
--vscode-editor-placeholder-foreground: rgba(0, 0, 0, 0.47);
|
||||
--vscode-tab-activeBackground: #ffffff;
|
||||
--vscode-tab-unfocusedActiveBackground: #ffffff;
|
||||
--vscode-tab-inactiveBackground: #ececec;
|
||||
--vscode-tab-unfocusedInactiveBackground: #ececec;
|
||||
--vscode-tab-activeForeground: #333333;
|
||||
--vscode-tab-inactiveForeground: rgba(51, 51, 51, 0.7);
|
||||
--vscode-tab-unfocusedActiveForeground: rgba(51, 51, 51, 0.7);
|
||||
--vscode-tab-unfocusedInactiveForeground: rgba(51, 51, 51, 0.35);
|
||||
--vscode-tab-border: #f3f3f3;
|
||||
--vscode-tab-lastPinnedBorder: rgba(97, 97, 97, 0.19);
|
||||
--vscode-tab-selectedBackground: rgba(255, 255, 255, 0.65);
|
||||
--vscode-tab-selectedForeground: rgba(51, 51, 51, 0.7);
|
||||
--vscode-tab-dragAndDropBorder: #333333;
|
||||
--vscode-tab-activeModifiedBorder: #33aaee;
|
||||
--vscode-tab-inactiveModifiedBorder: rgba(51, 170, 238, 0.5);
|
||||
--vscode-tab-unfocusedActiveModifiedBorder: rgba(51, 170, 238, 0.7);
|
||||
--vscode-tab-unfocusedInactiveModifiedBorder: rgba(51, 170, 238, 0.25);
|
||||
--vscode-editorPane-background: #ffffff;
|
||||
--vscode-editorGroupHeader-tabsBackground: #f3f3f3;
|
||||
--vscode-editorGroupHeader-noTabsBackground: #ffffff;
|
||||
--vscode-editorGroup-border: #e7e7e7;
|
||||
--vscode-editorGroup-dropBackground: rgba(38, 119, 203, 0.18);
|
||||
--vscode-editorGroup-dropIntoPromptForeground: #616161;
|
||||
--vscode-editorGroup-dropIntoPromptBackground: #f3f3f3;
|
||||
--vscode-sideBySideEditor-horizontalBorder: #e7e7e7;
|
||||
--vscode-sideBySideEditor-verticalBorder: #e7e7e7;
|
||||
--vscode-panel-background: #ffffff;
|
||||
--vscode-panel-border: rgba(128, 128, 128, 0.35);
|
||||
--vscode-panelTitle-activeForeground: #424242;
|
||||
--vscode-panelTitle-inactiveForeground: rgba(66, 66, 66, 0.75);
|
||||
--vscode-panelTitle-activeBorder: #424242;
|
||||
--vscode-panelInput-border: #dddddd;
|
||||
--vscode-panel-dropBorder: #424242;
|
||||
--vscode-panelSection-dropBackground: rgba(38, 119, 203, 0.18);
|
||||
--vscode-panelSectionHeader-background: rgba(128, 128, 128, 0.2);
|
||||
--vscode-panelSection-border: rgba(128, 128, 128, 0.35);
|
||||
--vscode-panelStickyScroll-background: #ffffff;
|
||||
--vscode-panelStickyScroll-shadow: #dddddd;
|
||||
--vscode-banner-background: #004386;
|
||||
--vscode-banner-foreground: #ffffff;
|
||||
--vscode-banner-iconForeground: #1a85ff;
|
||||
--vscode-statusBar-foreground: #ffffff;
|
||||
--vscode-statusBar-noFolderForeground: #ffffff;
|
||||
--vscode-statusBar-background: #007acc;
|
||||
--vscode-statusBar-noFolderBackground: #68217a;
|
||||
--vscode-statusBar-focusBorder: #ffffff;
|
||||
--vscode-statusBarItem-activeBackground: rgba(255, 255, 255, 0.18);
|
||||
--vscode-statusBarItem-focusBorder: #ffffff;
|
||||
--vscode-statusBarItem-hoverBackground: rgba(255, 255, 255, 0.12);
|
||||
--vscode-statusBarItem-hoverForeground: #ffffff;
|
||||
--vscode-statusBarItem-compactHoverBackground: rgba(255, 255, 255, 0.2);
|
||||
--vscode-statusBarItem-prominentForeground: #ffffff;
|
||||
--vscode-statusBarItem-prominentBackground: rgba(0, 0, 0, 0.5);
|
||||
--vscode-statusBarItem-prominentHoverForeground: #ffffff;
|
||||
--vscode-statusBarItem-prominentHoverBackground: rgba(0, 0, 0, 0.3);
|
||||
--vscode-statusBarItem-errorBackground: #c72e0f;
|
||||
--vscode-statusBarItem-errorForeground: #ffffff;
|
||||
--vscode-statusBarItem-errorHoverForeground: #ffffff;
|
||||
--vscode-statusBarItem-errorHoverBackground: rgba(255, 255, 255, 0.12);
|
||||
--vscode-statusBarItem-warningBackground: #725102;
|
||||
--vscode-statusBarItem-warningForeground: #ffffff;
|
||||
--vscode-statusBarItem-warningHoverForeground: #ffffff;
|
||||
--vscode-statusBarItem-warningHoverBackground: rgba(255, 255, 255, 0.12);
|
||||
--vscode-activityBar-background: #2c2c2c;
|
||||
--vscode-activityBar-foreground: #ffffff;
|
||||
--vscode-activityBar-inactiveForeground: rgba(255, 255, 255, 0.4);
|
||||
--vscode-activityBar-activeBorder: #ffffff;
|
||||
--vscode-activityBar-dropBorder: #ffffff;
|
||||
--vscode-activityBarBadge-background: #007acc;
|
||||
--vscode-activityBarBadge-foreground: #ffffff;
|
||||
--vscode-activityBarTop-foreground: #424242;
|
||||
--vscode-activityBarTop-activeBorder: #424242;
|
||||
--vscode-activityBarTop-inactiveForeground: rgba(66, 66, 66, 0.75);
|
||||
--vscode-activityBarTop-dropBorder: #424242;
|
||||
--vscode-profileBadge-background: #c4c4c4;
|
||||
--vscode-profileBadge-foreground: #333333;
|
||||
--vscode-statusBarItem-remoteBackground: #16825d;
|
||||
--vscode-statusBarItem-remoteForeground: #ffffff;
|
||||
--vscode-statusBarItem-remoteHoverForeground: #ffffff;
|
||||
--vscode-statusBarItem-remoteHoverBackground: rgba(255, 255, 255, 0.12);
|
||||
--vscode-statusBarItem-offlineBackground: #6c1717;
|
||||
--vscode-statusBarItem-offlineForeground: #ffffff;
|
||||
--vscode-statusBarItem-offlineHoverForeground: #ffffff;
|
||||
--vscode-statusBarItem-offlineHoverBackground: rgba(255, 255, 255, 0.12);
|
||||
--vscode-extensionBadge-remoteBackground: #007acc;
|
||||
--vscode-extensionBadge-remoteForeground: #ffffff;
|
||||
--vscode-sideBar-background: #f3f3f3;
|
||||
--vscode-sideBarTitle-background: #f3f3f3;
|
||||
--vscode-sideBarTitle-foreground: #6f6f6f;
|
||||
--vscode-sideBar-dropBackground: rgba(38, 119, 203, 0.18);
|
||||
--vscode-sideBarSectionHeader-background: rgba(0, 0, 0, 0);
|
||||
--vscode-sideBarSectionHeader-border: rgba(97, 97, 97, 0.19);
|
||||
--vscode-sideBarActivityBarTop-border: rgba(97, 97, 97, 0.19);
|
||||
--vscode-sideBarStickyScroll-background: #f3f3f3;
|
||||
--vscode-sideBarStickyScroll-shadow: #dddddd;
|
||||
--vscode-titleBar-activeForeground: #333333;
|
||||
--vscode-titleBar-inactiveForeground: rgba(51, 51, 51, 0.6);
|
||||
--vscode-titleBar-activeBackground: #dddddd;
|
||||
--vscode-titleBar-inactiveBackground: rgba(221, 221, 221, 0.6);
|
||||
--vscode-menubar-selectionForeground: #333333;
|
||||
--vscode-menubar-selectionBackground: rgba(184, 184, 184, 0.31);
|
||||
--vscode-commandCenter-foreground: #333333;
|
||||
--vscode-commandCenter-activeForeground: #333333;
|
||||
--vscode-commandCenter-inactiveForeground: rgba(51, 51, 51, 0.6);
|
||||
--vscode-commandCenter-background: rgba(0, 0, 0, 0.05);
|
||||
--vscode-commandCenter-activeBackground: rgba(0, 0, 0, 0.08);
|
||||
--vscode-commandCenter-border: rgba(51, 51, 51, 0.2);
|
||||
--vscode-commandCenter-activeBorder: rgba(51, 51, 51, 0.3);
|
||||
--vscode-commandCenter-inactiveBorder: rgba(51, 51, 51, 0.15);
|
||||
--vscode-notificationCenter-border: #d4d4d4;
|
||||
--vscode-notificationToast-border: #d4d4d4;
|
||||
--vscode-notifications-foreground: #616161;
|
||||
--vscode-notifications-background: #f3f3f3;
|
||||
--vscode-notificationLink-foreground: #006ab1;
|
||||
--vscode-notificationCenterHeader-background: #e7e7e7;
|
||||
--vscode-notifications-border: #e7e7e7;
|
||||
--vscode-notificationsErrorIcon-foreground: #e51400;
|
||||
--vscode-notificationsWarningIcon-foreground: #bf8803;
|
||||
--vscode-notificationsInfoIcon-foreground: #1a85ff;
|
||||
--vscode-inlineChat-foreground: #616161;
|
||||
--vscode-inlineChat-background: #f3f3f3;
|
||||
--vscode-inlineChat-border: #c8c8c8;
|
||||
--vscode-inlineChat-shadow: rgba(0, 0, 0, 0.16);
|
||||
--vscode-inlineChatInput-border: #c8c8c8;
|
||||
--vscode-inlineChatInput-focusBorder: #0090f1;
|
||||
--vscode-inlineChatInput-placeholderForeground: #767676;
|
||||
--vscode-inlineChatInput-background: #ffffff;
|
||||
--vscode-inlineChatDiff-inserted: rgba(156, 204, 44, 0.13);
|
||||
--vscode-editorOverviewRuler-inlineChatInserted: rgba(156, 204, 44, 0.2);
|
||||
--vscode-inlineChatDiff-removed: rgba(255, 0, 0, 0.1);
|
||||
--vscode-editorOverviewRuler-inlineChatRemoved: rgba(255, 0, 0, 0.16);
|
||||
--vscode-extensionButton-background: #007acc;
|
||||
--vscode-extensionButton-foreground: #ffffff;
|
||||
--vscode-extensionButton-hoverBackground: #0062a3;
|
||||
--vscode-extensionButton-separator: rgba(255, 255, 255, 0.4);
|
||||
--vscode-extensionButton-prominentBackground: #007acc;
|
||||
--vscode-extensionButton-prominentForeground: #ffffff;
|
||||
--vscode-extensionButton-prominentHoverBackground: #0062a3;
|
||||
--vscode-chat-requestBorder: rgba(0, 0, 0, 0.1);
|
||||
--vscode-chat-requestBackground: rgba(255, 255, 255, 0.62);
|
||||
--vscode-chat-slashCommandBackground: rgba(210, 236, 255, 0.6);
|
||||
--vscode-chat-slashCommandForeground: #306ca2;
|
||||
--vscode-chat-avatarBackground: #f2f2f2;
|
||||
--vscode-chat-avatarForeground: #616161;
|
||||
--vscode-terminal-foreground: #333333;
|
||||
--vscode-terminal-selectionBackground: #add6ff;
|
||||
--vscode-terminal-inactiveSelectionBackground: #e5ebf1;
|
||||
--vscode-terminalCommandDecoration-defaultBackground: rgba(0, 0, 0, 0.25);
|
||||
--vscode-terminalCommandDecoration-successBackground: #2090d3;
|
||||
--vscode-terminalCommandDecoration-errorBackground: #e51400;
|
||||
--vscode-terminalOverviewRuler-cursorForeground: rgba(160, 160, 160, 0.8);
|
||||
--vscode-terminal-border: rgba(128, 128, 128, 0.35);
|
||||
--vscode-terminalOverviewRuler-border: rgba(127, 127, 127, 0.3);
|
||||
--vscode-terminal-findMatchBackground: #a8ac94;
|
||||
--vscode-terminal-hoverHighlightBackground: rgba(173, 214, 255, 0.07);
|
||||
--vscode-terminal-findMatchHighlightBackground: rgba(234, 92, 0, 0.33);
|
||||
--vscode-terminalOverviewRuler-findMatchForeground: rgba(209, 134, 22, 0.49);
|
||||
--vscode-terminal-dropBackground: rgba(38, 119, 203, 0.18);
|
||||
--vscode-terminal-initialHintForeground: rgba(0, 0, 0, 0.47);
|
||||
--vscode-terminalStickyScrollHover-background: #f0f0f0;
|
||||
--vscode-scmGraph-historyItemRefColor: #1a85ff;
|
||||
--vscode-scmGraph-historyItemRemoteRefColor: #652d90;
|
||||
--vscode-scmGraph-historyItemBaseRefColor: #ea5c00;
|
||||
--vscode-scmGraph-historyItemHoverDefaultLabelForeground: #616161;
|
||||
--vscode-scmGraph-historyItemHoverDefaultLabelBackground: #c4c4c4;
|
||||
--vscode-scmGraph-historyItemHoverLabelForeground: #ffffff;
|
||||
--vscode-scmGraph-historyItemHoverAdditionsForeground: #587c0c;
|
||||
--vscode-scmGraph-historyItemHoverDeletionsForeground: #ad0707;
|
||||
--vscode-scmGraph-foreground1: #ffb000;
|
||||
--vscode-scmGraph-foreground2: #dc267f;
|
||||
--vscode-scmGraph-foreground3: #994f00;
|
||||
--vscode-scmGraph-foreground4: #40b0a6;
|
||||
--vscode-scmGraph-foreground5: #b66dff;
|
||||
--vscode-commentsView-resolvedIcon: rgba(97, 97, 97, 0.5);
|
||||
--vscode-commentsView-unresolvedIcon: #0090f1;
|
||||
--vscode-editorCommentsWidget-replyInputBackground: #f3f3f3;
|
||||
--vscode-editorCommentsWidget-resolvedBorder: rgba(97, 97, 97, 0.5);
|
||||
--vscode-editorCommentsWidget-unresolvedBorder: #0090f1;
|
||||
--vscode-editorCommentsWidget-rangeBackground: rgba(0, 144, 241, 0.1);
|
||||
--vscode-editorCommentsWidget-rangeActiveBackground: rgba(0, 144, 241, 0.1);
|
||||
--vscode-editorGutter-commentRangeForeground: #d5d8e9;
|
||||
--vscode-editorOverviewRuler-commentForeground: #d5d8e9;
|
||||
--vscode-editorOverviewRuler-commentUnresolvedForeground: #d5d8e9;
|
||||
--vscode-editorGutter-commentGlyphForeground: #000000;
|
||||
--vscode-editorGutter-commentUnresolvedGlyphForeground: #000000;
|
||||
--vscode-activityWarningBadge-foreground: #ffffff;
|
||||
--vscode-activityWarningBadge-background: #bf8803;
|
||||
--vscode-activityErrorBadge-foreground: #ffffff;
|
||||
--vscode-activityErrorBadge-background: #e51400;
|
||||
--vscode-ports-iconRunningProcessForeground: #369432;
|
||||
--vscode-editorWatermark-foreground: rgba(0, 0, 0, 0.68);
|
||||
--vscode-settings-headerForeground: #444444;
|
||||
--vscode-settings-settingsHeaderHoverForeground: rgba(68, 68, 68, 0.7);
|
||||
--vscode-settings-modifiedItemIndicator: #66afe0;
|
||||
--vscode-settings-headerBorder: rgba(128, 128, 128, 0.35);
|
||||
--vscode-settings-sashBorder: rgba(128, 128, 128, 0.35);
|
||||
--vscode-settings-dropdownBackground: #ffffff;
|
||||
--vscode-settings-dropdownForeground: #616161;
|
||||
--vscode-settings-dropdownBorder: #cecece;
|
||||
--vscode-settings-dropdownListBorder: #c8c8c8;
|
||||
--vscode-settings-checkboxBackground: #ffffff;
|
||||
--vscode-settings-checkboxForeground: #616161;
|
||||
--vscode-settings-checkboxBorder: #919191;
|
||||
--vscode-settings-textInputBackground: #ffffff;
|
||||
--vscode-settings-textInputForeground: #616161;
|
||||
--vscode-settings-textInputBorder: #cecece;
|
||||
--vscode-settings-numberInputBackground: #ffffff;
|
||||
--vscode-settings-numberInputForeground: #616161;
|
||||
--vscode-settings-numberInputBorder: #cecece;
|
||||
--vscode-settings-focusedRowBackground: rgba(232, 232, 232, 0.6);
|
||||
--vscode-settings-rowHoverBackground: rgba(232, 232, 232, 0.3);
|
||||
--vscode-settings-focusedRowBorder: #0090f1;
|
||||
--vscode-keybindingTable-headerBackground: rgba(97, 97, 97, 0.04);
|
||||
--vscode-keybindingTable-rowsBackground: rgba(97, 97, 97, 0.04);
|
||||
--vscode-debugToolBar-background: #f3f3f3;
|
||||
--vscode-debugIcon-startForeground: #388a34;
|
||||
--vscode-notebook-cellBorderColor: #e8e8e8;
|
||||
--vscode-notebook-focusedEditorBorder: #0090f1;
|
||||
--vscode-notebookStatusSuccessIcon-foreground: #388a34;
|
||||
--vscode-notebookEditorOverviewRuler-runningCellForeground: #388a34;
|
||||
--vscode-notebookStatusErrorIcon-foreground: #a1260d;
|
||||
--vscode-notebookStatusRunningIcon-foreground: #616161;
|
||||
--vscode-notebook-cellToolbarSeparator: rgba(128, 128, 128, 0.35);
|
||||
--vscode-notebook-selectedCellBackground: rgba(200, 221, 241, 0.31);
|
||||
--vscode-notebook-selectedCellBorder: #e8e8e8;
|
||||
--vscode-notebook-focusedCellBorder: #0090f1;
|
||||
--vscode-notebook-inactiveFocusedCellBorder: #e8e8e8;
|
||||
--vscode-notebook-cellStatusBarItemHoverBackground: rgba(0, 0, 0, 0.08);
|
||||
--vscode-notebook-cellInsertionIndicator: #0090f1;
|
||||
--vscode-notebookScrollbarSlider-background: rgba(100, 100, 100, 0.4);
|
||||
--vscode-notebookScrollbarSlider-hoverBackground: rgba(100, 100, 100, 0.7);
|
||||
--vscode-notebookScrollbarSlider-activeBackground: rgba(0, 0, 0, 0.6);
|
||||
--vscode-notebook-symbolHighlightBackground: rgba(253, 255, 0, 0.2);
|
||||
--vscode-notebook-cellEditorBackground: #f3f3f3;
|
||||
--vscode-notebook-editorBackground: #ffffff;
|
||||
--vscode-debugIcon-breakpointForeground: #e51400;
|
||||
--vscode-debugIcon-breakpointDisabledForeground: #848484;
|
||||
--vscode-debugIcon-breakpointUnverifiedForeground: #848484;
|
||||
--vscode-debugIcon-breakpointCurrentStackframeForeground: #be8700;
|
||||
--vscode-debugIcon-breakpointStackframeForeground: #89d185;
|
||||
--vscode-editor-stackFrameHighlightBackground: rgba(255, 255, 102, 0.45);
|
||||
--vscode-editor-focusedStackFrameHighlightBackground: rgba(206, 231, 206, 0.45);
|
||||
--vscode-multiDiffEditor-headerBackground: #ececec;
|
||||
--vscode-multiDiffEditor-background: #ffffff;
|
||||
--vscode-multiDiffEditor-border: #cccccc;
|
||||
--vscode-interactive-activeCodeBorder: #007acc;
|
||||
--vscode-interactive-inactiveCodeBorder: #e4e6f1;
|
||||
--vscode-testing-iconFailed: #f14c4c;
|
||||
--vscode-testing-iconErrored: #f14c4c;
|
||||
--vscode-testing-iconPassed: #73c991;
|
||||
--vscode-testing-runAction: #73c991;
|
||||
--vscode-testing-iconQueued: #cca700;
|
||||
--vscode-testing-iconUnset: #848484;
|
||||
--vscode-testing-iconSkipped: #848484;
|
||||
--vscode-testing-peekBorder: #e51400;
|
||||
--vscode-testing-messagePeekBorder: #1a85ff;
|
||||
--vscode-testing-peekHeaderBackground: rgba(229, 20, 0, 0.1);
|
||||
--vscode-testing-messagePeekHeaderBackground: rgba(26, 133, 255, 0.1);
|
||||
--vscode-testing-coveredBackground: rgba(156, 204, 44, 0.25);
|
||||
--vscode-testing-coveredBorder: rgba(156, 204, 44, 0.19);
|
||||
--vscode-testing-coveredGutterBackground: rgba(156, 204, 44, 0.15);
|
||||
--vscode-testing-uncoveredBranchBackground: #ff9999;
|
||||
--vscode-testing-uncoveredBackground: rgba(255, 0, 0, 0.2);
|
||||
--vscode-testing-uncoveredBorder: rgba(255, 0, 0, 0.15);
|
||||
--vscode-testing-uncoveredGutterBackground: rgba(255, 0, 0, 0.3);
|
||||
--vscode-testing-coverCountBadgeBackground: #c4c4c4;
|
||||
--vscode-testing-coverCountBadgeForeground: #333333;
|
||||
--vscode-testing-message-error-decorationForeground: #e51400;
|
||||
--vscode-testing-message-error-lineBackground: rgba(255, 0, 0, 0.1);
|
||||
--vscode-testing-message-info-decorationForeground: rgba(0, 0, 0, 0.5);
|
||||
--vscode-testing-iconErrored-retired: rgba(241, 76, 76, 0.7);
|
||||
--vscode-testing-iconFailed-retired: rgba(241, 76, 76, 0.7);
|
||||
--vscode-testing-iconPassed-retired: rgba(115, 201, 145, 0.7);
|
||||
--vscode-testing-iconQueued-retired: rgba(204, 167, 0, 0.7);
|
||||
--vscode-testing-iconUnset-retired: rgba(132, 132, 132, 0.7);
|
||||
--vscode-testing-iconSkipped-retired: rgba(132, 132, 132, 0.7);
|
||||
--vscode-searchEditor-textInputBorder: #cecece;
|
||||
--vscode-editorGutter-modifiedBackground: #2090d3;
|
||||
--vscode-editorGutter-addedBackground: #48985d;
|
||||
--vscode-editorGutter-deletedBackground: #e51400;
|
||||
--vscode-minimapGutter-modifiedBackground: #2090d3;
|
||||
--vscode-minimapGutter-addedBackground: #48985d;
|
||||
--vscode-minimapGutter-deletedBackground: #e51400;
|
||||
--vscode-editorOverviewRuler-modifiedForeground: rgba(32, 144, 211, 0.6);
|
||||
--vscode-editorOverviewRuler-addedForeground: rgba(72, 152, 93, 0.6);
|
||||
--vscode-editorOverviewRuler-deletedForeground: rgba(229, 20, 0, 0.6);
|
||||
--vscode-debugExceptionWidget-border: #a31515;
|
||||
--vscode-debugExceptionWidget-background: #f1dfde;
|
||||
--vscode-editor-inlineValuesForeground: rgba(0, 0, 0, 0.5);
|
||||
--vscode-editor-inlineValuesBackground: rgba(255, 200, 0, 0.2);
|
||||
--vscode-statusBar-debuggingBackground: #cc6633;
|
||||
--vscode-statusBar-debuggingForeground: #ffffff;
|
||||
--vscode-commandCenter-debuggingBackground: rgba(204, 102, 51, 0.26);
|
||||
--vscode-debugTokenExpression-name: #9b46b0;
|
||||
--vscode-debugTokenExpression-type: #4a90e2;
|
||||
--vscode-debugTokenExpression-value: rgba(108, 108, 108, 0.8);
|
||||
--vscode-debugTokenExpression-string: #a31515;
|
||||
--vscode-debugTokenExpression-boolean: #0000ff;
|
||||
--vscode-debugTokenExpression-number: #098658;
|
||||
--vscode-debugTokenExpression-error: #e51400;
|
||||
--vscode-debugView-exceptionLabelForeground: #ffffff;
|
||||
--vscode-debugView-exceptionLabelBackground: #a31515;
|
||||
--vscode-debugView-stateLabelForeground: #616161;
|
||||
--vscode-debugView-stateLabelBackground: rgba(136, 136, 136, 0.27);
|
||||
--vscode-debugView-valueChangedHighlight: #569cd6;
|
||||
--vscode-debugConsole-infoForeground: #1a85ff;
|
||||
--vscode-debugConsole-warningForeground: #bf8803;
|
||||
--vscode-debugConsole-errorForeground: #a1260d;
|
||||
--vscode-debugConsole-sourceForeground: #616161;
|
||||
--vscode-debugConsoleInputIcon-foreground: #616161;
|
||||
--vscode-debugIcon-pauseForeground: #007acc;
|
||||
--vscode-debugIcon-stopForeground: #a1260d;
|
||||
--vscode-debugIcon-disconnectForeground: #a1260d;
|
||||
--vscode-debugIcon-restartForeground: #388a34;
|
||||
--vscode-debugIcon-stepOverForeground: #007acc;
|
||||
--vscode-debugIcon-stepIntoForeground: #007acc;
|
||||
--vscode-debugIcon-stepOutForeground: #007acc;
|
||||
--vscode-debugIcon-continueForeground: #007acc;
|
||||
--vscode-debugIcon-stepBackForeground: #007acc;
|
||||
--vscode-mergeEditor-change-background: rgba(155, 185, 85, 0.2);
|
||||
--vscode-mergeEditor-change-word-background: rgba(156, 204, 44, 0.4);
|
||||
--vscode-mergeEditor-changeBase-background: #ffcccc;
|
||||
--vscode-mergeEditor-changeBase-word-background: #ffa3a3;
|
||||
--vscode-mergeEditor-conflict-unhandledUnfocused-border: #ffa600;
|
||||
--vscode-mergeEditor-conflict-unhandledFocused-border: #ffa600;
|
||||
--vscode-mergeEditor-conflict-handledUnfocused-border: rgba(134, 134, 134, 0.29);
|
||||
--vscode-mergeEditor-conflict-handledFocused-border: rgba(193, 193, 193, 0.8);
|
||||
--vscode-mergeEditor-conflict-handled-minimapOverViewRuler: rgba(173, 172, 168, 0.93);
|
||||
--vscode-mergeEditor-conflict-unhandled-minimapOverViewRuler: #fcba03;
|
||||
--vscode-mergeEditor-conflictingLines-background: rgba(255, 234, 0, 0.28);
|
||||
--vscode-mergeEditor-conflict-input1-background: rgba(64, 200, 174, 0.2);
|
||||
--vscode-mergeEditor-conflict-input2-background: rgba(64, 166, 255, 0.2);
|
||||
--vscode-extensionIcon-starForeground: #df6100;
|
||||
--vscode-extensionIcon-verifiedForeground: #006ab1;
|
||||
--vscode-extensionIcon-preReleaseForeground: #1d9271;
|
||||
--vscode-extensionIcon-sponsorForeground: #b51e78;
|
||||
--vscode-terminal-ansiBlack: #000000;
|
||||
--vscode-terminal-ansiRed: #cd3131;
|
||||
--vscode-terminal-ansiGreen: #107c10;
|
||||
--vscode-terminal-ansiYellow: #949800;
|
||||
--vscode-terminal-ansiBlue: #0451a5;
|
||||
--vscode-terminal-ansiMagenta: #bc05bc;
|
||||
--vscode-terminal-ansiCyan: #0598bc;
|
||||
--vscode-terminal-ansiWhite: #555555;
|
||||
--vscode-terminal-ansiBrightBlack: #666666;
|
||||
--vscode-terminal-ansiBrightRed: #cd3131;
|
||||
--vscode-terminal-ansiBrightGreen: #14ce14;
|
||||
--vscode-terminal-ansiBrightYellow: #b5ba00;
|
||||
--vscode-terminal-ansiBrightBlue: #0451a5;
|
||||
--vscode-terminal-ansiBrightMagenta: #bc05bc;
|
||||
--vscode-terminal-ansiBrightCyan: #0598bc;
|
||||
--vscode-terminal-ansiBrightWhite: #a5a5a5;
|
||||
--vscode-simpleFindWidget-sashBorder: #c8c8c8;
|
||||
--vscode-terminalCommandGuide-foreground: #e4e6f1;
|
||||
--vscode-welcomePage-tileBackground: #f3f3f3;
|
||||
--vscode-welcomePage-tileHoverBackground: #dbdbdb;
|
||||
--vscode-welcomePage-tileBorder: rgba(0, 0, 0, 0.1);
|
||||
--vscode-welcomePage-progress-background: #ffffff;
|
||||
--vscode-welcomePage-progress-foreground: #006ab1;
|
||||
--vscode-walkthrough-stepTitle-foreground: #000000;
|
||||
--vscode-walkThrough-embeddedEditorBackground: #f4f4f4;
|
||||
--vscode-profiles-sashBorder: rgba(128, 128, 128, 0.35);
|
||||
--vscode-gitDecoration-addedResourceForeground: #587c0c;
|
||||
--vscode-gitDecoration-modifiedResourceForeground: #895503;
|
||||
--vscode-gitDecoration-deletedResourceForeground: #ad0707;
|
||||
--vscode-gitDecoration-renamedResourceForeground: #007100;
|
||||
--vscode-gitDecoration-untrackedResourceForeground: #007100;
|
||||
--vscode-gitDecoration-ignoredResourceForeground: #8e8e90;
|
||||
--vscode-gitDecoration-stageModifiedResourceForeground: #895503;
|
||||
--vscode-gitDecoration-stageDeletedResourceForeground: #ad0707;
|
||||
--vscode-gitDecoration-conflictingResourceForeground: #ad0707;
|
||||
--vscode-gitDecoration-submoduleResourceForeground: #1258a7;
|
||||
--vscode-gitlens-gutterBackgroundColor: rgba(0, 0, 0, 0.05);
|
||||
--vscode-gitlens-gutterForegroundColor: #747474;
|
||||
--vscode-gitlens-gutterUncommittedForegroundColor: rgba(0, 188, 242, 0.6);
|
||||
--vscode-gitlens-trailingLineBackgroundColor: rgba(0, 0, 0, 0);
|
||||
--vscode-gitlens-trailingLineForegroundColor: rgba(153, 153, 153, 0.35);
|
||||
--vscode-gitlens-lineHighlightBackgroundColor: rgba(0, 188, 242, 0.2);
|
||||
--vscode-gitlens-lineHighlightOverviewRulerColor: rgba(0, 188, 242, 0.6);
|
||||
--vscode-gitlens-openAutolinkedIssueIconColor: #1a7f37;
|
||||
--vscode-gitlens-closedAutolinkedIssueIconColor: #8250df;
|
||||
--vscode-gitlens-closedPullRequestIconColor: #cf222e;
|
||||
--vscode-gitlens-openPullRequestIconColor: #1a7f37;
|
||||
--vscode-gitlens-mergedPullRequestIconColor: #8250df;
|
||||
--vscode-gitlens-unpublishedChangesIconColor: #35b15e;
|
||||
--vscode-gitlens-unpublishedCommitIconColor: #35b15e;
|
||||
--vscode-gitlens-unpulledChangesIconColor: #b15e35;
|
||||
--vscode-gitlens-decorations-addedForegroundColor: #587c0c;
|
||||
--vscode-gitlens-decorations-copiedForegroundColor: #007100;
|
||||
--vscode-gitlens-decorations-deletedForegroundColor: #ad0707;
|
||||
--vscode-gitlens-decorations-ignoredForegroundColor: #8e8e90;
|
||||
--vscode-gitlens-decorations-modifiedForegroundColor: #895503;
|
||||
--vscode-gitlens-decorations-untrackedForegroundColor: #007100;
|
||||
--vscode-gitlens-decorations-renamedForegroundColor: #007100;
|
||||
--vscode-gitlens-decorations-branchAheadForegroundColor: #35b15e;
|
||||
--vscode-gitlens-decorations-branchBehindForegroundColor: #b15e35;
|
||||
--vscode-gitlens-decorations-branchDivergedForegroundColor: #d8af1b;
|
||||
--vscode-gitlens-decorations-branchMissingUpstreamForegroundColor: #ad0707;
|
||||
--vscode-gitlens-decorations-statusMergingOrRebasingConflictForegroundColor: #ad0707;
|
||||
--vscode-gitlens-decorations-statusMergingOrRebasingForegroundColor: #d8af1b;
|
||||
--vscode-gitlens-decorations-workspaceRepoMissingForegroundColor: #949494;
|
||||
--vscode-gitlens-decorations-workspaceCurrentForegroundColor: #35b15e;
|
||||
--vscode-gitlens-decorations-workspaceRepoOpenForegroundColor: #35b15e;
|
||||
--vscode-gitlens-decorations-worktreeHasUncommittedChangesForegroundColor: #895503;
|
||||
--vscode-gitlens-decorations-worktreeMissingForegroundColor: #ad0707;
|
||||
--vscode-gitlens-graphLane1Color: #15a0bf;
|
||||
--vscode-gitlens-graphLane2Color: #0669f7;
|
||||
--vscode-gitlens-graphLane3Color: #8e00c2;
|
||||
--vscode-gitlens-graphLane4Color: #c517b6;
|
||||
--vscode-gitlens-graphLane5Color: #d90171;
|
||||
--vscode-gitlens-graphLane6Color: #cd0101;
|
||||
--vscode-gitlens-graphLane7Color: #f25d2e;
|
||||
--vscode-gitlens-graphLane8Color: #f2ca33;
|
||||
--vscode-gitlens-graphLane9Color: #7bd938;
|
||||
--vscode-gitlens-graphLane10Color: #2ece9d;
|
||||
--vscode-gitlens-graphChangesColumnAddedColor: #2da44e;
|
||||
--vscode-gitlens-graphChangesColumnDeletedColor: #cf222e;
|
||||
--vscode-gitlens-graphMinimapMarkerHeadColor: #04c814;
|
||||
--vscode-gitlens-graphScrollMarkerHeadColor: #04c814;
|
||||
--vscode-gitlens-graphMinimapMarkerUpstreamColor: #8cd993;
|
||||
--vscode-gitlens-graphScrollMarkerUpstreamColor: #8cd993;
|
||||
--vscode-gitlens-graphMinimapMarkerHighlightsColor: #f5cc00;
|
||||
--vscode-gitlens-graphScrollMarkerHighlightsColor: #f5cc00;
|
||||
--vscode-gitlens-graphMinimapMarkerLocalBranchesColor: #3095e8;
|
||||
--vscode-gitlens-graphScrollMarkerLocalBranchesColor: #3095e8;
|
||||
--vscode-gitlens-graphMinimapMarkerPullRequestsColor: #ff8f18;
|
||||
--vscode-gitlens-graphScrollMarkerPullRequestsColor: #ff8f18;
|
||||
--vscode-gitlens-graphMinimapMarkerRemoteBranchesColor: #67ace4;
|
||||
--vscode-gitlens-graphScrollMarkerRemoteBranchesColor: #67ace4;
|
||||
--vscode-gitlens-graphMinimapMarkerStashesColor: #e467e4;
|
||||
--vscode-gitlens-graphScrollMarkerStashesColor: #e467e4;
|
||||
--vscode-gitlens-graphMinimapMarkerTagsColor: #d2a379;
|
||||
--vscode-gitlens-graphScrollMarkerTagsColor: #d2a379;
|
||||
--vscode-gitlens-launchpadIndicatorMergeableColor: #42c954;
|
||||
--vscode-gitlens-launchpadIndicatorMergeableHoverColor: #42c954;
|
||||
--vscode-gitlens-launchpadIndicatorBlockedColor: #ad0707;
|
||||
--vscode-gitlens-launchpadIndicatorBlockedHoverColor: #ad0707;
|
||||
--vscode-gitlens-launchpadIndicatorAttentionColor: #cc9b15;
|
||||
--vscode-gitlens-launchpadIndicatorAttentionHoverColor: #cc9b15;
|
||||
--vscode-remoteHub-decorations-addedForegroundColor: #587c0c;
|
||||
--vscode-remoteHub-decorations-modifiedForegroundColor: #895503;
|
||||
--vscode-remoteHub-decorations-deletedForegroundColor: #ad0707;
|
||||
--vscode-remoteHub-decorations-submoduleForegroundColor: #1258a7;
|
||||
--vscode-remoteHub-decorations-conflictForegroundColor: #ad0707;
|
||||
--vscode-remoteHub-decorations-incomingAddedForegroundColor: #587c0c;
|
||||
--vscode-remoteHub-decorations-incomingModifiedForegroundColor: #895503;
|
||||
--vscode-remoteHub-decorations-incomingDeletedForegroundColor: #ad0707;
|
||||
--vscode-remoteHub-decorations-incomingRenamedForegroundColor: #007100;
|
||||
--vscode-remoteHub-decorations-possibleConflictForegroundColor: #855f00;
|
||||
--vscode-remoteHub-decorations-ignoredResourceForeground: #8e8e90;
|
||||
--vscode-remoteHub-decorations-workspaceRepositoriesView-hasUncommittedChangesForegroundColor: #895503;
|
||||
--vscode-rust_analyzer-syntaxTreeBorder: #b700ff;
|
||||
}
|
BIN
public/icon.png
Normal file
BIN
public/icon.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 20 KiB |
42
public/icon.svg
Normal file
42
public/icon.svg
Normal file
@ -0,0 +1,42 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1"
|
||||
width="126px" height="126px" viewBox="-0.5 -0.5 126 126"
|
||||
content="<mxfile><diagram id="E9SxX19eNgA6MUTyjjO6" name="Icon-黑白">7VnbktsoEP0aP0YlhG5+HF/GqVSS8pZrd2f3xcVIWGJXEiqEx3K+fsFCN8sXORnNuJL1g003TQN9DtDgEZzG+YKhNPxCfRyNDN3PR3A2MgzoOOJbKvaFwjDNQhEw4hcqUCtW5BtWSl1pt8THWcuQUxpxkraVHk0S7PGWDjFGd22zDY3avaYowB3FykNRV/sn8XmotMAe1xUfMQlC1bVrqAnHqDRWM8lC5NNdQwXnIzhllPKiFOdTHMnYlXHxJ7s5fqSf7OfpbvVp7cXpYv2hcPZ4S5NqCgwn/HVdw8L1C4q2Kl5qrnxfBnAXEo5XKfKkvBMcGcFJyONISEAUUZYWsG1IjkVXkw2JoimNKDs0h8YMGnAi9Bln9N8KA0ta0oQ3LDeHT2VZ1iQ0ET1PGN0mvuyg6JV5imrAFWLPAKlAvmDGcd6ghwrYAtMYc7YXJqrWtBX2JflLedegUsmPsMGiSokUfYPKdw2RKCiUbkDMfC/EYG/ERM104oLZwwXYLH1I2FyoOVYbuYaqAZ5jaFYXvVr76vDZ1+ETXsTmKDl/K5BtwIwutBUs5wELGPIJrmFWy2+4FeZobaSgVWmaq+wETGAokJx7B2koNCzrDtFw/0ejPn/eEo08X23Th+zzxPqbzBe7cGIbf/TZwAKx6adVXDrzrXI99Fy20G8J4fm9ZHzEXb17WlsnYgWHYu74eqxkdIjIVj+jZxwtaUY4oYmoeqac01jSrsw65YHpoyw8HKZSQBEJpKknYoZZm+el2wdlw2la+Eplv3EeyFxfw5FAgUk7LaIB8dYB4jhrlEUbmmKG1KBQMtySuUi23kumjLBiADA1B9quKW4jlmFDYHf4AOGJteNqVQvLccdD0QOA6/y4OZcTGdojikkkIzClMfGEvxVKMvHzZaUMVA7mdsAER2D6eIO2ER8CsOb+BU5gAIYKuvELB708RgzNAWNj7BqmZQNTh2b3THlTTJzuie6LW7wSKeMhDWiConmtbdws9DY8OCf8Sall+S9Zlsl/Ic7yRt1s3xCWmBExIbmXFrpETO6p9CqFwpVVirWrg1T6uoUOAB6a+w/yqaNOt4XmkcggHhye30e7e/FtnMnolnn4+hHGEQvwxZNZrSKJ20UKMhyJ4+Sl/TrzI4zS7309j2QiIj+nkKxqfsK1fvfH2zsh8wahPznCIR77XhuP3rnjiWtFP4juB48hnvJ+Bjzef+c6OVpriCSlLDcyi/M5SpmPVELRyriWkByk4+zmVqq8fpJylCt8P2F65xSHpmIWaN8wSClJeNbwvJSK+k4J7KNXGFuTbLR011H8bFLrenMw1mxzDAzD1R0dOJZpHVGzGOAZb6DHUKqpFemdcnFhjMfX5rEGWzdgs+22yAY7bg+rqoKl10Lzflt8s5++muuPH5bW+vf863LzT59z6h4e/K7seN/zgNV5DB/0wU+I9b+XBXj1X8Bw/h8=</diagram><diagram id="2oZjiazD9LnPP1Vpl2Fo" name="第 2 页">5ZZdb4IwFEB/DY8m0DLQV5m6h7nEuGXPDVToVigpVXC/fkUuX+Lilui2RF+k515u29ObBgN7cbGQJI2WIqDcQGZQGPjeQAiZeKL/SrKviGU6qCKhZAGwFqzZB60TgW5ZQLNeohKCK5b2oS+ShPqqx4iUIu+nbQTvz5qSEGY0W7D2CaeDtFcWqKiiY+S2/IGyMKpnthzYcUzqZCicRSQQeQfhmYE9KYSqnuLCo7y0V3up3pt/EW0WJmmivvNCulw+b3YrwlZPycub9Tgd52oEVXaEb2HDsFi1rw1IsU0CWhaxDDzNI6boOiV+Gc31oWsWqZhDeMM49wQXUo8TkeikaaakeG/kIVuj4dLrdVCpaNFBsJUFFTFVcq9TIDqyXPAKnYVtGOftMWEMLOocUQMJtEbYFG/t6QcQ+AOZ6NdlmheS6Y57Lm2MBi4t2xm6bODFXeLzLnUVfQvQ8x5JllZXw4YVpfsji+Mj1QbC88OvyTwVuUgP20c97A572D7Rwva1OvjuBqxP/plz5/acO+YfO3dvwPngdrmidT1sP2QOsc73IJ59Ag==</diagram></mxfile>">
|
||||
<defs />
|
||||
<g>
|
||||
<rect x="2" y="2" width="120" height="120" rx="21.6" ry="21.6" fill="#2d323b" stroke="none"
|
||||
pointer-events="all" />
|
||||
<rect x="25.75" y="25.75" width="72.5" height="72.5" rx="36.25" ry="36.25" fill="#2d323b"
|
||||
stroke="#cb81da" stroke-width="3" pointer-events="all" />
|
||||
<ellipse cx="17" cy="107" rx="7.500000000000001" ry="7.500000000000001" fill="#cb81da"
|
||||
stroke="#cb81da" stroke-width="2" pointer-events="all" />
|
||||
<ellipse cx="107" cy="107" rx="7.500000000000001" ry="7.500000000000001" fill="#cb81da"
|
||||
stroke="#cb81da" stroke-width="2" pointer-events="all" />
|
||||
<ellipse cx="107" cy="17" rx="7.500000000000001" ry="7.500000000000001" fill="#cb81da"
|
||||
stroke="#cb81da" stroke-width="2" pointer-events="all" />
|
||||
<path d="M 85.4 65.95 L 92 65.95 M 59 61.34 L 65.6 61.34 M 59 70.55 L 65.6 70.55"
|
||||
fill="none" stroke="#cb81da" stroke-width="2" stroke-miterlimit="10"
|
||||
pointer-events="none" />
|
||||
<path
|
||||
d="M 65.6 56.74 L 75.5 56.74 C 80.97 56.74 85.4 60.86 85.4 65.95 C 85.4 71.03 80.97 75.16 75.5 75.16 L 65.6 75.16 Z"
|
||||
fill="#cb81da" stroke="#cb81da" stroke-width="2" stroke-miterlimit="10"
|
||||
pointer-events="none" />
|
||||
<rect x="37" y="42" width="11" height="11" fill="rgb(255, 255, 255)" stroke="rgb(0, 0, 0)"
|
||||
pointer-events="none" />
|
||||
<rect x="37" y="64.72" width="11" height="11" fill="rgb(255, 255, 255)"
|
||||
stroke="rgb(0, 0, 0)" pointer-events="none" />
|
||||
<path d="M 59 70.55 L 48.01 70.6" fill="none" stroke="#cb81da" stroke-width="2"
|
||||
stroke-miterlimit="10" pointer-events="none" />
|
||||
<rect x="37" y="64.72" width="11" height="11" fill="#000000" stroke="#000000"
|
||||
pointer-events="none" />
|
||||
<rect x="37" y="42" width="11" height="11" fill="#000000" stroke="#000000"
|
||||
pointer-events="none" />
|
||||
<rect x="37" y="42" width="11" height="11" fill="#cb81da" stroke="#cb81da"
|
||||
pointer-events="none" />
|
||||
<rect x="37" y="64.72" width="11" height="11" fill="#cb81da" stroke="#cb81da"
|
||||
pointer-events="none" />
|
||||
<path d="M 48 48.14 L 53.51 48.09 L 53.51 61.31 L 59 61.34" fill="none" stroke="#cb81da"
|
||||
stroke-width="2" stroke-miterlimit="10" pointer-events="none" />
|
||||
<ellipse cx="17" cy="17" rx="7.500000000000001" ry="7.500000000000001" fill="#cb81da"
|
||||
stroke="#cb81da" stroke-width="2" pointer-events="none" />
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 4.9 KiB |
221
public/iconfont.css
Normal file
221
public/iconfont.css
Normal file
@ -0,0 +1,221 @@
|
||||
@font-face {
|
||||
font-family: "iconfont"; /* Project id 4440655 */
|
||||
src: url('iconfont.woff2?t=1734508613033') format('woff2');
|
||||
}
|
||||
|
||||
.iconfont {
|
||||
font-family: "iconfont" !important;
|
||||
|
||||
font-style: normal;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
}
|
||||
|
||||
.icon-i18n:before {
|
||||
content: "\e678";
|
||||
}
|
||||
|
||||
.icon-gou:before {
|
||||
content: "\e84b";
|
||||
}
|
||||
|
||||
.icon-menu:before {
|
||||
content: "\e607";
|
||||
}
|
||||
|
||||
.icon-clear:before {
|
||||
content: "\e619";
|
||||
}
|
||||
|
||||
.icon-axis:before {
|
||||
content: "\ed1f";
|
||||
}
|
||||
|
||||
.icon-add-line:before {
|
||||
content: "\e7b0";
|
||||
}
|
||||
|
||||
.icon-arrow-to-previous:before {
|
||||
content: "\e616";
|
||||
}
|
||||
|
||||
.icon-arrow-to-next:before {
|
||||
content: "\e615";
|
||||
}
|
||||
|
||||
.icon-beginning:before {
|
||||
content: "\e60e";
|
||||
}
|
||||
|
||||
.icon-ending:before {
|
||||
content: "\e60f";
|
||||
}
|
||||
|
||||
.icon-line-analog:before {
|
||||
content: "\e662";
|
||||
}
|
||||
|
||||
.icon-ladder-analog:before {
|
||||
content: "\e87b";
|
||||
}
|
||||
|
||||
.icon-common-digital:before {
|
||||
content: "\e606";
|
||||
}
|
||||
|
||||
.icon-delete:before {
|
||||
content: "\e684";
|
||||
}
|
||||
|
||||
.icon-empty:before {
|
||||
content: "\e617";
|
||||
}
|
||||
|
||||
.icon-expand:before {
|
||||
content: "\e658";
|
||||
}
|
||||
|
||||
.icon-collapse:before {
|
||||
content: "\e676";
|
||||
}
|
||||
|
||||
.icon-group:before {
|
||||
content: "\e70c";
|
||||
}
|
||||
|
||||
.icon-cancel-group:before {
|
||||
content: "\e65f";
|
||||
}
|
||||
|
||||
.icon-delete-group:before {
|
||||
content: "\e675";
|
||||
}
|
||||
|
||||
.icon-choose:before {
|
||||
content: "\e63b";
|
||||
}
|
||||
|
||||
.icon-thin-arrow-right:before {
|
||||
content: "\e622";
|
||||
}
|
||||
|
||||
.icon-change-color:before {
|
||||
content: "\e6fb";
|
||||
}
|
||||
|
||||
.icon-join-group:before {
|
||||
content: "\e914";
|
||||
}
|
||||
|
||||
.icon-arrow-right:before {
|
||||
content: "\eb08";
|
||||
}
|
||||
|
||||
.icon-arrow-left:before {
|
||||
content: "\eb09";
|
||||
}
|
||||
|
||||
.icon-arrow-down:before {
|
||||
content: "\eb0a";
|
||||
}
|
||||
|
||||
.icon-arrow-up:before {
|
||||
content: "\eb0b";
|
||||
}
|
||||
|
||||
.icon-command:before {
|
||||
content: "\e604";
|
||||
}
|
||||
|
||||
.icon-minus:before {
|
||||
content: "\e656";
|
||||
}
|
||||
|
||||
.icon-equal:before {
|
||||
content: "\e701";
|
||||
}
|
||||
|
||||
.icon-ctrl:before {
|
||||
content: "\e605";
|
||||
}
|
||||
|
||||
.icon-shift:before {
|
||||
content: "\e626";
|
||||
}
|
||||
|
||||
.icon-mouse:before {
|
||||
content: "\e69e";
|
||||
}
|
||||
|
||||
.icon-left-right:before {
|
||||
content: "\e61c";
|
||||
}
|
||||
|
||||
.icon-up-down:before {
|
||||
content: "\e61d";
|
||||
}
|
||||
|
||||
.icon-help:before {
|
||||
content: "\e87a";
|
||||
}
|
||||
|
||||
.icon-parameter:before {
|
||||
content: "\e6be";
|
||||
}
|
||||
|
||||
.icon-task:before {
|
||||
content: "\e602";
|
||||
}
|
||||
|
||||
.icon-fork:before {
|
||||
content: "\e735";
|
||||
}
|
||||
|
||||
.icon-prevent:before {
|
||||
content: "\e69d";
|
||||
}
|
||||
|
||||
.icon-function:before {
|
||||
content: "\e90e";
|
||||
}
|
||||
|
||||
.icon-real:before {
|
||||
content: "\e6ec";
|
||||
}
|
||||
|
||||
.icon-integer:before {
|
||||
content: "\e603";
|
||||
}
|
||||
|
||||
.icon-string:before {
|
||||
content: "\e614";
|
||||
}
|
||||
|
||||
.icon-brackets:before {
|
||||
content: "\e613";
|
||||
}
|
||||
|
||||
.icon-register:before {
|
||||
content: "\e611";
|
||||
}
|
||||
|
||||
.icon-about:before {
|
||||
content: "\e601";
|
||||
}
|
||||
|
||||
.icon-setting:before {
|
||||
content: "\e657";
|
||||
}
|
||||
|
||||
.icon-collections:before {
|
||||
content: "\e689";
|
||||
}
|
||||
|
||||
.icon-memory-chip:before {
|
||||
content: "\e600";
|
||||
}
|
||||
|
||||
.icon-wave-square:before {
|
||||
content: "\ebd0";
|
||||
}
|
||||
|
BIN
public/iconfont.woff2
Normal file
BIN
public/iconfont.woff2
Normal file
Binary file not shown.
@ -1,17 +1,16 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="">
|
||||
<head>
|
||||
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width,initial-scale=1.0">
|
||||
<link rel="icon" href="<%= BASE_URL %>favicon.ico">
|
||||
<title><%= htmlWebpackPlugin.options.title %></title>
|
||||
</head>
|
||||
<body>
|
||||
<noscript>
|
||||
<strong>We're sorry but <%= htmlWebpackPlugin.options.title %> doesn't work properly without JavaScript enabled. Please enable it to continue.</strong>
|
||||
</noscript>
|
||||
<link rel="icon" href="<%= BASE_URL %>icon.png">
|
||||
<title>Netlist</title>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div id="app"></div>
|
||||
<!-- built files will be auto injected -->
|
||||
</body>
|
||||
</body>
|
||||
|
||||
</html>
|
697
public/onedark.css
Normal file
697
public/onedark.css
Normal file
@ -0,0 +1,697 @@
|
||||
:root {
|
||||
--vscode-foreground: #cccccc;
|
||||
--vscode-disabledForeground: rgba(204, 204, 204, 0.5);
|
||||
--vscode-errorForeground: #f48771;
|
||||
--vscode-descriptionForeground: #abb2bf;
|
||||
--vscode-icon-foreground: #c5c5c5;
|
||||
--vscode-focusBorder: #3e4452;
|
||||
--vscode-textSeparator-foreground: rgba(255, 255, 255, 0.18);
|
||||
--vscode-textLink-foreground: #61afef;
|
||||
--vscode-textLink-activeForeground: #3794ff;
|
||||
--vscode-textPreformat-foreground: #d19a66;
|
||||
--vscode-textPreformat-background: rgba(255, 255, 255, 0.1);
|
||||
--vscode-textBlockQuote-background: #2e3440;
|
||||
--vscode-textBlockQuote-border: #4b5362;
|
||||
--vscode-textCodeBlock-background: rgba(10, 10, 10, 0.4);
|
||||
--vscode-widget-shadow: rgba(0, 0, 0, 0.36);
|
||||
--vscode-input-background: #1d1f23;
|
||||
--vscode-input-foreground: #abb2bf;
|
||||
--vscode-inputOption-activeBorder: #007acc;
|
||||
--vscode-inputOption-hoverBackground: rgba(90, 93, 94, 0.5);
|
||||
--vscode-inputOption-activeBackground: rgba(62, 68, 82, 0.4);
|
||||
--vscode-inputOption-activeForeground: #ffffff;
|
||||
--vscode-input-placeholderForeground: rgba(204, 204, 204, 0.5);
|
||||
--vscode-inputValidation-infoBackground: #063b49;
|
||||
--vscode-inputValidation-infoBorder: #007acc;
|
||||
--vscode-inputValidation-warningBackground: #352a05;
|
||||
--vscode-inputValidation-warningBorder: #b89500;
|
||||
--vscode-inputValidation-errorBackground: #5a1d1d;
|
||||
--vscode-inputValidation-errorBorder: #be1100;
|
||||
--vscode-dropdown-background: #21252b;
|
||||
--vscode-dropdown-foreground: #f0f0f0;
|
||||
--vscode-dropdown-border: #21252b;
|
||||
--vscode-button-foreground: #ffffff;
|
||||
--vscode-button-separator: rgba(255, 255, 255, 0.4);
|
||||
--vscode-button-background: #404754;
|
||||
--vscode-button-hoverBackground: #4d5565;
|
||||
--vscode-button-secondaryForeground: #c0bdbd;
|
||||
--vscode-button-secondaryBackground: #30333d;
|
||||
--vscode-button-secondaryHoverBackground: #3a3d49;
|
||||
--vscode-badge-background: #282c34;
|
||||
--vscode-badge-foreground: #ffffff;
|
||||
--vscode-scrollbar-shadow: #23252c;
|
||||
--vscode-scrollbarSlider-background: rgba(78, 86, 102, 0.38);
|
||||
--vscode-scrollbarSlider-hoverBackground: rgba(90, 99, 117, 0.5);
|
||||
--vscode-scrollbarSlider-activeBackground: rgba(116, 125, 145, 0.5);
|
||||
--vscode-progressBar-background: #0e70c0;
|
||||
--vscode-editorError-foreground: #c24038;
|
||||
--vscode-editorWarning-foreground: #d19a66;
|
||||
--vscode-editorInfo-foreground: #3794ff;
|
||||
--vscode-editorHint-foreground: rgba(238, 238, 238, 0.7);
|
||||
--vscode-sash-hoverBorder: #3e4452;
|
||||
--vscode-editor-background: #282c34;
|
||||
--vscode-editor-foreground: #abb2bf;
|
||||
--vscode-editorStickyScroll-background: #282c34;
|
||||
--vscode-editorStickyScrollHover-background: #2a2d2e;
|
||||
--vscode-editorWidget-background: #21252b;
|
||||
--vscode-editorWidget-foreground: #cccccc;
|
||||
--vscode-editorWidget-border: #454545;
|
||||
--vscode-quickInput-background: #21252b;
|
||||
--vscode-quickInput-foreground: #cccccc;
|
||||
--vscode-quickInputTitle-background: rgba(255, 255, 255, 0.1);
|
||||
--vscode-pickerGroup-foreground: #3794ff;
|
||||
--vscode-pickerGroup-border: #3f3f46;
|
||||
--vscode-keybindingLabel-background: rgba(128, 128, 128, 0.17);
|
||||
--vscode-keybindingLabel-foreground: #cccccc;
|
||||
--vscode-keybindingLabel-border: rgba(51, 51, 51, 0.6);
|
||||
--vscode-keybindingLabel-bottomBorder: rgba(68, 68, 68, 0.6);
|
||||
--vscode-editor-selectionBackground: rgba(103, 118, 150, 0.38);
|
||||
--vscode-editor-inactiveSelectionBackground: rgba(103, 118, 150, 0.19);
|
||||
--vscode-editor-selectionHighlightBackground: rgba(255, 255, 255, 0.06);
|
||||
--vscode-editor-selectionHighlightBorder: #dddddd;
|
||||
--vscode-editor-findMatchBackground: #42557b;
|
||||
--vscode-editor-findMatchHighlightBackground: rgba(97, 153, 255, 0.18);
|
||||
--vscode-editor-findRangeHighlightBackground: rgba(58, 61, 65, 0.4);
|
||||
--vscode-editor-findMatchBorder: #457dff;
|
||||
--vscode-searchEditor-findMatchBackground: rgba(97, 153, 255, 0.12);
|
||||
--vscode-search-resultsInfoForeground: rgba(204, 204, 204, 0.65);
|
||||
--vscode-editor-hoverHighlightBackground: rgba(38, 79, 120, 0.25);
|
||||
--vscode-editorHoverWidget-background: #21252b;
|
||||
--vscode-editorHoverWidget-foreground: #cccccc;
|
||||
--vscode-editorHoverWidget-border: #181a1f;
|
||||
--vscode-editorHoverWidget-statusBarBackground: #282c34;
|
||||
--vscode-editorLink-activeForeground: #4e94ce;
|
||||
--vscode-editorInlayHint-foreground: #abb2bf;
|
||||
--vscode-editorInlayHint-background: #2c313c;
|
||||
--vscode-editorInlayHint-typeForeground: #abb2bf;
|
||||
--vscode-editorInlayHint-typeBackground: #2c313c;
|
||||
--vscode-editorInlayHint-parameterForeground: #abb2bf;
|
||||
--vscode-editorInlayHint-parameterBackground: #2c313c;
|
||||
--vscode-editorLightBulb-foreground: #ffcc00;
|
||||
--vscode-editorLightBulbAutoFix-foreground: #75beff;
|
||||
--vscode-editorLightBulbAi-foreground: #767676;
|
||||
--vscode-diffEditor-insertedTextBackground: rgba(0, 128, 155, 0.2);
|
||||
--vscode-diffEditor-removedTextBackground: rgba(255, 0, 0, 0.2);
|
||||
--vscode-diffEditor-insertedLineBackground: rgba(155, 185, 85, 0.2);
|
||||
--vscode-diffEditor-removedLineBackground: rgba(255, 0, 0, 0.2);
|
||||
--vscode-diffEditor-diagonalFill: rgba(204, 204, 204, 0.2);
|
||||
--vscode-diffEditor-unchangedRegionBackground: #21252b;
|
||||
--vscode-diffEditor-unchangedRegionForeground: #cccccc;
|
||||
--vscode-diffEditor-unchangedCodeBackground: rgba(116, 116, 116, 0.16);
|
||||
--vscode-list-focusBackground: #323842;
|
||||
--vscode-list-focusForeground: #f0f0f0;
|
||||
--vscode-list-focusOutline: #3e4452;
|
||||
--vscode-list-activeSelectionBackground: #2c313a;
|
||||
--vscode-list-activeSelectionForeground: #d7dae0;
|
||||
--vscode-list-inactiveSelectionBackground: #323842;
|
||||
--vscode-list-inactiveSelectionForeground: #d7dae0;
|
||||
--vscode-list-hoverBackground: #2c313a;
|
||||
--vscode-list-hoverForeground: #abb2bf;
|
||||
--vscode-list-dropBackground: #062f4a;
|
||||
--vscode-list-highlightForeground: #ecebeb;
|
||||
--vscode-list-focusHighlightForeground: #ecebeb;
|
||||
--vscode-list-invalidItemForeground: #b89500;
|
||||
--vscode-list-errorForeground: #f88070;
|
||||
--vscode-list-warningForeground: #d19a66;
|
||||
--vscode-listFilterWidget-background: #21252b;
|
||||
--vscode-listFilterWidget-outline: rgba(0, 0, 0, 0);
|
||||
--vscode-listFilterWidget-noMatchesOutline: #be1100;
|
||||
--vscode-listFilterWidget-shadow: rgba(0, 0, 0, 0.36);
|
||||
--vscode-list-filterMatchBackground: rgba(97, 153, 255, 0.18);
|
||||
--vscode-tree-indentGuidesStroke: rgba(255, 255, 255, 0.11);
|
||||
--vscode-tree-inactiveIndentGuidesStroke: rgba(255, 255, 255, 0.05);
|
||||
--vscode-tree-tableColumnsBorder: rgba(204, 204, 204, 0.13);
|
||||
--vscode-tree-tableOddRowsBackground: rgba(204, 204, 204, 0.04);
|
||||
--vscode-list-deemphasizedForeground: #8c8c8c;
|
||||
--vscode-checkbox-background: #21252b;
|
||||
--vscode-checkbox-selectBackground: #21252b;
|
||||
--vscode-checkbox-foreground: #f0f0f0;
|
||||
--vscode-checkbox-border: #404754;
|
||||
--vscode-checkbox-selectBorder: #c5c5c5;
|
||||
--vscode-quickInputList-focusForeground: #d7dae0;
|
||||
--vscode-quickInputList-focusBackground: #2c313a;
|
||||
--vscode-menu-foreground: #abb2bf;
|
||||
--vscode-menu-background: #21252b;
|
||||
--vscode-menu-selectionForeground: #d7dae0;
|
||||
--vscode-menu-selectionBackground: #2c313a;
|
||||
--vscode-menu-separatorBackground: #343a45;
|
||||
--vscode-toolbar-hoverBackground: rgba(90, 93, 94, 0.31);
|
||||
--vscode-toolbar-activeBackground: rgba(99, 102, 103, 0.31);
|
||||
--vscode-editor-snippetTabstopHighlightBackground: rgba(124, 124, 124, 0.3);
|
||||
--vscode-editor-snippetFinalTabstopHighlightBorder: #525252;
|
||||
--vscode-breadcrumb-foreground: rgba(204, 204, 204, 0.8);
|
||||
--vscode-breadcrumb-background: #282c34;
|
||||
--vscode-breadcrumb-focusForeground: #e0e0e0;
|
||||
--vscode-breadcrumb-activeSelectionForeground: #e0e0e0;
|
||||
--vscode-breadcrumbPicker-background: #21252b;
|
||||
--vscode-merge-currentHeaderBackground: rgba(64, 200, 174, 0.5);
|
||||
--vscode-merge-currentContentBackground: rgba(64, 200, 174, 0.2);
|
||||
--vscode-merge-incomingHeaderBackground: rgba(64, 166, 255, 0.5);
|
||||
--vscode-merge-incomingContentBackground: rgba(64, 166, 255, 0.2);
|
||||
--vscode-merge-commonHeaderBackground: rgba(96, 96, 96, 0.4);
|
||||
--vscode-merge-commonContentBackground: rgba(96, 96, 96, 0.16);
|
||||
--vscode-editorOverviewRuler-currentContentForeground: rgba(64, 200, 174, 0.5);
|
||||
--vscode-editorOverviewRuler-incomingContentForeground: rgba(64, 166, 255, 0.5);
|
||||
--vscode-editorOverviewRuler-commonContentForeground: rgba(96, 96, 96, 0.4);
|
||||
--vscode-editorOverviewRuler-findMatchForeground: rgba(209, 134, 22, 0.49);
|
||||
--vscode-editorOverviewRuler-selectionHighlightForeground: rgba(160, 160, 160, 0.8);
|
||||
--vscode-minimap-findMatchHighlight: #d18616;
|
||||
--vscode-minimap-selectionOccurrenceHighlight: #676767;
|
||||
--vscode-minimap-selectionHighlight: #264f78;
|
||||
--vscode-minimap-infoHighlight: #3794ff;
|
||||
--vscode-minimap-warningHighlight: #d19a66;
|
||||
--vscode-minimap-errorHighlight: rgba(255, 18, 18, 0.7);
|
||||
--vscode-minimap-foregroundOpacity: #000000;
|
||||
--vscode-minimapSlider-background: rgba(78, 86, 102, 0.19);
|
||||
--vscode-minimapSlider-hoverBackground: rgba(90, 99, 117, 0.25);
|
||||
--vscode-minimapSlider-activeBackground: rgba(116, 125, 145, 0.25);
|
||||
--vscode-problemsErrorIcon-foreground: #c24038;
|
||||
--vscode-problemsWarningIcon-foreground: #d19a66;
|
||||
--vscode-problemsInfoIcon-foreground: #3794ff;
|
||||
--vscode-charts-foreground: #cccccc;
|
||||
--vscode-charts-lines: rgba(204, 204, 204, 0.5);
|
||||
--vscode-charts-red: #c24038;
|
||||
--vscode-charts-blue: #3794ff;
|
||||
--vscode-charts-yellow: #d19a66;
|
||||
--vscode-charts-orange: #d18616;
|
||||
--vscode-charts-green: #89d185;
|
||||
--vscode-charts-purple: #b180d7;
|
||||
--vscode-diffEditor-move-border: rgba(139, 139, 139, 0.61);
|
||||
--vscode-diffEditor-moveActive-border: #ffa500;
|
||||
--vscode-diffEditor-unchangedRegionShadow: #000000;
|
||||
--vscode-multiDiffEditor-headerBackground: #808080;
|
||||
--vscode-symbolIcon-arrayForeground: #cccccc;
|
||||
--vscode-symbolIcon-booleanForeground: #cccccc;
|
||||
--vscode-symbolIcon-classForeground: #ee9d28;
|
||||
--vscode-symbolIcon-colorForeground: #cccccc;
|
||||
--vscode-symbolIcon-constantForeground: #cccccc;
|
||||
--vscode-symbolIcon-constructorForeground: #b180d7;
|
||||
--vscode-symbolIcon-enumeratorForeground: #ee9d28;
|
||||
--vscode-symbolIcon-enumeratorMemberForeground: #75beff;
|
||||
--vscode-symbolIcon-eventForeground: #ee9d28;
|
||||
--vscode-symbolIcon-fieldForeground: #75beff;
|
||||
--vscode-symbolIcon-fileForeground: #cccccc;
|
||||
--vscode-symbolIcon-folderForeground: #cccccc;
|
||||
--vscode-symbolicon-functionForeground: #b180d7;
|
||||
--vscode-symbolIcon-interfaceForeground: #75beff;
|
||||
--vscode-symbolIcon-keyForeground: #cccccc;
|
||||
--vscode-symbolIcon-keywordForeground: #cccccc;
|
||||
--vscode-symbolIcon-methodForeground: #b180d7;
|
||||
--vscode-symbolIcon-moduleForeground: #cccccc;
|
||||
--vscode-symbolIcon-namespaceForeground: #cccccc;
|
||||
--vscode-symbolIcon-nullForeground: #cccccc;
|
||||
--vscode-symbolIcon-numberForeground: #cccccc;
|
||||
--vscode-symbolIcon-objectForeground: #cccccc;
|
||||
--vscode-symbolIcon-operatorForeground: #cccccc;
|
||||
--vscode-symbolIcon-packageForeground: #cccccc;
|
||||
--vscode-symbolIcon-propertyForeground: #cccccc;
|
||||
--vscode-symbolicon-realeferenceForeground: #cccccc;
|
||||
--vscode-symbolIcon-snippetForeground: #cccccc;
|
||||
--vscode-symbolicon-stringForeground: #cccccc;
|
||||
--vscode-symbolIcon-structForeground: #cccccc;
|
||||
--vscode-symbolIcon-textForeground: #cccccc;
|
||||
--vscode-symbolIcon-typeParameterForeground: #cccccc;
|
||||
--vscode-symbolIcon-unitForeground: #cccccc;
|
||||
--vscode-symbolIcon-variableForeground: #75beff;
|
||||
--vscode-actionBar-toggledBackground: rgba(62, 68, 82, 0.4);
|
||||
--vscode-editorHoverWidget-highlightForeground: #61afef;
|
||||
--vscode-editor-lineHighlightBackground: #2c313c;
|
||||
--vscode-editor-lineHighlightBorder: #282828;
|
||||
--vscode-editor-rangeHighlightBackground: rgba(255, 255, 255, 0.04);
|
||||
--vscode-editor-symbolHighlightBackground: rgba(97, 153, 255, 0.18);
|
||||
--vscode-editorCursor-foreground: #528bff;
|
||||
--vscode-editorCursor-background: rgba(255, 255, 255, 0.79);
|
||||
--vscode-editorWhitespace-foreground: rgba(255, 255, 255, 0.11);
|
||||
--vscode-editorLineNumber-foreground: #495162;
|
||||
--vscode-editorIndentGuide-background: #3b4048;
|
||||
--vscode-editorIndentGuide-activeBackground: rgba(200, 200, 200, 0.35);
|
||||
--vscode-editorIndentGuide-background1: #3b4048;
|
||||
--vscode-editorIndentGuide-background2: rgba(0, 0, 0, 0);
|
||||
--vscode-editorIndentGuide-background3: rgba(0, 0, 0, 0);
|
||||
--vscode-editorIndentGuide-background4: rgba(0, 0, 0, 0);
|
||||
--vscode-editorIndentGuide-background5: rgba(0, 0, 0, 0);
|
||||
--vscode-editorIndentGuide-background6: rgba(0, 0, 0, 0);
|
||||
--vscode-editorIndentGuide-activeBackground1: rgba(200, 200, 200, 0.35);
|
||||
--vscode-editorIndentGuide-activeBackground2: rgba(0, 0, 0, 0);
|
||||
--vscode-editorIndentGuide-activeBackground3: rgba(0, 0, 0, 0);
|
||||
--vscode-editorIndentGuide-activeBackground4: rgba(0, 0, 0, 0);
|
||||
--vscode-editorIndentGuide-activeBackground5: rgba(0, 0, 0, 0);
|
||||
--vscode-editorIndentGuide-activeBackground6: rgba(0, 0, 0, 0);
|
||||
--vscode-editorActiveLineNumber-foreground: #c6c6c6;
|
||||
--vscode-editorLineNumber-activeForeground: #abb2bf;
|
||||
--vscode-editorRuler-foreground: rgba(171, 178, 191, 0.15);
|
||||
--vscode-editorCodeLens-foreground: #999999;
|
||||
--vscode-editorBracketMatch-background: #515a6b;
|
||||
--vscode-editorBracketMatch-border: #515a6b;
|
||||
--vscode-editorOverviewRuler-border: rgba(127, 127, 127, 0.3);
|
||||
--vscode-editorGutter-background: #282c34;
|
||||
--vscode-editorUnnecessaryCode-opacity: rgba(0, 0, 0, 0.67);
|
||||
--vscode-editorGhostText-foreground: rgba(255, 255, 255, 0.34);
|
||||
--vscode-editorOverviewRuler-rangeHighlightForeground: rgba(0, 122, 204, 0.6);
|
||||
--vscode-editorOverviewRuler-errorForeground: rgba(255, 18, 18, 0.7);
|
||||
--vscode-editorOverviewRuler-warningForeground: #d19a66;
|
||||
--vscode-editorOverviewRuler-infoForeground: #3794ff;
|
||||
--vscode-editorBracketHighlight-foreground1: #d19a66;
|
||||
--vscode-editorBracketHighlight-foreground2: #c678dd;
|
||||
--vscode-editorBracketHighlight-foreground3: #56b6c2;
|
||||
--vscode-editorBracketHighlight-foreground4: rgba(0, 0, 0, 0);
|
||||
--vscode-editorBracketHighlight-foreground5: rgba(0, 0, 0, 0);
|
||||
--vscode-editorBracketHighlight-foreground6: rgba(0, 0, 0, 0);
|
||||
--vscode-editorBracketHighlight-unexpectedBracket-foreground: rgba(255, 18, 18, 0.8);
|
||||
--vscode-editorBracketPairGuide-background1: rgba(0, 0, 0, 0);
|
||||
--vscode-editorBracketPairGuide-background2: rgba(0, 0, 0, 0);
|
||||
--vscode-editorBracketPairGuide-background3: rgba(0, 0, 0, 0);
|
||||
--vscode-editorBracketPairGuide-background4: rgba(0, 0, 0, 0);
|
||||
--vscode-editorBracketPairGuide-background5: rgba(0, 0, 0, 0);
|
||||
--vscode-editorBracketPairGuide-background6: rgba(0, 0, 0, 0);
|
||||
--vscode-editorBracketPairGuide-activeBackground1: rgba(0, 0, 0, 0);
|
||||
--vscode-editorBracketPairGuide-activeBackground2: rgba(0, 0, 0, 0);
|
||||
--vscode-editorBracketPairGuide-activeBackground3: rgba(0, 0, 0, 0);
|
||||
--vscode-editorBracketPairGuide-activeBackground4: rgba(0, 0, 0, 0);
|
||||
--vscode-editorBracketPairGuide-activeBackground5: rgba(0, 0, 0, 0);
|
||||
--vscode-editorBracketPairGuide-activeBackground6: rgba(0, 0, 0, 0);
|
||||
--vscode-editorUnicodeHighlight-border: #bd9b03;
|
||||
--vscode-editorUnicodeHighlight-background: rgba(189, 155, 3, 0.15);
|
||||
--vscode-editorOverviewRuler-bracketMatchForeground: #a0a0a0;
|
||||
--vscode-editor-foldBackground: rgba(103, 118, 150, 0.11);
|
||||
--vscode-editorGutter-foldingControlForeground: #c5c5c5;
|
||||
--vscode-editor-linkedEditingBackground: rgba(255, 0, 0, 0.3);
|
||||
--vscode-editor-wordHighlightBackground: rgba(210, 224, 255, 0.18);
|
||||
--vscode-editor-wordHighlightStrongBackground: rgba(171, 178, 191, 0.15);
|
||||
--vscode-editor-wordHighlightTextBackground: rgba(210, 224, 255, 0.18);
|
||||
--vscode-editor-wordHighlightBorder: #7f848e;
|
||||
--vscode-editor-wordHighlightStrongBorder: #7f848e;
|
||||
--vscode-editor-wordHighlightTextBorder: #7f848e;
|
||||
--vscode-editorOverviewRuler-wordHighlightForeground: rgba(160, 160, 160, 0.8);
|
||||
--vscode-editorOverviewRuler-wordHighlightStrongForeground: rgba(192, 160, 192, 0.8);
|
||||
--vscode-editorOverviewRuler-wordHighlightTextForeground: rgba(160, 160, 160, 0.8);
|
||||
--vscode-peekViewTitle-background: #252526;
|
||||
--vscode-peekViewTitleLabel-foreground: #ffffff;
|
||||
--vscode-peekViewTitleDescription-foreground: rgba(204, 204, 204, 0.7);
|
||||
--vscode-peekView-border: #3794ff;
|
||||
--vscode-peekViewResult-background: #22262b;
|
||||
--vscode-peekViewResult-lineForeground: #bbbbbb;
|
||||
--vscode-peekViewResult-fileForeground: #ffffff;
|
||||
--vscode-peekViewResult-selectionBackground: rgba(51, 153, 255, 0.2);
|
||||
--vscode-peekViewResult-selectionForeground: #ffffff;
|
||||
--vscode-peekViewEditor-background: #1b1d23;
|
||||
--vscode-peekViewEditorGutter-background: #1b1d23;
|
||||
--vscode-peekViewEditorStickyScroll-background: #1b1d23;
|
||||
--vscode-peekViewResult-matchHighlightBackground: rgba(234, 92, 0, 0.3);
|
||||
--vscode-peekViewEditor-matchHighlightBackground: #29244b;
|
||||
--vscode-editorMarkerNavigationError-background: #c24038;
|
||||
--vscode-editorMarkerNavigationError-headerBackground: rgba(194, 64, 56, 0.1);
|
||||
--vscode-editorMarkerNavigationWarning-background: #d19a66;
|
||||
--vscode-editorMarkerNavigationWarning-headerBackground: rgba(209, 154, 102, 0.1);
|
||||
--vscode-editorMarkerNavigationInfo-background: #3794ff;
|
||||
--vscode-editorMarkerNavigationInfo-headerBackground: rgba(55, 148, 255, 0.1);
|
||||
--vscode-editorMarkerNavigation-background: #21252b;
|
||||
--vscode-editorSuggestWidget-background: #21252b;
|
||||
--vscode-editorSuggestWidget-border: #181a1f;
|
||||
--vscode-editorSuggestWidget-foreground: #abb2bf;
|
||||
--vscode-editorSuggestWidget-selectedForeground: #d7dae0;
|
||||
--vscode-editorSuggestWidget-selectedBackground: #2c313a;
|
||||
--vscode-editorSuggestWidget-highlightForeground: #ecebeb;
|
||||
--vscode-editorSuggestWidget-focusHighlightForeground: #ecebeb;
|
||||
--vscode-editorSuggestWidgetStatus-foreground: rgba(171, 178, 191, 0.5);
|
||||
--vscode-tab-activeBackground: #282c34;
|
||||
--vscode-tab-unfocusedActiveBackground: #282c34;
|
||||
--vscode-tab-inactiveBackground: #21252b;
|
||||
--vscode-tab-unfocusedInactiveBackground: #21252b;
|
||||
--vscode-tab-activeForeground: #dcdcdc;
|
||||
--vscode-tab-inactiveForeground: rgba(220, 220, 220, 0.5);
|
||||
--vscode-tab-unfocusedActiveForeground: rgba(220, 220, 220, 0.5);
|
||||
--vscode-tab-unfocusedInactiveForeground: rgba(220, 220, 220, 0.25);
|
||||
--vscode-tab-hoverBackground: #323842;
|
||||
--vscode-tab-unfocusedHoverBackground: #323842;
|
||||
--vscode-tab-border: #181a1f;
|
||||
--vscode-tab-lastPinnedBorder: rgba(255, 255, 255, 0.11);
|
||||
--vscode-tab-activeBorder: #b4b4b4;
|
||||
--vscode-tab-unfocusedActiveBorder: rgba(180, 180, 180, 0.5);
|
||||
--vscode-tab-activeModifiedBorder: #3399cc;
|
||||
--vscode-tab-inactiveModifiedBorder: rgba(51, 153, 204, 0.5);
|
||||
--vscode-tab-unfocusedActiveModifiedBorder: rgba(51, 153, 204, 0.5);
|
||||
--vscode-tab-unfocusedInactiveModifiedBorder: rgba(51, 153, 204, 0.25);
|
||||
--vscode-editorPane-background: #282c34;
|
||||
--vscode-editorGroupHeader-tabsBackground: #21252b;
|
||||
--vscode-editorGroupHeader-noTabsBackground: #282c34;
|
||||
--vscode-editorGroup-border: #181a1f;
|
||||
--vscode-editorGroup-dropBackground: rgba(83, 89, 93, 0.5);
|
||||
--vscode-editorGroup-dropIntoPromptForeground: #cccccc;
|
||||
--vscode-editorGroup-dropIntoPromptBackground: #21252b;
|
||||
--vscode-sideBySideEditor-horizontalBorder: #181a1f;
|
||||
--vscode-sideBySideEditor-verticalBorder: #181a1f;
|
||||
--vscode-panel-background: #282c34;
|
||||
--vscode-panel-border: #3e4452;
|
||||
--vscode-panelTitle-activeForeground: #e7e7e7;
|
||||
--vscode-panelTitle-inactiveForeground: rgba(231, 231, 231, 0.6);
|
||||
--vscode-panelTitle-activeBorder: #e7e7e7;
|
||||
--vscode-panel-dropBorder: #e7e7e7;
|
||||
--vscode-panelSection-dropBackground: rgba(83, 89, 93, 0.5);
|
||||
--vscode-panelSectionHeader-background: #21252b;
|
||||
--vscode-panelSection-border: #3e4452;
|
||||
--vscode-banner-background: #2c313a;
|
||||
--vscode-banner-foreground: #d7dae0;
|
||||
--vscode-banner-iconForeground: #3794ff;
|
||||
--vscode-statusBar-foreground: #9da5b4;
|
||||
--vscode-statusBar-noFolderForeground: #9da5b4;
|
||||
--vscode-statusBar-background: #21252b;
|
||||
--vscode-statusBar-noFolderBackground: #21252b;
|
||||
--vscode-statusBar-focusBorder: #9da5b4;
|
||||
--vscode-statusBarItem-activeBackground: rgba(255, 255, 255, 0.18);
|
||||
--vscode-statusBarItem-focusBorder: #9da5b4;
|
||||
--vscode-statusBarItem-hoverBackground: rgba(255, 255, 255, 0.12);
|
||||
--vscode-statusBarItem-hoverForeground: #9da5b4;
|
||||
--vscode-statusBarItem-compactHoverBackground: rgba(255, 255, 255, 0.2);
|
||||
--vscode-statusBarItem-prominentForeground: #9da5b4;
|
||||
--vscode-statusBarItem-prominentBackground: rgba(0, 0, 0, 0.5);
|
||||
--vscode-statusBarItem-prominentHoverForeground: #9da5b4;
|
||||
--vscode-statusBarItem-prominentHoverBackground: rgba(0, 0, 0, 0.3);
|
||||
--vscode-statusBarItem-errorBackground: #c72e0f;
|
||||
--vscode-statusBarItem-errorForeground: #ffffff;
|
||||
--vscode-statusBarItem-errorHoverForeground: #9da5b4;
|
||||
--vscode-statusBarItem-errorHoverBackground: rgba(255, 255, 255, 0.12);
|
||||
--vscode-statusBarItem-warningBackground: #905c2b;
|
||||
--vscode-statusBarItem-warningForeground: #ffffff;
|
||||
--vscode-statusBarItem-warningHoverForeground: #9da5b4;
|
||||
--vscode-statusBarItem-warningHoverBackground: rgba(255, 255, 255, 0.12);
|
||||
--vscode-activityBar-background: #282c34;
|
||||
--vscode-activityBar-foreground: #d7dae0;
|
||||
--vscode-activityBar-inactiveForeground: rgba(215, 218, 224, 0.4);
|
||||
--vscode-activityBar-activeBorder: #d7dae0;
|
||||
--vscode-activityBar-dropBorder: #d7dae0;
|
||||
--vscode-activityBarBadge-background: #4d78cc;
|
||||
--vscode-activityBarBadge-foreground: #f8fafd;
|
||||
--vscode-profileBadge-background: #4d4d4d;
|
||||
--vscode-profileBadge-foreground: #ffffff;
|
||||
--vscode-statusBarItem-remoteBackground: #4d78cc;
|
||||
--vscode-statusBarItem-remoteForeground: #f8fafd;
|
||||
--vscode-statusBarItem-remoteHoverForeground: #9da5b4;
|
||||
--vscode-statusBarItem-remoteHoverBackground: rgba(255, 255, 255, 0.12);
|
||||
--vscode-statusBarItem-offlineBackground: #6c1717;
|
||||
--vscode-statusBarItem-offlineForeground: #f8fafd;
|
||||
--vscode-statusBarItem-offlineHoverForeground: #9da5b4;
|
||||
--vscode-statusBarItem-offlineHoverBackground: rgba(255, 255, 255, 0.12);
|
||||
--vscode-extensionBadge-remoteBackground: #4d78cc;
|
||||
--vscode-extensionBadge-remoteForeground: #f8fafd;
|
||||
--vscode-sideBar-background: #21252b;
|
||||
--vscode-sideBar-foreground: #abb2bf;
|
||||
--vscode-sideBarTitle-foreground: #abb2bf;
|
||||
--vscode-sideBar-dropBackground: rgba(83, 89, 93, 0.5);
|
||||
--vscode-sideBarSectionHeader-background: #282c34;
|
||||
--vscode-sideBarSectionHeader-foreground: #abb2bf;
|
||||
--vscode-titleBar-activeForeground: #9da5b4;
|
||||
--vscode-titleBar-inactiveForeground: #6b717d;
|
||||
--vscode-titleBar-activeBackground: #282c34;
|
||||
--vscode-titleBar-inactiveBackground: #282c34;
|
||||
--vscode-menubar-selectionForeground: #9da5b4;
|
||||
--vscode-menubar-selectionBackground: rgba(90, 93, 94, 0.31);
|
||||
--vscode-commandCenter-foreground: #9da5b4;
|
||||
--vscode-commandCenter-activeForeground: #9da5b4;
|
||||
--vscode-commandCenter-inactiveForeground: #6b717d;
|
||||
--vscode-commandCenter-background: rgba(255, 255, 255, 0.05);
|
||||
--vscode-commandCenter-activeBackground: rgba(255, 255, 255, 0.08);
|
||||
--vscode-commandCenter-border: rgba(157, 165, 180, 0.2);
|
||||
--vscode-commandCenter-activeBorder: rgba(157, 165, 180, 0.3);
|
||||
--vscode-commandCenter-inactiveBorder: rgba(107, 113, 125, 0.25);
|
||||
--vscode-notifications-foreground: #cccccc;
|
||||
--vscode-notifications-background: #21252b;
|
||||
--vscode-notificationLink-foreground: #61afef;
|
||||
--vscode-notificationCenterHeader-background: #2b3038;
|
||||
--vscode-notifications-border: #2b3038;
|
||||
--vscode-notificationsErrorIcon-foreground: #c24038;
|
||||
--vscode-notificationsWarningIcon-foreground: #d19a66;
|
||||
--vscode-notificationsInfoIcon-foreground: #3794ff;
|
||||
--vscode-chat-requestBorder: rgba(255, 255, 255, 0.1);
|
||||
--vscode-chat-slashCommandBackground: #34414b;
|
||||
--vscode-chat-slashCommandForeground: #40a6ff;
|
||||
--vscode-chat-avatarBackground: #1f1f1f;
|
||||
--vscode-chat-avatarForeground: #cccccc;
|
||||
--vscode-simpleFindWidget-sashBorder: #454545;
|
||||
--vscode-commentsView-resolvedIcon: rgba(204, 204, 204, 0.5);
|
||||
--vscode-commentsView-unresolvedIcon: #3e4452;
|
||||
--vscode-editorCommentsWidget-replyInputBackground: #252526;
|
||||
--vscode-editorCommentsWidget-resolvedBorder: rgba(204, 204, 204, 0.5);
|
||||
--vscode-editorCommentsWidget-unresolvedBorder: #3e4452;
|
||||
--vscode-editorCommentsWidget-rangeBackground: rgba(62, 68, 82, 0.1);
|
||||
--vscode-editorCommentsWidget-rangeActiveBackground: rgba(62, 68, 82, 0.1);
|
||||
--vscode-editorGutter-commentRangeForeground: #323842;
|
||||
--vscode-editorOverviewRuler-commentForeground: #323842;
|
||||
--vscode-editorOverviewRuler-commentUnresolvedForeground: #323842;
|
||||
--vscode-editorGutter-commentGlyphForeground: #abb2bf;
|
||||
--vscode-editorGutter-commentUnresolvedGlyphForeground: #abb2bf;
|
||||
--vscode-debugToolBar-background: #21252b;
|
||||
--vscode-debugIcon-startForeground: #89d185;
|
||||
--vscode-editor-stackFrameHighlightBackground: rgba(255, 255, 0, 0.2);
|
||||
--vscode-editor-focusedStackFrameHighlightBackground: rgba(122, 189, 122, 0.3);
|
||||
--vscode-mergeEditor-change-background: rgba(155, 185, 85, 0.2);
|
||||
--vscode-mergeEditor-change-word-background: rgba(156, 204, 44, 0.2);
|
||||
--vscode-mergeEditor-changeBase-background: #4b1818;
|
||||
--vscode-mergeEditor-changeBase-word-background: #6f1313;
|
||||
--vscode-mergeEditor-conflict-unhandledUnfocused-border: rgba(255, 166, 0, 0.48);
|
||||
--vscode-mergeEditor-conflict-unhandledFocused-border: #ffa600;
|
||||
--vscode-mergeEditor-conflict-handledUnfocused-border: rgba(134, 134, 134, 0.29);
|
||||
--vscode-mergeEditor-conflict-handledFocused-border: rgba(193, 193, 193, 0.8);
|
||||
--vscode-mergeEditor-conflict-handled-minimapOverViewRuler: rgba(173, 172, 168, 0.93);
|
||||
--vscode-mergeEditor-conflict-unhandled-minimapOverViewRuler: #fcba03;
|
||||
--vscode-mergeEditor-conflictingLines-background: rgba(255, 234, 0, 0.28);
|
||||
--vscode-mergeEditor-conflict-input1-background: rgba(64, 200, 174, 0.2);
|
||||
--vscode-mergeEditor-conflict-input2-background: rgba(64, 166, 255, 0.2);
|
||||
--vscode-settings-headerForeground: #ffffff;
|
||||
--vscode-settings-settingsHeaderHoverForeground: rgba(255, 255, 255, 0.7);
|
||||
--vscode-settings-modifiedItemIndicator: #0c7d9d;
|
||||
--vscode-settings-headerBorder: #3e4452;
|
||||
--vscode-settings-sashBorder: #3e4452;
|
||||
--vscode-settings-dropdownBackground: #21252b;
|
||||
--vscode-settings-dropdownForeground: #f0f0f0;
|
||||
--vscode-settings-dropdownBorder: #21252b;
|
||||
--vscode-settings-dropdownListBorder: #454545;
|
||||
--vscode-settings-checkboxBackground: #21252b;
|
||||
--vscode-settings-checkboxForeground: #f0f0f0;
|
||||
--vscode-settings-checkboxBorder: #404754;
|
||||
--vscode-settings-textInputBackground: #1d1f23;
|
||||
--vscode-settings-textInputForeground: #abb2bf;
|
||||
--vscode-settings-numberInputBackground: #1d1f23;
|
||||
--vscode-settings-numberInputForeground: #abb2bf;
|
||||
--vscode-settings-focusedRowBackground: #282c34;
|
||||
--vscode-settings-rowHoverBackground: rgba(44, 49, 58, 0.3);
|
||||
--vscode-settings-focusedRowBorder: #3e4452;
|
||||
--vscode-terminal-background: #282c34;
|
||||
--vscode-terminal-foreground: #abb2bf;
|
||||
--vscode-terminal-selectionBackground: rgba(171, 178, 191, 0.19);
|
||||
--vscode-terminal-inactiveSelectionBackground: rgba(171, 178, 191, 0.09);
|
||||
--vscode-terminalCommandDecoration-defaultBackground: rgba(255, 255, 255, 0.25);
|
||||
--vscode-terminalCommandDecoration-successBackground: #1b81a8;
|
||||
--vscode-terminalCommandDecoration-errorBackground: #f14c4c;
|
||||
--vscode-terminalOverviewRuler-cursorForeground: rgba(160, 160, 160, 0.8);
|
||||
--vscode-terminal-border: #3e4452;
|
||||
--vscode-terminal-findMatchBackground: #42557b;
|
||||
--vscode-terminal-hoverHighlightBackground: rgba(38, 79, 120, 0.13);
|
||||
--vscode-terminal-findMatchHighlightBackground: rgba(97, 153, 255, 0.18);
|
||||
--vscode-terminalOverviewRuler-findMatchForeground: rgba(209, 134, 22, 0.49);
|
||||
--vscode-terminal-dropBackground: rgba(83, 89, 93, 0.5);
|
||||
--vscode-terminal-tab-activeBorder: #b4b4b4;
|
||||
--vscode-terminalStickyScrollHover-background: #2a2d2e;
|
||||
--vscode-testing-iconFailed: #f14c4c;
|
||||
--vscode-testing-iconErrored: #f14c4c;
|
||||
--vscode-testing-iconPassed: #73c991;
|
||||
--vscode-testing-runAction: #73c991;
|
||||
--vscode-testing-iconQueued: #cca700;
|
||||
--vscode-testing-iconUnset: #848484;
|
||||
--vscode-testing-iconSkipped: #848484;
|
||||
--vscode-testing-peekBorder: #c24038;
|
||||
--vscode-testing-peekHeaderBackground: rgba(194, 64, 56, 0.1);
|
||||
--vscode-testing-message-error-decorationForeground: #c24038;
|
||||
--vscode-testing-message-error-lineBackground: rgba(255, 0, 0, 0.2);
|
||||
--vscode-testing-message-info-decorationForeground: rgba(171, 178, 191, 0.5);
|
||||
--vscode-welcomePage-tileBackground: #21252b;
|
||||
--vscode-welcomePage-tileHoverBackground: #282c34;
|
||||
--vscode-welcomePage-tileBorder: rgba(255, 255, 255, 0.1);
|
||||
--vscode-welcomePage-progress-background: #1d1f23;
|
||||
--vscode-welcomePage-progress-foreground: #61afef;
|
||||
--vscode-walkthrough-stepTitle-foreground: #ffffff;
|
||||
--vscode-walkThrough-embeddedEditorBackground: #2e3440;
|
||||
--vscode-inlineChat-background: #21252b;
|
||||
--vscode-inlineChat-border: #454545;
|
||||
--vscode-inlineChat-shadow: rgba(0, 0, 0, 0.36);
|
||||
--vscode-inlineChat-regionHighlight: rgba(38, 79, 120, 0.25);
|
||||
--vscode-inlineChatInput-border: #454545;
|
||||
--vscode-inlineChatInput-focusBorder: #3e4452;
|
||||
--vscode-inlineChatInput-placeholderForeground: rgba(204, 204, 204, 0.5);
|
||||
--vscode-inlineChatInput-background: #1d1f23;
|
||||
--vscode-inlineChatDiff-inserted: rgba(0, 128, 155, 0.1);
|
||||
--vscode-inlineChatDiff-removed: rgba(255, 0, 0, 0.1);
|
||||
--vscode-debugExceptionWidget-border: #a31515;
|
||||
--vscode-debugExceptionWidget-background: #420b0d;
|
||||
--vscode-ports-iconRunningProcessForeground: #4d78cc;
|
||||
--vscode-statusBar-debuggingBackground: #cc6633;
|
||||
--vscode-statusBar-debuggingForeground: #ffffff;
|
||||
--vscode-statusBar-debuggingBorder: rgba(255, 0, 0, 0);
|
||||
--vscode-commandCenter-debuggingBackground: rgba(204, 102, 51, 0.26);
|
||||
--vscode-editor-inlineValuesForeground: rgba(255, 255, 255, 0.5);
|
||||
--vscode-editor-inlineValuesBackground: rgba(255, 200, 0, 0.2);
|
||||
--vscode-editorGutter-modifiedBackground: #948b60;
|
||||
--vscode-editorGutter-addedBackground: #109868;
|
||||
--vscode-editorGutter-deletedBackground: #9a353d;
|
||||
--vscode-minimapGutter-modifiedBackground: #948b60;
|
||||
--vscode-minimapGutter-addedBackground: #109868;
|
||||
--vscode-minimapGutter-deletedBackground: #9a353d;
|
||||
--vscode-editorOverviewRuler-modifiedForeground: rgba(148, 139, 96, 0.6);
|
||||
--vscode-editorOverviewRuler-addedForeground: rgba(16, 152, 104, 0.6);
|
||||
--vscode-editorOverviewRuler-deletedForeground: rgba(154, 53, 61, 0.6);
|
||||
--vscode-debugIcon-breakpointForeground: #e51400;
|
||||
--vscode-debugIcon-breakpointDisabledForeground: #848484;
|
||||
--vscode-debugIcon-breakpointUnverifiedForeground: #848484;
|
||||
--vscode-debugIcon-breakpointCurrentStackframeForeground: #ffcc00;
|
||||
--vscode-debugIcon-breakpointStackframeForeground: #89d185;
|
||||
--vscode-keybindingTable-headerBackground: rgba(204, 204, 204, 0.04);
|
||||
--vscode-keybindingTable-rowsBackground: rgba(204, 204, 204, 0.04);
|
||||
--vscode-debugTokenExpression-name: #c586c0;
|
||||
--vscode-debugTokenExpression-value: rgba(204, 204, 204, 0.6);
|
||||
--vscode-debugTokenExpression-string: #ce9178;
|
||||
--vscode-debugTokenExpression-boolean: #4e94ce;
|
||||
--vscode-debugTokenExpression-number: #b5cea8;
|
||||
--vscode-debugTokenExpression-error: #f48771;
|
||||
--vscode-debugView-exceptionLabelForeground: #cccccc;
|
||||
--vscode-debugView-exceptionLabelBackground: #6c2022;
|
||||
--vscode-debugView-stateLabelForeground: #cccccc;
|
||||
--vscode-debugView-stateLabelBackground: rgba(136, 136, 136, 0.27);
|
||||
--vscode-debugView-valueChangedHighlight: #569cd6;
|
||||
--vscode-debugConsole-infoForeground: #3794ff;
|
||||
--vscode-debugConsole-warningForeground: #d19a66;
|
||||
--vscode-debugConsole-errorForeground: #f48771;
|
||||
--vscode-debugConsole-sourceForeground: #cccccc;
|
||||
--vscode-debugConsoleInputIcon-foreground: #cccccc;
|
||||
--vscode-debugIcon-pauseForeground: #75beff;
|
||||
--vscode-debugIcon-stopForeground: #f48771;
|
||||
--vscode-debugIcon-disconnectForeground: #f48771;
|
||||
--vscode-debugicon-realestartForeground: #89d185;
|
||||
--vscode-debugIcon-stepOverForeground: #75beff;
|
||||
--vscode-debugIcon-stepIntoForeground: #75beff;
|
||||
--vscode-debugIcon-stepOutForeground: #75beff;
|
||||
--vscode-debugIcon-continueForeground: #75beff;
|
||||
--vscode-debugIcon-stepBackForeground: #75beff;
|
||||
--vscode-notebook-cellBorderColor: #323842;
|
||||
--vscode-notebook-focusedEditorBorder: #3e4452;
|
||||
--vscode-notebookStatusSuccessIcon-foreground: #89d185;
|
||||
--vscode-notebookEditorOverviewRuler-runningCellForeground: #89d185;
|
||||
--vscode-notebookStatusErrorIcon-foreground: #f48771;
|
||||
--vscode-notebookStatusRunningIcon-foreground: #cccccc;
|
||||
--vscode-notebook-cellToolbarSeparator: rgba(128, 128, 128, 0.35);
|
||||
--vscode-notebook-selectedCellBackground: #323842;
|
||||
--vscode-notebook-selectedCellBorder: #323842;
|
||||
--vscode-notebook-focusedCellBorder: #3e4452;
|
||||
--vscode-notebook-inactiveFocusedCellBorder: #323842;
|
||||
--vscode-notebook-cellStatusBarItemHoverBackground: rgba(255, 255, 255, 0.15);
|
||||
--vscode-notebook-cellInsertionIndicator: #3e4452;
|
||||
--vscode-notebookScrollbarSlider-background: rgba(78, 86, 102, 0.38);
|
||||
--vscode-notebookScrollbarSlider-hoverBackground: rgba(90, 99, 117, 0.5);
|
||||
--vscode-notebookScrollbarSlider-activeBackground: rgba(116, 125, 145, 0.5);
|
||||
--vscode-notebook-symbolHighlightBackground: rgba(255, 255, 255, 0.04);
|
||||
--vscode-notebook-cellEditorBackground: #21252b;
|
||||
--vscode-notebook-editorBackground: #282c34;
|
||||
--vscode-scm-historyItemAdditionsForeground: #81b88b;
|
||||
--vscode-scm-historyItemDeletionsForeground: #c74e39;
|
||||
--vscode-scm-historyItemStatisticsBorder: rgba(204, 204, 204, 0.2);
|
||||
--vscode-scm-historyItemSelectedStatisticsBorder: rgba(215, 218, 224, 0.2);
|
||||
--vscode-extensionButton-background: #404754;
|
||||
--vscode-extensionButton-foreground: #ffffff;
|
||||
--vscode-extensionButton-hoverBackground: #4d5565;
|
||||
--vscode-extensionButton-separator: rgba(255, 255, 255, 0.4);
|
||||
--vscode-extensionButton-prominentBackground: #404754;
|
||||
--vscode-extensionButton-prominentForeground: #ffffff;
|
||||
--vscode-extensionButton-prominentHoverBackground: #4d5565;
|
||||
--vscode-extensionIcon-starForeground: #ff8e00;
|
||||
--vscode-extensionIcon-verifiedForeground: #61afef;
|
||||
--vscode-extensionIcon-preReleaseForeground: #1d9271;
|
||||
--vscode-extensionIcon-sponsorForeground: #d758b3;
|
||||
--vscode-terminal-ansiBlack: #3f4451;
|
||||
--vscode-terminal-ansiRed: #e05561;
|
||||
--vscode-terminal-ansiGreen: #8cc265;
|
||||
--vscode-terminal-ansiYellow: #d18f52;
|
||||
--vscode-terminal-ansiBlue: #4aa5f0;
|
||||
--vscode-terminal-ansiMagenta: #c162de;
|
||||
--vscode-terminal-ansiCyan: #42b3c2;
|
||||
--vscode-terminal-ansiWhite: #d7dae0;
|
||||
--vscode-terminal-ansiBrightBlack: #4f5666;
|
||||
--vscode-terminal-ansiBrightRed: #ff616e;
|
||||
--vscode-terminal-ansiBrightGreen: #a5e075;
|
||||
--vscode-terminal-ansiBrightYellow: #f0a45d;
|
||||
--vscode-terminal-ansiBrightBlue: #4dc4ff;
|
||||
--vscode-terminal-ansiBrightMagenta: #de73ff;
|
||||
--vscode-terminal-ansiBrightCyan: #4cd1e0;
|
||||
--vscode-terminal-ansiBrightWhite: #e6e6e6;
|
||||
--vscode-interactive-activeCodeBorder: #3794ff;
|
||||
--vscode-interactive-inactiveCodeBorder: #323842;
|
||||
--vscode-gitDecoration-addedResourceForeground: #81b88b;
|
||||
--vscode-gitDecoration-modifiedResourceForeground: #e2c08d;
|
||||
--vscode-gitDecoration-deletedResourceForeground: #c74e39;
|
||||
--vscode-gitDecoration-renamedResourceForeground: #73c991;
|
||||
--vscode-gitDecoration-untrackedResourceForeground: #73c991;
|
||||
--vscode-gitDecoration-ignoredResourceForeground: #636b78;
|
||||
--vscode-gitDecoration-stageModifiedResourceForeground: #e2c08d;
|
||||
--vscode-gitDecoration-stageDeletedResourceForeground: #c74e39;
|
||||
--vscode-gitDecoration-conflictingResourceForeground: #e4676b;
|
||||
--vscode-gitDecoration-submoduleResourceForeground: #8db9e2;
|
||||
--vscode-gitlens-gutterBackgroundColor: rgba(255, 255, 255, 0.07);
|
||||
--vscode-gitlens-gutterForegroundColor: #bebebe;
|
||||
--vscode-gitlens-gutterUncommittedForegroundColor: rgba(0, 188, 242, 0.6);
|
||||
--vscode-gitlens-trailingLineBackgroundColor: rgba(0, 0, 0, 0);
|
||||
--vscode-gitlens-trailingLineForegroundColor: rgba(153, 153, 153, 0.35);
|
||||
--vscode-gitlens-lineHighlightBackgroundColor: rgba(0, 188, 242, 0.2);
|
||||
--vscode-gitlens-lineHighlightOverviewRulerColor: rgba(0, 188, 242, 0.6);
|
||||
--vscode-gitlens-openAutolinkedIssueIconColor: #3fb950;
|
||||
--vscode-gitlens-closedAutolinkedIssueIconColor: #a371f7;
|
||||
--vscode-gitlens-closedPullRequestIconColor: #f85149;
|
||||
--vscode-gitlens-openPullRequestIconColor: #3fb950;
|
||||
--vscode-gitlens-mergedPullRequestIconColor: #a371f7;
|
||||
--vscode-gitlens-unpublishedChangesIconColor: #35b15e;
|
||||
--vscode-gitlens-unpublishedCommitIconColor: #35b15e;
|
||||
--vscode-gitlens-unpulledChangesIconColor: #b15e35;
|
||||
--vscode-gitlens-decorations-addedForegroundColor: #81b88b;
|
||||
--vscode-gitlens-decorations-copiedForegroundColor: #73c991;
|
||||
--vscode-gitlens-decorations-deletedForegroundColor: #c74e39;
|
||||
--vscode-gitlens-decorations-ignoredForegroundColor: #636b78;
|
||||
--vscode-gitlens-decorations-modifiedForegroundColor: #e2c08d;
|
||||
--vscode-gitlens-decorations-untrackedForegroundColor: #73c991;
|
||||
--vscode-gitlens-decorations-renamedForegroundColor: #73c991;
|
||||
--vscode-gitlens-decorations-branchAheadForegroundColor: #35b15e;
|
||||
--vscode-gitlens-decorations-branchBehindForegroundColor: #b15e35;
|
||||
--vscode-gitlens-decorations-branchDivergedForegroundColor: #d8af1b;
|
||||
--vscode-gitlens-decorations-branchUpToDateForegroundColor: #abb2bf;
|
||||
--vscode-gitlens-decorations-branchUnpublishedForegroundColor: #35b15e;
|
||||
--vscode-gitlens-decorations-branchMissingUpstreamForegroundColor: #c74e39;
|
||||
--vscode-gitlens-decorations-statusMergingOrRebasingConflictForegroundColor: #c74e39;
|
||||
--vscode-gitlens-decorations-statusMergingOrRebasingForegroundColor: #d8af1b;
|
||||
--vscode-gitlens-decorations-workspaceRepoMissingForegroundColor: #909090;
|
||||
--vscode-gitlens-decorations-workspaceCurrentForegroundColor: #35b15e;
|
||||
--vscode-gitlens-decorations-workspaceRepoOpenForegroundColor: #35b15e;
|
||||
--vscode-gitlens-decorations-worktreeHasUncommittedChangesForegroundColor: #e2c08d;
|
||||
--vscode-gitlens-decorations-worktreeMissingForegroundColor: #c74e39;
|
||||
--vscode-gitlens-graphLane1Color: #15a0bf;
|
||||
--vscode-gitlens-graphLane2Color: #0669f7;
|
||||
--vscode-gitlens-graphLane3Color: #8e00c2;
|
||||
--vscode-gitlens-graphLane4Color: #c517b6;
|
||||
--vscode-gitlens-graphLane5Color: #d90171;
|
||||
--vscode-gitlens-graphLane6Color: #cd0101;
|
||||
--vscode-gitlens-graphLane7Color: #f25d2e;
|
||||
--vscode-gitlens-graphLane8Color: #f2ca33;
|
||||
--vscode-gitlens-graphLane9Color: #7bd938;
|
||||
--vscode-gitlens-graphLane10Color: #2ece9d;
|
||||
--vscode-gitlens-graphChangesColumnAddedColor: #347d39;
|
||||
--vscode-gitlens-graphChangesColumnDeletedColor: #c93c37;
|
||||
--vscode-gitlens-graphMinimapMarkerHeadColor: #05e617;
|
||||
--vscode-gitlens-graphScrollMarkerHeadColor: #05e617;
|
||||
--vscode-gitlens-graphMinimapMarkerUpstreamColor: #09ae17;
|
||||
--vscode-gitlens-graphScrollMarkerUpstreamColor: #09ae17;
|
||||
--vscode-gitlens-graphMinimapMarkerHighlightsColor: #fbff0a;
|
||||
--vscode-gitlens-graphScrollMarkerHighlightsColor: #fbff0a;
|
||||
--vscode-gitlens-graphMinimapMarkerLocalBranchesColor: #3087cf;
|
||||
--vscode-gitlens-graphScrollMarkerLocalBranchesColor: #3087cf;
|
||||
--vscode-gitlens-graphMinimapMarkerRemoteBranchesColor: #2b5e88;
|
||||
--vscode-gitlens-graphScrollMarkerRemoteBranchesColor: #2b5e88;
|
||||
--vscode-gitlens-graphMinimapMarkerStashesColor: #b34db3;
|
||||
--vscode-gitlens-graphScrollMarkerStashesColor: #b34db3;
|
||||
--vscode-gitlens-graphMinimapMarkerTagsColor: #6b562e;
|
||||
--vscode-gitlens-graphScrollMarkerTagsColor: #6b562e;
|
||||
}
|
770
public/onelight.css
Normal file
770
public/onelight.css
Normal file
@ -0,0 +1,770 @@
|
||||
:root {
|
||||
--vscode-foreground: #616161;
|
||||
--vscode-disabledForeground: rgba(97, 97, 97, 0.5);
|
||||
--vscode-errorForeground: #a1260d;
|
||||
--vscode-descriptionForeground: #717171;
|
||||
--vscode-icon-foreground: #424242;
|
||||
--vscode-focusBorder: #526fff;
|
||||
--vscode-textLink-foreground: #006ab1;
|
||||
--vscode-textLink-activeForeground: #006ab1;
|
||||
--vscode-textSeparator-foreground: rgba(0, 0, 0, 0.18);
|
||||
--vscode-textPreformat-foreground: #a31515;
|
||||
--vscode-textPreformat-background: rgba(0, 0, 0, 0.1);
|
||||
--vscode-textBlockQuote-background: #f2f2f2;
|
||||
--vscode-textBlockQuote-border: rgba(0, 122, 204, 0.5);
|
||||
--vscode-textCodeBlock-background: rgba(220, 220, 220, 0.4);
|
||||
--vscode-sash-hoverBorder: #526fff;
|
||||
--vscode-badge-background: #526fff;
|
||||
--vscode-badge-foreground: #ffffff;
|
||||
--vscode-scrollbar-shadow: #dddddd;
|
||||
--vscode-scrollbarSlider-background: rgba(78, 86, 102, 0.5);
|
||||
--vscode-scrollbarSlider-hoverBackground: rgba(90, 99, 117, 0.5);
|
||||
--vscode-scrollbarSlider-activeBackground: rgba(116, 125, 145, 0.5);
|
||||
--vscode-progressBar-background: #0e70c0;
|
||||
--vscode-editor-background: #fafafa;
|
||||
--vscode-editor-foreground: #383a42;
|
||||
--vscode-editorStickyScroll-background: #fafafa;
|
||||
--vscode-editorStickyScrollHover-background: #f0f0f0;
|
||||
--vscode-editorStickyScroll-shadow: #dddddd;
|
||||
--vscode-editorWidget-background: #eaeaeb;
|
||||
--vscode-editorWidget-foreground: #616161;
|
||||
--vscode-editorWidget-border: #e5e5e6;
|
||||
--vscode-editorError-foreground: #e51400;
|
||||
--vscode-editorWarning-foreground: #bf8803;
|
||||
--vscode-editorInfo-foreground: #1a85ff;
|
||||
--vscode-editorHint-foreground: #6c6c6c;
|
||||
--vscode-editorLink-activeForeground: #0000ff;
|
||||
--vscode-editor-selectionBackground: #e5e5e6;
|
||||
--vscode-editor-inactiveSelectionBackground: rgba(229, 229, 230, 0.5);
|
||||
--vscode-editor-selectionHighlightBackground: rgba(242, 242, 242, 0.6);
|
||||
--vscode-editor-findMatchBackground: #a8ac94;
|
||||
--vscode-editor-findMatchHighlightBackground: rgba(82, 111, 255, 0.2);
|
||||
--vscode-editor-findRangeHighlightBackground: rgba(180, 180, 180, 0.3);
|
||||
--vscode-editor-hoverHighlightBackground: rgba(173, 214, 255, 0.15);
|
||||
--vscode-editorHoverWidget-background: #eaeaeb;
|
||||
--vscode-editorHoverWidget-foreground: #616161;
|
||||
--vscode-editorHoverWidget-border: #dbdbdc;
|
||||
--vscode-editorHoverWidget-statusBarBackground: #dedee0;
|
||||
--vscode-editorInlayHint-foreground: #afb2bb;
|
||||
--vscode-editorInlayHint-background: #f5f5f5;
|
||||
--vscode-editorInlayHint-typeForeground: #afb2bb;
|
||||
--vscode-editorInlayHint-typeBackground: #f5f5f5;
|
||||
--vscode-editorInlayHint-parameterForeground: #afb2bb;
|
||||
--vscode-editorInlayHint-parameterBackground: #f5f5f5;
|
||||
--vscode-editorLightBulb-foreground: #ddb100;
|
||||
--vscode-editorLightBulbAutoFix-foreground: #007acc;
|
||||
--vscode-editorLightBulbAi-foreground: #ddb100;
|
||||
--vscode-editor-snippetTabstopHighlightBackground: rgba(10, 50, 100, 0.2);
|
||||
--vscode-editor-snippetFinalTabstopHighlightBorder: rgba(10, 50, 100, 0.5);
|
||||
--vscode-diffEditor-insertedTextBackground: rgba(0, 128, 155, 0.2);
|
||||
--vscode-diffEditor-removedTextBackground: rgba(255, 0, 0, 0.2);
|
||||
--vscode-diffEditor-insertedLineBackground: rgba(155, 185, 85, 0.2);
|
||||
--vscode-diffEditor-removedLineBackground: rgba(255, 0, 0, 0.2);
|
||||
--vscode-diffEditor-diagonalFill: rgba(34, 34, 34, 0.2);
|
||||
--vscode-diffEditor-unchangedRegionBackground: #eaeaeb;
|
||||
--vscode-diffEditor-unchangedRegionForeground: #616161;
|
||||
--vscode-diffEditor-unchangedCodeBackground: rgba(184, 184, 184, 0.16);
|
||||
--vscode-widget-shadow: rgba(0, 0, 0, 0.16);
|
||||
--vscode-toolbar-hoverBackground: rgba(184, 184, 184, 0.31);
|
||||
--vscode-toolbar-activeBackground: rgba(166, 166, 166, 0.31);
|
||||
--vscode-breadcrumb-foreground: rgba(97, 97, 97, 0.8);
|
||||
--vscode-breadcrumb-background: #fafafa;
|
||||
--vscode-breadcrumb-focusForeground: #4e4e4e;
|
||||
--vscode-breadcrumb-activeSelectionForeground: #4e4e4e;
|
||||
--vscode-breadcrumbPicker-background: #eaeaeb;
|
||||
--vscode-merge-currentHeaderBackground: rgba(64, 200, 174, 0.5);
|
||||
--vscode-merge-currentContentBackground: rgba(64, 200, 174, 0.2);
|
||||
--vscode-merge-incomingHeaderBackground: rgba(64, 166, 255, 0.5);
|
||||
--vscode-merge-incomingContentBackground: rgba(64, 166, 255, 0.2);
|
||||
--vscode-merge-commonHeaderBackground: rgba(96, 96, 96, 0.4);
|
||||
--vscode-merge-commonContentBackground: rgba(96, 96, 96, 0.16);
|
||||
--vscode-editorOverviewRuler-currentContentForeground: rgba(64, 200, 174, 0.5);
|
||||
--vscode-editorOverviewRuler-incomingContentForeground: rgba(64, 166, 255, 0.5);
|
||||
--vscode-editorOverviewRuler-commonContentForeground: rgba(96, 96, 96, 0.4);
|
||||
--vscode-editorOverviewRuler-findMatchForeground: rgba(209, 134, 22, 0.49);
|
||||
--vscode-editorOverviewRuler-selectionHighlightForeground: rgba(160, 160, 160, 0.8);
|
||||
--vscode-problemsErrorIcon-foreground: #e51400;
|
||||
--vscode-problemsWarningIcon-foreground: #bf8803;
|
||||
--vscode-problemsInfoIcon-foreground: #1a85ff;
|
||||
--vscode-minimap-findMatchHighlight: #d18616;
|
||||
--vscode-minimap-selectionOccurrenceHighlight: #c9c9c9;
|
||||
--vscode-minimap-selectionHighlight: #add6ff;
|
||||
--vscode-minimap-infoHighlight: #1a85ff;
|
||||
--vscode-minimap-warningHighlight: #bf8803;
|
||||
--vscode-minimap-errorHighlight: rgba(255, 18, 18, 0.7);
|
||||
--vscode-minimap-foregroundOpacity: #000000;
|
||||
--vscode-minimapSlider-background: rgba(78, 86, 102, 0.25);
|
||||
--vscode-minimapSlider-hoverBackground: rgba(90, 99, 117, 0.25);
|
||||
--vscode-minimapSlider-activeBackground: rgba(116, 125, 145, 0.25);
|
||||
--vscode-charts-foreground: #616161;
|
||||
--vscode-charts-lines: rgba(97, 97, 97, 0.5);
|
||||
--vscode-charts-red: #e51400;
|
||||
--vscode-charts-blue: #1a85ff;
|
||||
--vscode-charts-yellow: #bf8803;
|
||||
--vscode-charts-orange: #d18616;
|
||||
--vscode-charts-green: #388a34;
|
||||
--vscode-charts-purple: #652d90;
|
||||
--vscode-input-background: #ffffff;
|
||||
--vscode-input-foreground: #616161;
|
||||
--vscode-input-border: #dbdbdc;
|
||||
--vscode-inputOption-activeBorder: #007acc;
|
||||
--vscode-inputOption-hoverBackground: rgba(184, 184, 184, 0.31);
|
||||
--vscode-inputOption-activeBackground: rgba(82, 111, 255, 0.2);
|
||||
--vscode-inputOption-activeForeground: #000000;
|
||||
--vscode-input-placeholderForeground: rgba(97, 97, 97, 0.5);
|
||||
--vscode-inputValidation-infoBackground: #d6ecf2;
|
||||
--vscode-inputValidation-infoBorder: #007acc;
|
||||
--vscode-inputValidation-warningBackground: #f6f5d2;
|
||||
--vscode-inputValidation-warningBorder: #b89500;
|
||||
--vscode-inputValidation-errorBackground: #f2dede;
|
||||
--vscode-inputValidation-errorBorder: #be1100;
|
||||
--vscode-dropdown-background: #ffffff;
|
||||
--vscode-dropdown-foreground: #616161;
|
||||
--vscode-dropdown-border: #dbdbdc;
|
||||
--vscode-button-foreground: #ffffff;
|
||||
--vscode-button-separator: rgba(255, 255, 255, 0.4);
|
||||
--vscode-button-background: #5871ef;
|
||||
--vscode-button-hoverBackground: #6b83ed;
|
||||
--vscode-button-secondaryForeground: #ffffff;
|
||||
--vscode-button-secondaryBackground: #5f6a79;
|
||||
--vscode-button-secondaryHoverBackground: #4c5561;
|
||||
--vscode-radio-activeForeground: #000000;
|
||||
--vscode-radio-activeBackground: rgba(82, 111, 255, 0.2);
|
||||
--vscode-radio-activeBorder: #007acc;
|
||||
--vscode-radio-inactiveBorder: rgba(0, 0, 0, 0.2);
|
||||
--vscode-radio-inactiveHoverBackground: rgba(184, 184, 184, 0.31);
|
||||
--vscode-checkbox-background: #ffffff;
|
||||
--vscode-checkbox-selectBackground: #eaeaeb;
|
||||
--vscode-checkbox-foreground: #616161;
|
||||
--vscode-checkbox-border: #dbdbdc;
|
||||
--vscode-checkbox-selectBorder: #424242;
|
||||
--vscode-keybindingLabel-background: rgba(221, 221, 221, 0.4);
|
||||
--vscode-keybindingLabel-foreground: #555555;
|
||||
--vscode-keybindingLabel-border: rgba(204, 204, 204, 0.4);
|
||||
--vscode-keybindingLabel-bottomBorder: rgba(187, 187, 187, 0.4);
|
||||
--vscode-list-focusBackground: #dbdbdc;
|
||||
--vscode-list-focusOutline: #526fff;
|
||||
--vscode-list-activeSelectionBackground: #dbdbdc;
|
||||
--vscode-list-activeSelectionForeground: #232324;
|
||||
--vscode-list-inactiveSelectionBackground: #dbdbdc;
|
||||
--vscode-list-inactiveSelectionForeground: #232324;
|
||||
--vscode-list-hoverBackground: rgba(219, 219, 220, 0.4);
|
||||
--vscode-list-dropBackground: #d6ebff;
|
||||
--vscode-list-dropBetweenBackground: #424242;
|
||||
--vscode-list-highlightForeground: #121417;
|
||||
--vscode-list-focusHighlightForeground: #121417;
|
||||
--vscode-list-invalidItemForeground: #b89500;
|
||||
--vscode-list-errorForeground: #b01011;
|
||||
--vscode-list-warningForeground: #855f00;
|
||||
--vscode-listFilterWidget-background: #eaeaeb;
|
||||
--vscode-listFilterWidget-outline: rgba(0, 0, 0, 0);
|
||||
--vscode-listFilterWidget-noMatchesOutline: #be1100;
|
||||
--vscode-listFilterWidget-shadow: rgba(0, 0, 0, 0.16);
|
||||
--vscode-list-filterMatchBackground: rgba(82, 111, 255, 0.2);
|
||||
--vscode-list-deemphasizedForeground: #8e8e90;
|
||||
--vscode-tree-indentGuidesStroke: #a9a9a9;
|
||||
--vscode-tree-inactiveIndentGuidesStroke: rgba(169, 169, 169, 0.4);
|
||||
--vscode-tree-tableColumnsBorder: rgba(97, 97, 97, 0.13);
|
||||
--vscode-tree-tableOddRowsBackground: rgba(97, 97, 97, 0.04);
|
||||
--vscode-editorActionList-background: #eaeaeb;
|
||||
--vscode-editorActionList-foreground: #616161;
|
||||
--vscode-editorActionList-focusForeground: #232324;
|
||||
--vscode-editorActionList-focusBackground: #dbdbdc;
|
||||
--vscode-menu-foreground: #616161;
|
||||
--vscode-menu-background: #ffffff;
|
||||
--vscode-menu-selectionForeground: #232324;
|
||||
--vscode-menu-selectionBackground: #dbdbdc;
|
||||
--vscode-menu-separatorBackground: #d4d4d4;
|
||||
--vscode-quickInput-background: #eaeaeb;
|
||||
--vscode-quickInput-foreground: #616161;
|
||||
--vscode-quickInputTitle-background: rgba(0, 0, 0, 0.06);
|
||||
--vscode-pickerGroup-foreground: #0066bf;
|
||||
--vscode-pickerGroup-border: #526fff;
|
||||
--vscode-quickInputList-focusForeground: #232324;
|
||||
--vscode-quickInputList-focusBackground: #dbdbdc;
|
||||
--vscode-search-resultsInfoForeground: #616161;
|
||||
--vscode-searchEditor-findMatchBackground: rgba(82, 111, 255, 0.13);
|
||||
--vscode-editor-lineHighlightBackground: rgba(56, 58, 66, 0.05);
|
||||
--vscode-editor-lineHighlightBorder: #eeeeee;
|
||||
--vscode-editor-rangeHighlightBackground: rgba(253, 255, 0, 0.2);
|
||||
--vscode-editor-symbolHighlightBackground: rgba(82, 111, 255, 0.2);
|
||||
--vscode-editorCursor-foreground: #526fff;
|
||||
--vscode-editorMultiCursor-primary-foreground: #526fff;
|
||||
--vscode-editorMultiCursor-secondary-foreground: #526fff;
|
||||
--vscode-editorWhitespace-foreground: rgba(56, 58, 66, 0.2);
|
||||
--vscode-editorLineNumber-foreground: #9d9d9f;
|
||||
--vscode-editorIndentGuide-background: rgba(56, 58, 66, 0.2);
|
||||
--vscode-editorIndentGuide-activeBackground: #626772;
|
||||
--vscode-editorIndentGuide-background1: rgba(56, 58, 66, 0.2);
|
||||
--vscode-editorIndentGuide-background2: rgba(0, 0, 0, 0);
|
||||
--vscode-editorIndentGuide-background3: rgba(0, 0, 0, 0);
|
||||
--vscode-editorIndentGuide-background4: rgba(0, 0, 0, 0);
|
||||
--vscode-editorIndentGuide-background5: rgba(0, 0, 0, 0);
|
||||
--vscode-editorIndentGuide-background6: rgba(0, 0, 0, 0);
|
||||
--vscode-editorIndentGuide-activeBackground1: #626772;
|
||||
--vscode-editorIndentGuide-activeBackground2: rgba(0, 0, 0, 0);
|
||||
--vscode-editorIndentGuide-activeBackground3: rgba(0, 0, 0, 0);
|
||||
--vscode-editorIndentGuide-activeBackground4: rgba(0, 0, 0, 0);
|
||||
--vscode-editorIndentGuide-activeBackground5: rgba(0, 0, 0, 0);
|
||||
--vscode-editorIndentGuide-activeBackground6: rgba(0, 0, 0, 0);
|
||||
--vscode-editorActiveLineNumber-foreground: #0b216f;
|
||||
--vscode-editorLineNumber-activeForeground: #383a42;
|
||||
--vscode-editorRuler-foreground: rgba(56, 58, 66, 0.2);
|
||||
--vscode-editorCodeLens-foreground: #919191;
|
||||
--vscode-editorBracketMatch-background: rgba(0, 100, 0, 0.1);
|
||||
--vscode-editorBracketMatch-border: #b9b9b9;
|
||||
--vscode-editorOverviewRuler-border: rgba(127, 127, 127, 0.3);
|
||||
--vscode-editorGutter-background: #fafafa;
|
||||
--vscode-editorUnnecessaryCode-opacity: rgba(0, 0, 0, 0.47);
|
||||
--vscode-editorGhostText-foreground: rgba(0, 0, 0, 0.47);
|
||||
--vscode-editorOverviewRuler-rangeHighlightForeground: rgba(0, 122, 204, 0.6);
|
||||
--vscode-editorOverviewRuler-errorForeground: rgba(255, 18, 18, 0.7);
|
||||
--vscode-editorOverviewRuler-warningForeground: #bf8803;
|
||||
--vscode-editorOverviewRuler-infoForeground: #1a85ff;
|
||||
--vscode-editorBracketHighlight-foreground1: #0431fa;
|
||||
--vscode-editorBracketHighlight-foreground2: #319331;
|
||||
--vscode-editorBracketHighlight-foreground3: #7b3814;
|
||||
--vscode-editorBracketHighlight-foreground4: rgba(0, 0, 0, 0);
|
||||
--vscode-editorBracketHighlight-foreground5: rgba(0, 0, 0, 0);
|
||||
--vscode-editorBracketHighlight-foreground6: rgba(0, 0, 0, 0);
|
||||
--vscode-editorBracketHighlight-unexpectedBracket-foreground: rgba(255, 18, 18, 0.8);
|
||||
--vscode-editorBracketPairGuide-background1: rgba(0, 0, 0, 0);
|
||||
--vscode-editorBracketPairGuide-background2: rgba(0, 0, 0, 0);
|
||||
--vscode-editorBracketPairGuide-background3: rgba(0, 0, 0, 0);
|
||||
--vscode-editorBracketPairGuide-background4: rgba(0, 0, 0, 0);
|
||||
--vscode-editorBracketPairGuide-background5: rgba(0, 0, 0, 0);
|
||||
--vscode-editorBracketPairGuide-background6: rgba(0, 0, 0, 0);
|
||||
--vscode-editorBracketPairGuide-activeBackground1: rgba(0, 0, 0, 0);
|
||||
--vscode-editorBracketPairGuide-activeBackground2: rgba(0, 0, 0, 0);
|
||||
--vscode-editorBracketPairGuide-activeBackground3: rgba(0, 0, 0, 0);
|
||||
--vscode-editorBracketPairGuide-activeBackground4: rgba(0, 0, 0, 0);
|
||||
--vscode-editorBracketPairGuide-activeBackground5: rgba(0, 0, 0, 0);
|
||||
--vscode-editorBracketPairGuide-activeBackground6: rgba(0, 0, 0, 0);
|
||||
--vscode-editorUnicodeHighlight-border: #bf8803;
|
||||
--vscode-diffEditor-move-border: rgba(139, 139, 139, 0.61);
|
||||
--vscode-diffEditor-moveActive-border: #ffa500;
|
||||
--vscode-diffEditor-unchangedRegionShadow: rgba(115, 115, 115, 0.75);
|
||||
--vscode-editorOverviewRuler-bracketMatchForeground: #a0a0a0;
|
||||
--vscode-symbolIcon-arrayForeground: #616161;
|
||||
--vscode-symbolIcon-booleanForeground: #616161;
|
||||
--vscode-symbolIcon-classForeground: #d67e00;
|
||||
--vscode-symbolIcon-colorForeground: #616161;
|
||||
--vscode-symbolIcon-constantForeground: #616161;
|
||||
--vscode-symbolIcon-constructorForeground: #652d90;
|
||||
--vscode-symbolIcon-enumeratorForeground: #d67e00;
|
||||
--vscode-symbolIcon-enumeratorMemberForeground: #007acc;
|
||||
--vscode-symbolIcon-eventForeground: #d67e00;
|
||||
--vscode-symbolIcon-fieldForeground: #007acc;
|
||||
--vscode-symbolIcon-fileForeground: #616161;
|
||||
--vscode-symbolIcon-folderForeground: #616161;
|
||||
--vscode-symbolIcon-functionForeground: #652d90;
|
||||
--vscode-symbolIcon-interfaceForeground: #007acc;
|
||||
--vscode-symbolIcon-keyForeground: #616161;
|
||||
--vscode-symbolIcon-keywordForeground: #616161;
|
||||
--vscode-symbolIcon-methodForeground: #652d90;
|
||||
--vscode-symbolIcon-moduleForeground: #616161;
|
||||
--vscode-symbolIcon-namespaceForeground: #616161;
|
||||
--vscode-symbolIcon-nullForeground: #616161;
|
||||
--vscode-symbolIcon-numberForeground: #616161;
|
||||
--vscode-symbolIcon-objectForeground: #616161;
|
||||
--vscode-symbolIcon-operatorForeground: #616161;
|
||||
--vscode-symbolIcon-packageForeground: #616161;
|
||||
--vscode-symbolIcon-propertyForeground: #616161;
|
||||
--vscode-symbolIcon-referenceForeground: #616161;
|
||||
--vscode-symbolIcon-snippetForeground: #616161;
|
||||
--vscode-symbolIcon-stringForeground: #616161;
|
||||
--vscode-symbolIcon-structForeground: #616161;
|
||||
--vscode-symbolIcon-textForeground: #616161;
|
||||
--vscode-symbolIcon-typeParameterForeground: #616161;
|
||||
--vscode-symbolIcon-unitForeground: #616161;
|
||||
--vscode-symbolIcon-variableForeground: #007acc;
|
||||
--vscode-actionBar-toggledBackground: rgba(82, 111, 255, 0.2);
|
||||
--vscode-peekViewTitle-background: #ffffff;
|
||||
--vscode-peekViewTitleLabel-foreground: #000000;
|
||||
--vscode-peekViewTitleDescription-foreground: #616161;
|
||||
--vscode-peekView-border: #526fff;
|
||||
--vscode-peekViewResult-background: #eaeaeb;
|
||||
--vscode-peekViewResult-lineForeground: #646465;
|
||||
--vscode-peekViewResult-fileForeground: #1e1e1e;
|
||||
--vscode-peekViewResult-selectionBackground: #dbdbdc;
|
||||
--vscode-peekViewResult-selectionForeground: #6c6c6c;
|
||||
--vscode-peekViewEditor-background: #ffffff;
|
||||
--vscode-peekViewEditorGutter-background: #ffffff;
|
||||
--vscode-peekViewEditorStickyScroll-background: #ffffff;
|
||||
--vscode-peekViewResult-matchHighlightBackground: rgba(234, 92, 0, 0.3);
|
||||
--vscode-peekViewEditor-matchHighlightBackground: rgba(245, 216, 2, 0.87);
|
||||
--vscode-editor-foldBackground: rgba(229, 229, 230, 0.3);
|
||||
--vscode-editor-foldPlaceholderForeground: #808080;
|
||||
--vscode-editorGutter-foldingControlForeground: #424242;
|
||||
--vscode-editorSuggestWidget-background: #eaeaeb;
|
||||
--vscode-editorSuggestWidget-border: #dbdbdc;
|
||||
--vscode-editorSuggestWidget-foreground: #383a42;
|
||||
--vscode-editorSuggestWidget-selectedForeground: #232324;
|
||||
--vscode-editorSuggestWidget-selectedBackground: #ffffff;
|
||||
--vscode-editorSuggestWidget-highlightForeground: #121417;
|
||||
--vscode-editorSuggestWidget-focusHighlightForeground: #121417;
|
||||
--vscode-editorSuggestWidgetStatus-foreground: rgba(56, 58, 66, 0.5);
|
||||
--vscode-editorMarkerNavigationError-background: #e51400;
|
||||
--vscode-editorMarkerNavigationError-headerBackground: rgba(229, 20, 0, 0.1);
|
||||
--vscode-editorMarkerNavigationWarning-background: #bf8803;
|
||||
--vscode-editorMarkerNavigationWarning-headerBackground: rgba(191, 136, 3, 0.1);
|
||||
--vscode-editorMarkerNavigationInfo-background: #1a85ff;
|
||||
--vscode-editorMarkerNavigationInfo-headerBackground: rgba(26, 133, 255, 0.1);
|
||||
--vscode-editorMarkerNavigation-background: #fafafa;
|
||||
--vscode-editor-linkedEditingBackground: rgba(255, 0, 0, 0.3);
|
||||
--vscode-editor-wordHighlightBackground: rgba(87, 87, 87, 0.25);
|
||||
--vscode-editor-wordHighlightStrongBackground: rgba(14, 99, 156, 0.25);
|
||||
--vscode-editor-wordHighlightTextBackground: rgba(87, 87, 87, 0.25);
|
||||
--vscode-editorOverviewRuler-wordHighlightForeground: rgba(160, 160, 160, 0.8);
|
||||
--vscode-editorOverviewRuler-wordHighlightStrongForeground: rgba(192, 160, 192, 0.8);
|
||||
--vscode-editorOverviewRuler-wordHighlightTextForeground: rgba(160, 160, 160, 0.8);
|
||||
--vscode-editorHoverWidget-highlightForeground: #121417;
|
||||
--vscode-editor-placeholder-foreground: rgba(0, 0, 0, 0.47);
|
||||
--vscode-tab-activeBackground: #fafafa;
|
||||
--vscode-tab-unfocusedActiveBackground: #fafafa;
|
||||
--vscode-tab-inactiveBackground: #eaeaeb;
|
||||
--vscode-tab-unfocusedInactiveBackground: #eaeaeb;
|
||||
--vscode-tab-activeForeground: #121417;
|
||||
--vscode-tab-inactiveForeground: rgba(18, 20, 23, 0.7);
|
||||
--vscode-tab-unfocusedActiveForeground: rgba(18, 20, 23, 0.7);
|
||||
--vscode-tab-unfocusedInactiveForeground: rgba(18, 20, 23, 0.35);
|
||||
--vscode-tab-border: #dbdbdc;
|
||||
--vscode-tab-lastPinnedBorder: #a9a9a9;
|
||||
--vscode-tab-selectedBackground: #fafafa;
|
||||
--vscode-tab-selectedForeground: #121417;
|
||||
--vscode-tab-dragAndDropBorder: #121417;
|
||||
--vscode-tab-activeModifiedBorder: #33aaee;
|
||||
--vscode-tab-inactiveModifiedBorder: rgba(51, 170, 238, 0.5);
|
||||
--vscode-tab-unfocusedActiveModifiedBorder: rgba(51, 170, 238, 0.7);
|
||||
--vscode-tab-unfocusedInactiveModifiedBorder: rgba(51, 170, 238, 0.25);
|
||||
--vscode-editorPane-background: #fafafa;
|
||||
--vscode-editorGroupHeader-tabsBackground: #eaeaeb;
|
||||
--vscode-editorGroupHeader-noTabsBackground: #fafafa;
|
||||
--vscode-editorGroup-border: #dbdbdc;
|
||||
--vscode-editorGroup-dropBackground: rgba(38, 119, 203, 0.18);
|
||||
--vscode-editorGroup-dropIntoPromptForeground: #616161;
|
||||
--vscode-editorGroup-dropIntoPromptBackground: #eaeaeb;
|
||||
--vscode-sideBySideEditor-horizontalBorder: #dbdbdc;
|
||||
--vscode-sideBySideEditor-verticalBorder: #dbdbdc;
|
||||
--vscode-panel-background: #fafafa;
|
||||
--vscode-panel-border: rgba(128, 128, 128, 0.35);
|
||||
--vscode-panelTitle-activeForeground: #424242;
|
||||
--vscode-panelTitle-inactiveForeground: rgba(66, 66, 66, 0.75);
|
||||
--vscode-panelTitle-activeBorder: #424242;
|
||||
--vscode-panelInput-border: #dddddd;
|
||||
--vscode-panel-dropBorder: #424242;
|
||||
--vscode-panelSection-dropBackground: rgba(38, 119, 203, 0.18);
|
||||
--vscode-panelSectionHeader-background: rgba(128, 128, 128, 0.2);
|
||||
--vscode-panelSection-border: rgba(128, 128, 128, 0.35);
|
||||
--vscode-panelStickyScroll-background: #fafafa;
|
||||
--vscode-panelStickyScroll-shadow: #dddddd;
|
||||
--vscode-banner-background: #98989b;
|
||||
--vscode-banner-foreground: #232324;
|
||||
--vscode-banner-iconForeground: #1a85ff;
|
||||
--vscode-statusBar-foreground: #424243;
|
||||
--vscode-statusBar-noFolderForeground: #424243;
|
||||
--vscode-statusBar-background: #eaeaeb;
|
||||
--vscode-statusBar-noFolderBackground: #eaeaeb;
|
||||
--vscode-statusBar-focusBorder: #424243;
|
||||
--vscode-statusBarItem-activeBackground: rgba(255, 255, 255, 0.18);
|
||||
--vscode-statusBarItem-focusBorder: #424243;
|
||||
--vscode-statusBarItem-hoverBackground: #dbdbdc;
|
||||
--vscode-statusBarItem-hoverForeground: #424243;
|
||||
--vscode-statusBarItem-compactHoverBackground: rgba(255, 255, 255, 0.2);
|
||||
--vscode-statusBarItem-prominentForeground: #424243;
|
||||
--vscode-statusBarItem-prominentBackground: rgba(0, 0, 0, 0.5);
|
||||
--vscode-statusBarItem-prominentHoverForeground: #424243;
|
||||
--vscode-statusBarItem-prominentHoverBackground: rgba(0, 0, 0, 0.3);
|
||||
--vscode-statusBarItem-errorBackground: #611708;
|
||||
--vscode-statusBarItem-errorForeground: #ffffff;
|
||||
--vscode-statusBarItem-errorHoverForeground: #424243;
|
||||
--vscode-statusBarItem-errorHoverBackground: #dbdbdc;
|
||||
--vscode-statusBarItem-warningBackground: #725102;
|
||||
--vscode-statusBarItem-warningForeground: #ffffff;
|
||||
--vscode-statusBarItem-warningHoverForeground: #424243;
|
||||
--vscode-statusBarItem-warningHoverBackground: #dbdbdc;
|
||||
--vscode-activityBar-background: #fafafa;
|
||||
--vscode-activityBar-foreground: #121417;
|
||||
--vscode-activityBar-inactiveForeground: rgba(18, 20, 23, 0.4);
|
||||
--vscode-activityBar-activeBorder: #121417;
|
||||
--vscode-activityBar-dropBorder: #121417;
|
||||
--vscode-activityBarBadge-background: #526fff;
|
||||
--vscode-activityBarBadge-foreground: #ffffff;
|
||||
--vscode-activityBarTop-foreground: #424242;
|
||||
--vscode-activityBarTop-activeBorder: #424242;
|
||||
--vscode-activityBarTop-inactiveForeground: rgba(66, 66, 66, 0.75);
|
||||
--vscode-activityBarTop-dropBorder: #424242;
|
||||
--vscode-profileBadge-background: #c4c4c4;
|
||||
--vscode-profileBadge-foreground: #333333;
|
||||
--vscode-statusBarItem-remoteBackground: #526fff;
|
||||
--vscode-statusBarItem-remoteForeground: #ffffff;
|
||||
--vscode-statusBarItem-remoteHoverForeground: #424243;
|
||||
--vscode-statusBarItem-remoteHoverBackground: #dbdbdc;
|
||||
--vscode-statusBarItem-offlineBackground: #6c1717;
|
||||
--vscode-statusBarItem-offlineForeground: #ffffff;
|
||||
--vscode-statusBarItem-offlineHoverForeground: #424243;
|
||||
--vscode-statusBarItem-offlineHoverBackground: #dbdbdc;
|
||||
--vscode-extensionBadge-remoteBackground: #526fff;
|
||||
--vscode-extensionBadge-remoteForeground: #ffffff;
|
||||
--vscode-sideBar-background: #eaeaeb;
|
||||
--vscode-sideBarTitle-background: #eaeaeb;
|
||||
--vscode-sideBar-dropBackground: rgba(38, 119, 203, 0.18);
|
||||
--vscode-sideBarSectionHeader-background: #fafafa;
|
||||
--vscode-sideBarStickyScroll-background: #eaeaeb;
|
||||
--vscode-sideBarStickyScroll-shadow: #dddddd;
|
||||
--vscode-titleBar-activeForeground: #424243;
|
||||
--vscode-titleBar-inactiveForeground: #424243;
|
||||
--vscode-titleBar-activeBackground: #eaeaeb;
|
||||
--vscode-titleBar-inactiveBackground: #eaeaeb;
|
||||
--vscode-menubar-selectionForeground: #424243;
|
||||
--vscode-menubar-selectionBackground: rgba(184, 184, 184, 0.31);
|
||||
--vscode-commandCenter-foreground: #424243;
|
||||
--vscode-commandCenter-activeForeground: #424243;
|
||||
--vscode-commandCenter-inactiveForeground: #424243;
|
||||
--vscode-commandCenter-background: rgba(0, 0, 0, 0.05);
|
||||
--vscode-commandCenter-activeBackground: rgba(0, 0, 0, 0.08);
|
||||
--vscode-commandCenter-border: rgba(66, 66, 67, 0.2);
|
||||
--vscode-commandCenter-activeBorder: rgba(66, 66, 67, 0.3);
|
||||
--vscode-commandCenter-inactiveBorder: rgba(66, 66, 67, 0.25);
|
||||
--vscode-notifications-foreground: #616161;
|
||||
--vscode-notifications-background: #eaeaeb;
|
||||
--vscode-notificationLink-foreground: #006ab1;
|
||||
--vscode-notificationCenterHeader-background: #dedee0;
|
||||
--vscode-notifications-border: #dedee0;
|
||||
--vscode-notificationsErrorIcon-foreground: #e51400;
|
||||
--vscode-notificationsWarningIcon-foreground: #bf8803;
|
||||
--vscode-notificationsInfoIcon-foreground: #1a85ff;
|
||||
--vscode-inlineChat-foreground: #616161;
|
||||
--vscode-inlineChat-background: #eaeaeb;
|
||||
--vscode-inlineChat-border: #e5e5e6;
|
||||
--vscode-inlineChat-shadow: rgba(0, 0, 0, 0.16);
|
||||
--vscode-inlineChatInput-border: #e5e5e6;
|
||||
--vscode-inlineChatInput-focusBorder: #526fff;
|
||||
--vscode-inlineChatInput-placeholderForeground: rgba(97, 97, 97, 0.5);
|
||||
--vscode-inlineChatInput-background: #ffffff;
|
||||
--vscode-inlineChatDiff-inserted: rgba(0, 128, 155, 0.1);
|
||||
--vscode-editorOverviewRuler-inlineChatInserted: rgba(0, 128, 155, 0.16);
|
||||
--vscode-inlineChatDiff-removed: rgba(255, 0, 0, 0.1);
|
||||
--vscode-editorOverviewRuler-inlineChatRemoved: rgba(255, 0, 0, 0.16);
|
||||
--vscode-extensionButton-background: #5871ef;
|
||||
--vscode-extensionButton-foreground: #ffffff;
|
||||
--vscode-extensionButton-hoverBackground: #6b83ed;
|
||||
--vscode-extensionButton-separator: rgba(255, 255, 255, 0.4);
|
||||
--vscode-extensionButton-prominentBackground: #3bba54;
|
||||
--vscode-extensionButton-prominentForeground: #ffffff;
|
||||
--vscode-extensionButton-prominentHoverBackground: #4cc263;
|
||||
--vscode-chat-requestBorder: rgba(0, 0, 0, 0.1);
|
||||
--vscode-chat-requestBackground: rgba(250, 250, 250, 0.62);
|
||||
--vscode-chat-slashCommandBackground: rgba(210, 236, 255, 0.6);
|
||||
--vscode-chat-slashCommandForeground: #306ca2;
|
||||
--vscode-chat-avatarBackground: #f2f2f2;
|
||||
--vscode-chat-avatarForeground: #616161;
|
||||
--vscode-terminal-foreground: #333333;
|
||||
--vscode-terminal-selectionBackground: #e5e5e6;
|
||||
--vscode-terminal-inactiveSelectionBackground: rgba(229, 229, 230, 0.5);
|
||||
--vscode-terminalCommandDecoration-defaultBackground: rgba(0, 0, 0, 0.25);
|
||||
--vscode-terminalCommandDecoration-successBackground: #2090d3;
|
||||
--vscode-terminalCommandDecoration-errorBackground: #e51400;
|
||||
--vscode-terminalOverviewRuler-cursorForeground: rgba(160, 160, 160, 0.8);
|
||||
--vscode-terminal-border: rgba(128, 128, 128, 0.35);
|
||||
--vscode-terminalOverviewRuler-border: rgba(127, 127, 127, 0.3);
|
||||
--vscode-terminal-findMatchBackground: #a8ac94;
|
||||
--vscode-terminal-hoverHighlightBackground: rgba(173, 214, 255, 0.07);
|
||||
--vscode-terminal-findMatchHighlightBackground: rgba(82, 111, 255, 0.2);
|
||||
--vscode-terminalOverviewRuler-findMatchForeground: rgba(209, 134, 22, 0.49);
|
||||
--vscode-terminal-dropBackground: rgba(38, 119, 203, 0.18);
|
||||
--vscode-terminal-initialHintForeground: rgba(0, 0, 0, 0.47);
|
||||
--vscode-terminalStickyScrollHover-background: #f0f0f0;
|
||||
--vscode-scmGraph-historyItemRefColor: #1a85ff;
|
||||
--vscode-scmGraph-historyItemRemoteRefColor: #652d90;
|
||||
--vscode-scmGraph-historyItemBaseRefColor: #ea5c00;
|
||||
--vscode-scmGraph-historyItemHoverDefaultLabelForeground: #616161;
|
||||
--vscode-scmGraph-historyItemHoverDefaultLabelBackground: #526fff;
|
||||
--vscode-scmGraph-historyItemHoverLabelForeground: #ffffff;
|
||||
--vscode-scmGraph-historyItemHoverAdditionsForeground: #587c0c;
|
||||
--vscode-scmGraph-historyItemHoverDeletionsForeground: #ad0707;
|
||||
--vscode-scmGraph-foreground1: #ffb000;
|
||||
--vscode-scmGraph-foreground2: #dc267f;
|
||||
--vscode-scmGraph-foreground3: #994f00;
|
||||
--vscode-scmGraph-foreground4: #40b0a6;
|
||||
--vscode-scmGraph-foreground5: #b66dff;
|
||||
--vscode-commentsView-resolvedIcon: rgba(97, 97, 97, 0.5);
|
||||
--vscode-commentsView-unresolvedIcon: #526fff;
|
||||
--vscode-editorCommentsWidget-replyInputBackground: #ffffff;
|
||||
--vscode-editorCommentsWidget-resolvedBorder: rgba(97, 97, 97, 0.5);
|
||||
--vscode-editorCommentsWidget-unresolvedBorder: #526fff;
|
||||
--vscode-editorCommentsWidget-rangeBackground: rgba(82, 111, 255, 0.1);
|
||||
--vscode-editorCommentsWidget-rangeActiveBackground: rgba(82, 111, 255, 0.1);
|
||||
--vscode-editorGutter-commentRangeForeground: #d0d0d1;
|
||||
--vscode-editorOverviewRuler-commentForeground: #d0d0d1;
|
||||
--vscode-editorOverviewRuler-commentUnresolvedForeground: #d0d0d1;
|
||||
--vscode-editorGutter-commentGlyphForeground: #383a42;
|
||||
--vscode-editorGutter-commentUnresolvedGlyphForeground: #383a42;
|
||||
--vscode-activityWarningBadge-foreground: #ffffff;
|
||||
--vscode-activityWarningBadge-background: #bf8803;
|
||||
--vscode-activityErrorBadge-foreground: #ffffff;
|
||||
--vscode-activityErrorBadge-background: #e51400;
|
||||
--vscode-ports-iconRunningProcessForeground: #526fff;
|
||||
--vscode-editorWatermark-foreground: rgba(56, 58, 66, 0.68);
|
||||
--vscode-settings-headerForeground: #444444;
|
||||
--vscode-settings-settingsHeaderHoverForeground: rgba(68, 68, 68, 0.7);
|
||||
--vscode-settings-modifiedItemIndicator: #66afe0;
|
||||
--vscode-settings-headerBorder: rgba(128, 128, 128, 0.35);
|
||||
--vscode-settings-sashBorder: rgba(128, 128, 128, 0.35);
|
||||
--vscode-settings-dropdownBackground: #ffffff;
|
||||
--vscode-settings-dropdownForeground: #616161;
|
||||
--vscode-settings-dropdownBorder: #dbdbdc;
|
||||
--vscode-settings-dropdownListBorder: #e5e5e6;
|
||||
--vscode-settings-checkboxBackground: #ffffff;
|
||||
--vscode-settings-checkboxForeground: #616161;
|
||||
--vscode-settings-checkboxBorder: #dbdbdc;
|
||||
--vscode-settings-textInputBackground: #ffffff;
|
||||
--vscode-settings-textInputForeground: #616161;
|
||||
--vscode-settings-textInputBorder: #dbdbdc;
|
||||
--vscode-settings-numberInputBackground: #ffffff;
|
||||
--vscode-settings-numberInputForeground: #616161;
|
||||
--vscode-settings-numberInputBorder: #dbdbdc;
|
||||
--vscode-settings-focusedRowBackground: rgba(219, 219, 220, 0.24);
|
||||
--vscode-settings-rowHoverBackground: rgba(219, 219, 220, 0.12);
|
||||
--vscode-settings-focusedRowBorder: #526fff;
|
||||
--vscode-keybindingTable-headerBackground: rgba(97, 97, 97, 0.04);
|
||||
--vscode-keybindingTable-rowsBackground: rgba(97, 97, 97, 0.04);
|
||||
--vscode-debugToolBar-background: #f3f3f3;
|
||||
--vscode-debugIcon-startForeground: #388a34;
|
||||
--vscode-notebook-cellBorderColor: #dbdbdc;
|
||||
--vscode-notebook-focusedEditorBorder: #526fff;
|
||||
--vscode-notebookStatusSuccessIcon-foreground: #388a34;
|
||||
--vscode-notebookEditorOverviewRuler-runningCellForeground: #388a34;
|
||||
--vscode-notebookStatusErrorIcon-foreground: #a1260d;
|
||||
--vscode-notebookStatusRunningIcon-foreground: #616161;
|
||||
--vscode-notebook-cellToolbarSeparator: rgba(128, 128, 128, 0.35);
|
||||
--vscode-notebook-selectedCellBackground: #dbdbdc;
|
||||
--vscode-notebook-selectedCellBorder: #dbdbdc;
|
||||
--vscode-notebook-focusedCellBorder: #526fff;
|
||||
--vscode-notebook-inactiveFocusedCellBorder: #dbdbdc;
|
||||
--vscode-notebook-cellStatusBarItemHoverBackground: rgba(0, 0, 0, 0.08);
|
||||
--vscode-notebook-cellInsertionIndicator: #526fff;
|
||||
--vscode-notebookScrollbarSlider-background: rgba(78, 86, 102, 0.5);
|
||||
--vscode-notebookScrollbarSlider-hoverBackground: rgba(90, 99, 117, 0.5);
|
||||
--vscode-notebookScrollbarSlider-activeBackground: rgba(116, 125, 145, 0.5);
|
||||
--vscode-notebook-symbolHighlightBackground: rgba(253, 255, 0, 0.2);
|
||||
--vscode-notebook-cellEditorBackground: #f5f5f5;
|
||||
--vscode-notebook-editorBackground: #fafafa;
|
||||
--vscode-debugIcon-breakpointForeground: #e51400;
|
||||
--vscode-debugIcon-breakpointDisabledForeground: #848484;
|
||||
--vscode-debugIcon-breakpointUnverifiedForeground: #848484;
|
||||
--vscode-debugIcon-breakpointCurrentStackframeForeground: #be8700;
|
||||
--vscode-debugIcon-breakpointStackframeForeground: #89d185;
|
||||
--vscode-editor-stackFrameHighlightBackground: rgba(255, 255, 102, 0.45);
|
||||
--vscode-editor-focusedStackFrameHighlightBackground: rgba(206, 231, 206, 0.45);
|
||||
--vscode-multiDiffEditor-headerBackground: #eaeaeb;
|
||||
--vscode-multiDiffEditor-background: #fafafa;
|
||||
--vscode-multiDiffEditor-border: #cccccc;
|
||||
--vscode-interactive-activeCodeBorder: #526fff;
|
||||
--vscode-interactive-inactiveCodeBorder: #dbdbdc;
|
||||
--vscode-testing-iconFailed: #f14c4c;
|
||||
--vscode-testing-iconErrored: #f14c4c;
|
||||
--vscode-testing-iconPassed: #73c991;
|
||||
--vscode-testing-runAction: #73c991;
|
||||
--vscode-testing-iconQueued: #cca700;
|
||||
--vscode-testing-iconUnset: #848484;
|
||||
--vscode-testing-iconSkipped: #848484;
|
||||
--vscode-testing-peekBorder: #e51400;
|
||||
--vscode-testing-messagePeekBorder: #1a85ff;
|
||||
--vscode-testing-peekHeaderBackground: rgba(229, 20, 0, 0.1);
|
||||
--vscode-testing-messagePeekHeaderBackground: rgba(26, 133, 255, 0.1);
|
||||
--vscode-testing-coveredBackground: rgba(0, 128, 155, 0.2);
|
||||
--vscode-testing-coveredBorder: rgba(0, 128, 155, 0.15);
|
||||
--vscode-testing-coveredGutterBackground: rgba(0, 128, 155, 0.12);
|
||||
--vscode-testing-uncoveredBranchBackground: #fc9696;
|
||||
--vscode-testing-uncoveredBackground: rgba(255, 0, 0, 0.2);
|
||||
--vscode-testing-uncoveredBorder: rgba(255, 0, 0, 0.15);
|
||||
--vscode-testing-uncoveredGutterBackground: rgba(255, 0, 0, 0.3);
|
||||
--vscode-testing-coverCountBadgeBackground: #526fff;
|
||||
--vscode-testing-coverCountBadgeForeground: #ffffff;
|
||||
--vscode-testing-message-error-decorationForeground: #e51400;
|
||||
--vscode-testing-message-error-lineBackground: rgba(255, 0, 0, 0.1);
|
||||
--vscode-testing-message-info-decorationForeground: rgba(56, 58, 66, 0.5);
|
||||
--vscode-testing-iconErrored-retired: rgba(241, 76, 76, 0.7);
|
||||
--vscode-testing-iconFailed-retired: rgba(241, 76, 76, 0.7);
|
||||
--vscode-testing-iconPassed-retired: rgba(115, 201, 145, 0.7);
|
||||
--vscode-testing-iconQueued-retired: rgba(204, 167, 0, 0.7);
|
||||
--vscode-testing-iconUnset-retired: rgba(132, 132, 132, 0.7);
|
||||
--vscode-testing-iconSkipped-retired: rgba(132, 132, 132, 0.7);
|
||||
--vscode-searchEditor-textInputBorder: #dbdbdc;
|
||||
--vscode-editorGutter-modifiedBackground: #2090d3;
|
||||
--vscode-editorGutter-addedBackground: #48985d;
|
||||
--vscode-editorGutter-deletedBackground: #e51400;
|
||||
--vscode-minimapGutter-modifiedBackground: #2090d3;
|
||||
--vscode-minimapGutter-addedBackground: #48985d;
|
||||
--vscode-minimapGutter-deletedBackground: #e51400;
|
||||
--vscode-editorOverviewRuler-modifiedForeground: rgba(32, 144, 211, 0.6);
|
||||
--vscode-editorOverviewRuler-addedForeground: rgba(72, 152, 93, 0.6);
|
||||
--vscode-editorOverviewRuler-deletedForeground: rgba(229, 20, 0, 0.6);
|
||||
--vscode-debugExceptionWidget-border: #a31515;
|
||||
--vscode-debugExceptionWidget-background: #f1dfde;
|
||||
--vscode-editor-inlineValuesForeground: rgba(0, 0, 0, 0.5);
|
||||
--vscode-editor-inlineValuesBackground: rgba(255, 200, 0, 0.2);
|
||||
--vscode-statusBar-debuggingBackground: #cc6633;
|
||||
--vscode-statusBar-debuggingForeground: #ffffff;
|
||||
--vscode-commandCenter-debuggingBackground: rgba(204, 102, 51, 0.26);
|
||||
--vscode-debugTokenExpression-name: #9b46b0;
|
||||
--vscode-debugTokenExpression-type: #4a90e2;
|
||||
--vscode-debugTokenExpression-value: rgba(108, 108, 108, 0.8);
|
||||
--vscode-debugTokenExpression-string: #a31515;
|
||||
--vscode-debugTokenExpression-boolean: #0000ff;
|
||||
--vscode-debugTokenExpression-number: #098658;
|
||||
--vscode-debugTokenExpression-error: #e51400;
|
||||
--vscode-debugView-exceptionLabelForeground: #ffffff;
|
||||
--vscode-debugView-exceptionLabelBackground: #a31515;
|
||||
--vscode-debugView-stateLabelForeground: #616161;
|
||||
--vscode-debugView-stateLabelBackground: rgba(136, 136, 136, 0.27);
|
||||
--vscode-debugView-valueChangedHighlight: #569cd6;
|
||||
--vscode-debugConsole-infoForeground: #1a85ff;
|
||||
--vscode-debugConsole-warningForeground: #bf8803;
|
||||
--vscode-debugConsole-errorForeground: #a1260d;
|
||||
--vscode-debugConsole-sourceForeground: #616161;
|
||||
--vscode-debugConsoleInputIcon-foreground: #616161;
|
||||
--vscode-debugIcon-pauseForeground: #007acc;
|
||||
--vscode-debugIcon-stopForeground: #a1260d;
|
||||
--vscode-debugIcon-disconnectForeground: #a1260d;
|
||||
--vscode-debugIcon-restartForeground: #388a34;
|
||||
--vscode-debugIcon-stepOverForeground: #007acc;
|
||||
--vscode-debugIcon-stepIntoForeground: #007acc;
|
||||
--vscode-debugIcon-stepOutForeground: #007acc;
|
||||
--vscode-debugIcon-continueForeground: #007acc;
|
||||
--vscode-debugIcon-stepBackForeground: #007acc;
|
||||
--vscode-mergeEditor-change-background: rgba(155, 185, 85, 0.2);
|
||||
--vscode-mergeEditor-change-word-background: rgba(156, 204, 44, 0.4);
|
||||
--vscode-mergeEditor-changeBase-background: #ffcccc;
|
||||
--vscode-mergeEditor-changeBase-word-background: #ffa3a3;
|
||||
--vscode-mergeEditor-conflict-unhandledUnfocused-border: #ffa600;
|
||||
--vscode-mergeEditor-conflict-unhandledFocused-border: #ffa600;
|
||||
--vscode-mergeEditor-conflict-handledUnfocused-border: rgba(134, 134, 134, 0.29);
|
||||
--vscode-mergeEditor-conflict-handledFocused-border: rgba(193, 193, 193, 0.8);
|
||||
--vscode-mergeEditor-conflict-handled-minimapOverViewRuler: rgba(173, 172, 168, 0.93);
|
||||
--vscode-mergeEditor-conflict-unhandled-minimapOverViewRuler: #fcba03;
|
||||
--vscode-mergeEditor-conflictingLines-background: rgba(255, 234, 0, 0.28);
|
||||
--vscode-mergeEditor-conflict-input1-background: rgba(64, 200, 174, 0.2);
|
||||
--vscode-mergeEditor-conflict-input2-background: rgba(64, 166, 255, 0.2);
|
||||
--vscode-extensionIcon-starForeground: #df6100;
|
||||
--vscode-extensionIcon-verifiedForeground: #006ab1;
|
||||
--vscode-extensionIcon-preReleaseForeground: #1d9271;
|
||||
--vscode-extensionIcon-sponsorForeground: #b51e78;
|
||||
--vscode-terminal-ansiBlack: #000000;
|
||||
--vscode-terminal-ansiRed: #cd3131;
|
||||
--vscode-terminal-ansiGreen: #107c10;
|
||||
--vscode-terminal-ansiYellow: #949800;
|
||||
--vscode-terminal-ansiBlue: #0451a5;
|
||||
--vscode-terminal-ansiMagenta: #bc05bc;
|
||||
--vscode-terminal-ansiCyan: #0598bc;
|
||||
--vscode-terminal-ansiWhite: #555555;
|
||||
--vscode-terminal-ansiBrightBlack: #666666;
|
||||
--vscode-terminal-ansiBrightRed: #cd3131;
|
||||
--vscode-terminal-ansiBrightGreen: #14ce14;
|
||||
--vscode-terminal-ansiBrightYellow: #b5ba00;
|
||||
--vscode-terminal-ansiBrightBlue: #0451a5;
|
||||
--vscode-terminal-ansiBrightMagenta: #bc05bc;
|
||||
--vscode-terminal-ansiBrightCyan: #0598bc;
|
||||
--vscode-terminal-ansiBrightWhite: #a5a5a5;
|
||||
--vscode-simpleFindWidget-sashBorder: #c8c8c8;
|
||||
--vscode-terminalCommandGuide-foreground: #dbdbdc;
|
||||
--vscode-welcomePage-tileBackground: #eaeaeb;
|
||||
--vscode-welcomePage-tileHoverBackground: #d2d2d4;
|
||||
--vscode-welcomePage-tileBorder: rgba(0, 0, 0, 0.1);
|
||||
--vscode-welcomePage-progress-background: #ffffff;
|
||||
--vscode-welcomePage-progress-foreground: #006ab1;
|
||||
--vscode-walkthrough-stepTitle-foreground: #000000;
|
||||
--vscode-walkThrough-embeddedEditorBackground: #f4f4f4;
|
||||
--vscode-profiles-sashBorder: rgba(128, 128, 128, 0.35);
|
||||
--vscode-gitDecoration-addedResourceForeground: #587c0c;
|
||||
--vscode-gitDecoration-modifiedResourceForeground: #895503;
|
||||
--vscode-gitDecoration-deletedResourceForeground: #ad0707;
|
||||
--vscode-gitDecoration-renamedResourceForeground: #007100;
|
||||
--vscode-gitDecoration-untrackedResourceForeground: #007100;
|
||||
--vscode-gitDecoration-ignoredResourceForeground: #8e8e90;
|
||||
--vscode-gitDecoration-stageModifiedResourceForeground: #895503;
|
||||
--vscode-gitDecoration-stageDeletedResourceForeground: #ad0707;
|
||||
--vscode-gitDecoration-conflictingResourceForeground: #ad0707;
|
||||
--vscode-gitDecoration-submoduleResourceForeground: #1258a7;
|
||||
--vscode-gitlens-gutterBackgroundColor: rgba(0, 0, 0, 0.05);
|
||||
--vscode-gitlens-gutterForegroundColor: #747474;
|
||||
--vscode-gitlens-gutterUncommittedForegroundColor: rgba(0, 188, 242, 0.6);
|
||||
--vscode-gitlens-trailingLineBackgroundColor: rgba(0, 0, 0, 0);
|
||||
--vscode-gitlens-trailingLineForegroundColor: rgba(153, 153, 153, 0.35);
|
||||
--vscode-gitlens-lineHighlightBackgroundColor: rgba(0, 188, 242, 0.2);
|
||||
--vscode-gitlens-lineHighlightOverviewRulerColor: rgba(0, 188, 242, 0.6);
|
||||
--vscode-gitlens-openAutolinkedIssueIconColor: #1a7f37;
|
||||
--vscode-gitlens-closedAutolinkedIssueIconColor: #8250df;
|
||||
--vscode-gitlens-closedPullRequestIconColor: #cf222e;
|
||||
--vscode-gitlens-openPullRequestIconColor: #1a7f37;
|
||||
--vscode-gitlens-mergedPullRequestIconColor: #8250df;
|
||||
--vscode-gitlens-unpublishedChangesIconColor: #35b15e;
|
||||
--vscode-gitlens-unpublishedCommitIconColor: #35b15e;
|
||||
--vscode-gitlens-unpulledChangesIconColor: #b15e35;
|
||||
--vscode-gitlens-decorations-addedForegroundColor: #587c0c;
|
||||
--vscode-gitlens-decorations-copiedForegroundColor: #007100;
|
||||
--vscode-gitlens-decorations-deletedForegroundColor: #ad0707;
|
||||
--vscode-gitlens-decorations-ignoredForegroundColor: #8e8e90;
|
||||
--vscode-gitlens-decorations-modifiedForegroundColor: #895503;
|
||||
--vscode-gitlens-decorations-untrackedForegroundColor: #007100;
|
||||
--vscode-gitlens-decorations-renamedForegroundColor: #007100;
|
||||
--vscode-gitlens-decorations-branchAheadForegroundColor: #35b15e;
|
||||
--vscode-gitlens-decorations-branchBehindForegroundColor: #b15e35;
|
||||
--vscode-gitlens-decorations-branchDivergedForegroundColor: #d8af1b;
|
||||
--vscode-gitlens-decorations-branchMissingUpstreamForegroundColor: #ad0707;
|
||||
--vscode-gitlens-decorations-statusMergingOrRebasingConflictForegroundColor: #ad0707;
|
||||
--vscode-gitlens-decorations-statusMergingOrRebasingForegroundColor: #d8af1b;
|
||||
--vscode-gitlens-decorations-workspaceRepoMissingForegroundColor: #949494;
|
||||
--vscode-gitlens-decorations-workspaceCurrentForegroundColor: #35b15e;
|
||||
--vscode-gitlens-decorations-workspaceRepoOpenForegroundColor: #35b15e;
|
||||
--vscode-gitlens-decorations-worktreeHasUncommittedChangesForegroundColor: #895503;
|
||||
--vscode-gitlens-decorations-worktreeMissingForegroundColor: #ad0707;
|
||||
--vscode-gitlens-graphLane1Color: #15a0bf;
|
||||
--vscode-gitlens-graphLane2Color: #0669f7;
|
||||
--vscode-gitlens-graphLane3Color: #8e00c2;
|
||||
--vscode-gitlens-graphLane4Color: #c517b6;
|
||||
--vscode-gitlens-graphLane5Color: #d90171;
|
||||
--vscode-gitlens-graphLane6Color: #cd0101;
|
||||
--vscode-gitlens-graphLane7Color: #f25d2e;
|
||||
--vscode-gitlens-graphLane8Color: #f2ca33;
|
||||
--vscode-gitlens-graphLane9Color: #7bd938;
|
||||
--vscode-gitlens-graphLane10Color: #2ece9d;
|
||||
--vscode-gitlens-graphChangesColumnAddedColor: #2da44e;
|
||||
--vscode-gitlens-graphChangesColumnDeletedColor: #cf222e;
|
||||
--vscode-gitlens-graphMinimapMarkerHeadColor: #04c814;
|
||||
--vscode-gitlens-graphScrollMarkerHeadColor: #04c814;
|
||||
--vscode-gitlens-graphMinimapMarkerUpstreamColor: #8cd993;
|
||||
--vscode-gitlens-graphScrollMarkerUpstreamColor: #8cd993;
|
||||
--vscode-gitlens-graphMinimapMarkerHighlightsColor: #f5cc00;
|
||||
--vscode-gitlens-graphScrollMarkerHighlightsColor: #f5cc00;
|
||||
--vscode-gitlens-graphMinimapMarkerLocalBranchesColor: #3095e8;
|
||||
--vscode-gitlens-graphScrollMarkerLocalBranchesColor: #3095e8;
|
||||
--vscode-gitlens-graphMinimapMarkerPullRequestsColor: #ff8f18;
|
||||
--vscode-gitlens-graphScrollMarkerPullRequestsColor: #ff8f18;
|
||||
--vscode-gitlens-graphMinimapMarkerRemoteBranchesColor: #67ace4;
|
||||
--vscode-gitlens-graphScrollMarkerRemoteBranchesColor: #67ace4;
|
||||
--vscode-gitlens-graphMinimapMarkerStashesColor: #e467e4;
|
||||
--vscode-gitlens-graphScrollMarkerStashesColor: #e467e4;
|
||||
--vscode-gitlens-graphMinimapMarkerTagsColor: #d2a379;
|
||||
--vscode-gitlens-graphScrollMarkerTagsColor: #d2a379;
|
||||
--vscode-gitlens-launchpadIndicatorMergeableColor: #42c954;
|
||||
--vscode-gitlens-launchpadIndicatorMergeableHoverColor: #42c954;
|
||||
--vscode-gitlens-launchpadIndicatorBlockedColor: #ad0707;
|
||||
--vscode-gitlens-launchpadIndicatorBlockedHoverColor: #ad0707;
|
||||
--vscode-gitlens-launchpadIndicatorAttentionColor: #cc9b15;
|
||||
--vscode-gitlens-launchpadIndicatorAttentionHoverColor: #cc9b15;
|
||||
--vscode-remoteHub-decorations-addedForegroundColor: #587c0c;
|
||||
--vscode-remoteHub-decorations-modifiedForegroundColor: #895503;
|
||||
--vscode-remoteHub-decorations-deletedForegroundColor: #ad0707;
|
||||
--vscode-remoteHub-decorations-submoduleForegroundColor: #1258a7;
|
||||
--vscode-remoteHub-decorations-conflictForegroundColor: #ad0707;
|
||||
--vscode-remoteHub-decorations-incomingAddedForegroundColor: #587c0c;
|
||||
--vscode-remoteHub-decorations-incomingModifiedForegroundColor: #895503;
|
||||
--vscode-remoteHub-decorations-incomingDeletedForegroundColor: #ad0707;
|
||||
--vscode-remoteHub-decorations-incomingRenamedForegroundColor: #007100;
|
||||
--vscode-remoteHub-decorations-possibleConflictForegroundColor: #855f00;
|
||||
--vscode-remoteHub-decorations-ignoredResourceForeground: #8e8e90;
|
||||
--vscode-remoteHub-decorations-workspaceRepositoriesView-hasUncommittedChangesForegroundColor: #895503;
|
||||
--vscode-rust_analyzer-syntaxTreeBorder: #b700ff;
|
||||
}
|
149
public/vscode.css
Normal file
149
public/vscode.css
Normal file
@ -0,0 +1,149 @@
|
||||
:root {
|
||||
--font-monospace-family: var(--vscode-editor-font-family);
|
||||
--font-monospace-weight: var(--vscode-editor-font-weight);
|
||||
--font-monospace-size: var(--vscode-editor-font-size);
|
||||
|
||||
--link-foreground: var(--vscode-textLink-foreground);
|
||||
--link-active: var(--vscode-textLink-activeForeground);
|
||||
|
||||
/* UI & Control */
|
||||
--input-active-background: var(--vscode-input-background);
|
||||
--input-active-border: var(--vscode-focusBorder);
|
||||
--input-active-foreground: var(--vscode-input-foreground);
|
||||
|
||||
--input-error-background: var(--vscode-inputValidation-errorBackground);
|
||||
--input-error-border: var(--vscode-inputValidation-errorBorder);
|
||||
--input-error-foreground: var(--vscode-inputValidation-errorForeground);
|
||||
|
||||
--input-foreground: var(--vscode-input-foreground);
|
||||
--input-background: var(--vscode-input-background);
|
||||
--input-border: var(--vscode-input-border);
|
||||
--input-hover: var(--vscode-input-background);
|
||||
--input-placeholder: var(--vscode-input-placeholderForeground);
|
||||
--input-radius: 0px;
|
||||
|
||||
--scrollbar-background: var(--vscode-scrollbarSlider-background);
|
||||
--scrollbar-hover: var(--vscode-scrollbarSlider-hoverBackground);
|
||||
--scrollbar-active: var(--vscode-scrollbarSlider-activeBackground);
|
||||
|
||||
/* Window */
|
||||
--title-bar: #1f1f1f;
|
||||
--title-color: #fff;
|
||||
--foreground: var(--vscode-editor-foreground);
|
||||
--background: var(--vscode-editor-background);
|
||||
--label: rgb(189, 189, 189);
|
||||
--shadow: #000;
|
||||
--border: var(--vscode-input-border);
|
||||
--window-button-hover: rgba(255,255,255,0.1);
|
||||
--window-button-active: rgba(255,255,255,0.2);
|
||||
--window-blur-background: rgba(0,0,0,0.25);
|
||||
|
||||
--window-title-foreground: var(--foreground);
|
||||
--window-background: var(--sidebar);
|
||||
--window-border: transparent;
|
||||
--window-radius: 0px;
|
||||
|
||||
/* Sidebar */
|
||||
--sidebar: var(--vscode-sideBar-background);
|
||||
--sidebar-border: var(--vscode-sideBar-border);
|
||||
--sidebar-min-width: 280px;
|
||||
|
||||
--sidebar-item-text: var(--vscode-list-inactiveSelectionForeground);
|
||||
--sidebar-item-border: var(--vscode-input-border);
|
||||
--sidebar-item-background: var(--sidebar);
|
||||
--sidebar-item-selected: var(--vscode-list-inactiveSelectionBackground);
|
||||
--sidebar-item-hover: var(--vscode-list-hoverBackground);
|
||||
--sidebar-item-max-height: 40px;
|
||||
--sidebar-item-radix-background: var(--vscode-breadcrumb-background);
|
||||
|
||||
--sidebar-group-text: var(--vscode-sideBarSectionHeader-foreground);
|
||||
--sidebar-group-border: var(--vscode-sideBarSectionHeader-border);
|
||||
--sidebar-group-background: var(--vscode-sideBarSectionHeader-background);
|
||||
|
||||
/* Labels */
|
||||
--signalSize-background: rgba(0,0,0,0.5);
|
||||
--signalSize-border: rgba(255,255,255,0.2);
|
||||
--signalSize-color: var(--foreground);
|
||||
|
||||
/* Color Picker */
|
||||
--picker-swatch-size: 15px;
|
||||
--picker-swatch-cols: 8;
|
||||
--picker-background: var(--vscode-breadcrumbPicker-background);
|
||||
--picker-border: var(--vscode-dropdown-border);
|
||||
|
||||
/* Search */
|
||||
--search-background: var(--vscode-quickInput-background);
|
||||
--search-border: var(--border);
|
||||
--search-panel-background: transparent;
|
||||
--search-panel-border: var(--vscode-pickerGroup-border);
|
||||
--search-panel-text: var(--vscode-quickInput-foreground);
|
||||
--search-label: var(--foreground);
|
||||
--search-selected-background: var(--vscode-list-inactiveSelectionBackground);
|
||||
|
||||
/* Properties */
|
||||
--properties-background: var(--vscode-breadcrumb-background);
|
||||
--properties-border: var(--border);
|
||||
|
||||
/* Navbar */
|
||||
--navBar-background: var(--sidebar);
|
||||
--navBar-height: 32px;
|
||||
--navBar-button: transparent;
|
||||
--navBar-button-text: var(--foreground);
|
||||
--navBar-group-background: var(--background);
|
||||
--navBar-preview-background: var(--vscode-scrollbarSlider-background);
|
||||
--navBar-slider-border: var(--foreground);
|
||||
|
||||
/* Buttons */
|
||||
--button: var(--vscode-button-background);
|
||||
--button-text: var(--vscode-button-foreground);
|
||||
--button-hover: var(--vscode-button-hoverBackground);
|
||||
--button-active: var(--vscode-button-hoverBackground);
|
||||
--button-disabled: var(--vscode-activityBar-background);
|
||||
--button-disabled-text: var(--vscode-activityBar-inactiveForeground);
|
||||
|
||||
/* Grid Lines */
|
||||
--grid-dash: 2;
|
||||
--grid-space: 4;
|
||||
--grid-line: var(--vscode-editorIndentGuide-background);
|
||||
--grid-tick: var(--vscode-editorIndentGuide-activeBackground);
|
||||
|
||||
/* Cursor */
|
||||
--cursor: var(--vscode-editorCursor-foreground);
|
||||
--cursor-ghost: rgba(255, 255, 255, 0.2);
|
||||
--cursor-width: 2;
|
||||
|
||||
/* X-Axis */
|
||||
--axis-height: 38px;
|
||||
--axis-line: var(--border);
|
||||
--axis-background: var(--vscode-sideBar-background);
|
||||
--axis-foreground: var(--foreground);
|
||||
|
||||
/* Signals */
|
||||
--signal-highlight: var(--vscode-list-inactiveSelectionBackground);
|
||||
|
||||
/* Colors */
|
||||
--accent: var(--vscode-button-background);
|
||||
--accent-dim: #234175;
|
||||
--accent-bright: #24c5f7;
|
||||
--accent-hover: var(--vscode-button-hoverBackground);
|
||||
|
||||
--color-red: #ff5252;
|
||||
--color-pink: #ff4081;
|
||||
--color-purple: #e040fb;
|
||||
--color-deepPurple: #7c4dff;
|
||||
--color-indigo: #536dfe;
|
||||
--color-blue: #448aff;
|
||||
--color-lightBlue: #40c4ff;
|
||||
--color-cyan: #18ffff;
|
||||
--color-teal: #64ffda;
|
||||
--color-green: #69f0ae;
|
||||
--color-lightGreen: #b2ff59;
|
||||
--color-lime: #eeff41;
|
||||
--color-yellow: #ffff00;
|
||||
--color-amber: #ffd740;
|
||||
--color-orange: #ffab40;
|
||||
--color-deepOrange: #ff6e40;
|
||||
|
||||
/* Settings */
|
||||
--settings-action-background: var(--background);
|
||||
}
|
40
scripts/update_icon.py
Normal file
40
scripts/update_icon.py
Normal file
@ -0,0 +1,40 @@
|
||||
import requests as r
|
||||
import os
|
||||
import shutil
|
||||
import zipfile
|
||||
|
||||
# 下载 压缩包
|
||||
headers = {
|
||||
'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/127.0.0.0 Safari/537.36',
|
||||
'Cookie': 'cna=FeNcHjgPWA8CAXU/P9lD8IsF; EGG_SESS_ICONFONT=Hu68kBY7XO7C6Udp3T99M1asKmUZ0gxjps8xjTrjx4ZtNCIR_nFu9Li15nxoPAWLmGlcEMN2KEQyAvgBfASR3cSsmd2lhqg89lUmApzbWgBgCWjMwMzjawMqh2KNT8kCICxit3iWC7YLdUuCdUfXg_cGkRjPNvDohqyeHF27gTb5CloBSvLjqN45PcUvcUig; ctoken=Ku-GfnHTFQU6ObMjjX4rrwYn; u=10114852; u.sig=mv5vi-TPPlhvQJi2PMIC4VoPpD03Wc9UykMTMiG6ElA; xlly_s=1; tfstk=fSrIwBNqyBACtg2sZ2BZ5BUbpIn7PWsVNLM8n8KeeDnpwQex_JrEY887N5wxykyrvui717NU8DUUPYN4p7glKbl-N7y88OSV0J2nq0K5giSVfSIC9W9pv3B-6YMoT58eCJ2nqdvwwZzTKU6xnQBS27ntXvkj2HHKwO9tnfKKeHHJ6OMo6bn-9v39XxMD9e3Kpbdy1Y7IeJ69Kr6y7I-gLftJcKDKJZyez3-yav0nMVh62Arsd2GYpk3XwyMTblgq7L5ZX-4a9AifbenYCzFbk7b2SDw8J70_t1Ys_PE3eb3wenysPXaTvV9J2RmsN447O6Tn9yPsoA39FiDagfe3vP6k6JFqODHt7iBbB4UaxqqF6HiYoJoUy7b2SDw8JcszunlfpXTWCqxSCjW1CUYrE4jk1CVx8l3KIvIVCOO6r2HiCjW1CUYoJADLuO661Uf..; isg=BCwsfWsQZki1QXEWw0jCCc4h_Qpe5dCP-aVamIZsF1d6kc6br_ZyHmFnsVkpGQjn',
|
||||
'Pragma': 'no-cache',
|
||||
'sec-fetch-mode': 'navigate'
|
||||
}
|
||||
|
||||
url = 'https://www.iconfont.cn/api/project/download.zip?spm=a313x.manage_type_myprojects.i1.d7543c303.125e3a81q6VMOU&pid=4440655&ctoken=Ku-GfnHTFQU6ObMjjX4rrwYn'
|
||||
res = r.get(url, headers=headers)
|
||||
|
||||
if res.status_code:
|
||||
with open('./scripts/tmp.zip', 'wb') as fp:
|
||||
fp.write(res.content)
|
||||
|
||||
# 解压文件
|
||||
with zipfile.ZipFile('./scripts/tmp.zip', 'r') as zipf:
|
||||
zipf.extractall('./scripts/tmp')
|
||||
|
||||
# 将文件搬运至工作区,我的 css 全放在 public 下面了,你的视情况而定
|
||||
for parent, _, files in os.walk('./scripts/tmp'):
|
||||
for file in files:
|
||||
filepath = os.path.join(parent, file)
|
||||
if file.startswith('demo'):
|
||||
continue
|
||||
if file.endswith('.css'):
|
||||
content = open(filepath, 'r', encoding='utf-8').read().replace('font-size: 16px;', '')
|
||||
open(filepath, 'w', encoding='utf-8').write(content)
|
||||
shutil.move(filepath, os.path.join('./public', file))
|
||||
elif file.endswith('.woff2'):
|
||||
shutil.move(filepath, os.path.join('./public', file))
|
||||
|
||||
# 删除压缩包和解压区域
|
||||
os.remove('./scripts/tmp.zip')
|
||||
shutil.rmtree('./scripts/tmp')
|
19
scripts/vscode-package.py
Normal file
19
scripts/vscode-package.py
Normal file
@ -0,0 +1,19 @@
|
||||
import os
|
||||
|
||||
exclude_files = [
|
||||
'onedark.css',
|
||||
'onelight.css',
|
||||
'default-dark.css',
|
||||
'default-light.css'
|
||||
]
|
||||
|
||||
os.system('npm run build')
|
||||
for file in os.listdir('dist'):
|
||||
if file in exclude_files:
|
||||
os.remove('dist/' + file)
|
||||
|
||||
with open('./dist/index.html', 'r', encoding='utf-8') as fp:
|
||||
html = fp.read()
|
||||
|
||||
with open('./dist/index.html', 'w', encoding='utf-8') as fp:
|
||||
fp.write(html)
|
28
src/App.vue
28
src/App.vue
@ -1,26 +1,22 @@
|
||||
<template>
|
||||
<img alt="Vue logo" src="./assets/logo.png">
|
||||
<HelloWorld msg="Welcome to Your Vue.js App"/>
|
||||
<img alt="Vue logo" src="./assets/logo.png">
|
||||
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import HelloWorld from './components/HelloWorld.vue'
|
||||
<script setup>
|
||||
import { useI18n } from 'vue-i18n';
|
||||
|
||||
const { t } = useI18n();
|
||||
|
||||
export default {
|
||||
name: 'App',
|
||||
components: {
|
||||
HelloWorld
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
<style>
|
||||
#app {
|
||||
font-family: Avenir, Helvetica, Arial, sans-serif;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
text-align: center;
|
||||
color: #2c3e50;
|
||||
margin-top: 60px;
|
||||
font-family: Avenir, Helvetica, Arial, sans-serif;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
text-align: center;
|
||||
color: #2c3e50;
|
||||
margin-top: 60px;
|
||||
}
|
||||
</style>
|
||||
|
3
src/i18n/ar.json
Normal file
3
src/i18n/ar.json
Normal file
@ -0,0 +1,3 @@
|
||||
{
|
||||
"info.common.hello-world": "مرحبا بالعالم"
|
||||
}
|
3
src/i18n/de.json
Normal file
3
src/i18n/de.json
Normal file
@ -0,0 +1,3 @@
|
||||
{
|
||||
"info.common.hello-world": "Hallo Welt"
|
||||
}
|
3
src/i18n/en.json
Normal file
3
src/i18n/en.json
Normal file
@ -0,0 +1,3 @@
|
||||
{
|
||||
"info.common.hello-world": "hello world"
|
||||
}
|
3
src/i18n/fr.json
Normal file
3
src/i18n/fr.json
Normal file
@ -0,0 +1,3 @@
|
||||
{
|
||||
"info.common.hello-world": "bonjour le monde"
|
||||
}
|
20
src/i18n/index.js
Normal file
20
src/i18n/index.js
Normal file
@ -0,0 +1,20 @@
|
||||
import { createI18n } from 'vue-i18n';
|
||||
|
||||
import en from './en.json';
|
||||
import zh from './zh-cn.json';
|
||||
import zhTw from './zh-tw.json';
|
||||
import ja from './ja.json';
|
||||
import de from './de.json';
|
||||
import ko from './ko.json';
|
||||
import ru from './ru.json';
|
||||
import fr from './fr.json';
|
||||
import ar from './ar.json';
|
||||
|
||||
const i18n = createI18n({
|
||||
legacy: false,
|
||||
locale: 'zh',
|
||||
warnHtmlMessage: false,
|
||||
messages: { en, zh, zhTw, ja, de, ko, ru, fr, ar }
|
||||
});
|
||||
|
||||
export default i18n;
|
3
src/i18n/ja.json
Normal file
3
src/i18n/ja.json
Normal file
@ -0,0 +1,3 @@
|
||||
{
|
||||
"info.common.hello-world": "こんにちは世界"
|
||||
}
|
3
src/i18n/ko.json
Normal file
3
src/i18n/ko.json
Normal file
@ -0,0 +1,3 @@
|
||||
{
|
||||
"info.common.hello-world": "안녕하세요 세계"
|
||||
}
|
3
src/i18n/ru.json
Normal file
3
src/i18n/ru.json
Normal file
@ -0,0 +1,3 @@
|
||||
{
|
||||
"info.common.hello-world": "привет мир"
|
||||
}
|
3
src/i18n/zh-cn.json
Normal file
3
src/i18n/zh-cn.json
Normal file
@ -0,0 +1,3 @@
|
||||
{
|
||||
"info.common.hello-world": "hello world"
|
||||
}
|
3
src/i18n/zh-tw.json
Normal file
3
src/i18n/zh-tw.json
Normal file
@ -0,0 +1,3 @@
|
||||
{
|
||||
"info.common.hello-world": "你好,世界"
|
||||
}
|
12
src/main.js
12
src/main.js
@ -1,4 +1,10 @@
|
||||
import { createApp } from 'vue'
|
||||
import App from './App.vue'
|
||||
import { createApp } from 'vue';
|
||||
import App from './App.vue';
|
||||
import i18n from './i18n';
|
||||
import ElementPlus from 'element-plus'
|
||||
import 'element-plus/dist/index.css'
|
||||
|
||||
createApp(App).mount('#app')
|
||||
createApp(App)
|
||||
.use(i18n)
|
||||
.use(ElementPlus)
|
||||
.mount('#app')
|
Loading…
x
Reference in New Issue
Block a user