first commit
This commit is contained in:
commit
019416834b
10 changed files with 981 additions and 0 deletions
9
LICENSE
Normal file
9
LICENSE
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
|
||||||
|
|
||||||
|
Copyright 2025 Charlotte Croce
|
||||||
|
|
||||||
|
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
||||||
|
|
||||||
|
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
||||||
|
|
||||||
|
THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
20
README.md
Normal file
20
README.md
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
# Fruitbasket Theme
|
||||||
|
|
||||||
|
A berry-inspired theme suite for Visual Studio Code
|
||||||
|
|
||||||
|
## Preview
|
||||||
|
|
||||||
|

|
||||||
|

|
||||||
|
|
||||||
|
## Installation
|
||||||
|
|
||||||
|
1. Open **Extensions** sidebar panel in VS Code (`Ctrl+Shift+X` or `Cmd+Shift+X`)
|
||||||
|
2. Search for `Fruitbasket Theme`
|
||||||
|
3. Click **Install**
|
||||||
|
4. Select the theme through **File > Preferences > Color Theme** (or **Code > Preferences > Color Theme** on Mac)
|
||||||
|
5. Choose either **Fruitbasket Dark** or **Fruitbasket Light**
|
||||||
|
|
||||||
|
## License
|
||||||
|
|
||||||
|
This theme is released under the [MIT License](LICENSE)
|
BIN
fruitbasket-theme-1.0.0.vsix
Normal file
BIN
fruitbasket-theme-1.0.0.vsix
Normal file
Binary file not shown.
BIN
icon.png
Normal file
BIN
icon.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 169 KiB |
BIN
images/fruitbasket-dark-preview.png
Normal file
BIN
images/fruitbasket-dark-preview.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 121 KiB |
BIN
images/fruitbasket-light-preview.png
Normal file
BIN
images/fruitbasket-light-preview.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 122 KiB |
45
package.json
Normal file
45
package.json
Normal file
|
@ -0,0 +1,45 @@
|
||||||
|
{
|
||||||
|
"name": "fruitbasket-theme",
|
||||||
|
"displayName": "Fruitbasket Theme",
|
||||||
|
"description": "Berry-inspired light and dark themes for VSCode",
|
||||||
|
"version": "1.0.0",
|
||||||
|
"publisher": "charlotte200",
|
||||||
|
"repository": {
|
||||||
|
"type": "git",
|
||||||
|
"url": "https://coceberg.org/charlottecroce/fruitbasket"
|
||||||
|
},
|
||||||
|
"engines": {
|
||||||
|
"vscode": "^1.50.0"
|
||||||
|
},
|
||||||
|
"categories": [
|
||||||
|
"Themes"
|
||||||
|
],
|
||||||
|
"keywords": [
|
||||||
|
"theme",
|
||||||
|
"dark theme",
|
||||||
|
"light theme",
|
||||||
|
"pink",
|
||||||
|
"berry",
|
||||||
|
"fruit"
|
||||||
|
],
|
||||||
|
"icon": "icon.png",
|
||||||
|
"galleryBanner": {
|
||||||
|
"color": "#3D1632",
|
||||||
|
"theme": "dark"
|
||||||
|
},
|
||||||
|
"contributes": {
|
||||||
|
"themes": [
|
||||||
|
{
|
||||||
|
"label": "Fruitbasket Dark",
|
||||||
|
"uiTheme": "vs-dark",
|
||||||
|
"path": "./themes/fruitbasket-dark.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"label": "Fruitbasket Light",
|
||||||
|
"uiTheme": "vs",
|
||||||
|
"path": "./themes/fruitbasket-light.json"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"license": "MIT"
|
||||||
|
}
|
25
preview.py
Normal file
25
preview.py
Normal file
|
@ -0,0 +1,25 @@
|
||||||
|
#!/usr/bin/env python3
|
||||||
|
|
||||||
|
import math, os, sys # standard libraries
|
||||||
|
|
||||||
|
# Constants
|
||||||
|
PI = 3.14159
|
||||||
|
GREETING = "Hello, World!"
|
||||||
|
|
||||||
|
class ThemePreview:
|
||||||
|
def __init__(self, name: str):
|
||||||
|
self.name = name
|
||||||
|
self.colors = {"background": "#000000", "text": "#FFFFFF"}
|
||||||
|
|
||||||
|
def display(self):
|
||||||
|
print(f"Previewing theme: {self.name}")
|
||||||
|
for key, value in self.colors.items():
|
||||||
|
print(f"{key.capitalize()}: {value}")
|
||||||
|
|
||||||
|
@staticmethod
|
||||||
|
def helper(x: int) -> bool:
|
||||||
|
return x in range(10) and not x % 2
|
||||||
|
|
||||||
|
if __name__ == "__main__":
|
||||||
|
tp = ThemePreview("Fruitbasket")
|
||||||
|
tp.display()
|
441
themes/fruitbasket-dark.json
Normal file
441
themes/fruitbasket-dark.json
Normal file
|
@ -0,0 +1,441 @@
|
||||||
|
{
|
||||||
|
"name": "fruitbasket-dark",
|
||||||
|
"type": "dark",
|
||||||
|
"colors": {
|
||||||
|
"editor.background": "#1E1A1D",
|
||||||
|
"editor.foreground": "#E5E5E5",
|
||||||
|
"activityBar.background": "#3D1632",
|
||||||
|
"activityBar.foreground": "#FFC2D9",
|
||||||
|
"activityBar.inactiveForeground": "#FFC2D980",
|
||||||
|
"activityBarBadge.background": "#6A9A6C",
|
||||||
|
"activityBarBadge.foreground": "#FFFFFF",
|
||||||
|
|
||||||
|
"sideBar.background": "#2A1F24",
|
||||||
|
"sideBar.foreground": "#E5E5E5",
|
||||||
|
"sideBarTitle.foreground": "#DC548F",
|
||||||
|
"sideBarSectionHeader.background": "#3D1632",
|
||||||
|
"sideBarSectionHeader.foreground": "#FFC2D9",
|
||||||
|
|
||||||
|
"list.activeSelectionBackground": "#7A3154",
|
||||||
|
"list.activeSelectionForeground": "#FFC2D9",
|
||||||
|
"list.hoverBackground": "#3D1632",
|
||||||
|
"list.hoverForeground": "#FFC2D9",
|
||||||
|
"list.inactiveSelectionBackground": "#3D1632",
|
||||||
|
"list.inactiveSelectionForeground": "#E5E5E5",
|
||||||
|
"list.dropBackground": "#502F41",
|
||||||
|
"list.highlightForeground": "#DC548F",
|
||||||
|
"list.focusBackground": "#502F41",
|
||||||
|
"list.focusForeground": "#FFC2D9",
|
||||||
|
|
||||||
|
"statusBar.background": "#3D1632",
|
||||||
|
"statusBar.foreground": "#FFC2D9",
|
||||||
|
"statusBar.debuggingBackground": "#D23B80",
|
||||||
|
"statusBar.noFolderBackground": "#306932",
|
||||||
|
"statusBarItem.remoteBackground": "#6A9A6C",
|
||||||
|
"statusBarItem.remoteForeground": "#FFFFFF",
|
||||||
|
"statusBarItem.activeBackground": "#DC548F50",
|
||||||
|
"statusBarItem.hoverBackground": "#DC548F30",
|
||||||
|
|
||||||
|
"titleBar.activeBackground": "#3D1632",
|
||||||
|
"titleBar.activeForeground": "#FFC2D9",
|
||||||
|
"titleBar.inactiveBackground": "#2A1F24",
|
||||||
|
"titleBar.inactiveForeground": "#FFC2D980",
|
||||||
|
|
||||||
|
"menubar.selectionBackground": "#502F41",
|
||||||
|
"menubar.selectionForeground": "#FFC2D9",
|
||||||
|
"menu.background": "#2A1F24",
|
||||||
|
"menu.foreground": "#E5E5E5",
|
||||||
|
"menu.selectionBackground": "#502F41",
|
||||||
|
"menu.selectionForeground": "#FFC2D9",
|
||||||
|
"menu.separatorBackground": "#DC548F50",
|
||||||
|
|
||||||
|
"button.background": "#DC548F",
|
||||||
|
"button.foreground": "#FFF0F5",
|
||||||
|
"button.hoverBackground": "#D23B80",
|
||||||
|
"button.secondaryBackground": "#6A9A6C",
|
||||||
|
"button.secondaryForeground": "#FFFFFF",
|
||||||
|
"button.secondaryHoverBackground": "#518053",
|
||||||
|
|
||||||
|
"input.background": "#2A1F24",
|
||||||
|
"input.foreground": "#E5E5E5",
|
||||||
|
"input.placeholderForeground": "#8AB68C",
|
||||||
|
"input.border": "#3D1632",
|
||||||
|
"inputOption.activeBackground": "#DC548F50",
|
||||||
|
"inputOption.activeBorder": "#DC548F00",
|
||||||
|
"inputOption.activeForeground": "#FFFFFF",
|
||||||
|
|
||||||
|
"badge.background": "#6A9A6C",
|
||||||
|
"badge.foreground": "#FFFFFF",
|
||||||
|
|
||||||
|
"progressBar.background": "#DC548F",
|
||||||
|
|
||||||
|
"tab.activeBackground": "#1E1A1D",
|
||||||
|
"tab.activeForeground": "#DC548F",
|
||||||
|
"tab.inactiveBackground": "#2A1F24",
|
||||||
|
"tab.inactiveForeground": "#E5E5E5",
|
||||||
|
"tab.activeBorder": "#DC548F",
|
||||||
|
"tab.activeBorderTop": "#00000000",
|
||||||
|
"tab.unfocusedActiveBorder": "#DC548F80",
|
||||||
|
"tab.border": "#2A1F24",
|
||||||
|
|
||||||
|
"editorGroupHeader.tabsBackground": "#2A1F24",
|
||||||
|
"editorGroup.border": "#3D1632",
|
||||||
|
"editorGroup.dropBackground": "#DC548F20",
|
||||||
|
|
||||||
|
"editor.selectionBackground": "#502F41",
|
||||||
|
"editor.selectionHighlightBackground": "#6A9A6C40",
|
||||||
|
"editor.wordHighlightBackground": "#D4E6D580",
|
||||||
|
"editor.findMatchBackground": "#D23B80",
|
||||||
|
"editor.findMatchHighlightBackground": "#DC548F40",
|
||||||
|
"editor.lineHighlightBackground": "#DC548F10",
|
||||||
|
"editor.lineHighlightBorder": "#DC548F00",
|
||||||
|
|
||||||
|
"editorCursor.foreground": "#DC548F",
|
||||||
|
"editorLineNumber.foreground": "#7A7A7A",
|
||||||
|
"editorLineNumber.activeForeground": "#DC548F",
|
||||||
|
|
||||||
|
"editorWidget.background": "#2A1F24",
|
||||||
|
"editorWidget.border": "#3D1632",
|
||||||
|
"editorSuggestWidget.background": "#2A1F24",
|
||||||
|
"editorSuggestWidget.border": "#3D1632",
|
||||||
|
"editorSuggestWidget.selectedBackground": "#502F41",
|
||||||
|
"editorSuggestWidget.highlightForeground": "#DC548F",
|
||||||
|
|
||||||
|
"panel.background": "#2A1F24",
|
||||||
|
"panel.border": "#3D1632",
|
||||||
|
"panelTitle.activeBorder": "#DC548F",
|
||||||
|
"panelTitle.activeForeground": "#DC548F",
|
||||||
|
"panelTitle.inactiveForeground": "#E5E5E5",
|
||||||
|
|
||||||
|
"terminal.background": "#1E1A1D",
|
||||||
|
"terminal.foreground": "#E5E5E5",
|
||||||
|
"terminal.ansiBlack": "#2A1F24",
|
||||||
|
"terminal.ansiRed": "#D23B80",
|
||||||
|
"terminal.ansiGreen": "#6A9A6C",
|
||||||
|
"terminal.ansiYellow": "#E0BD6C",
|
||||||
|
"terminal.ansiBlue": "#8CAFF0",
|
||||||
|
"terminal.ansiMagenta": "#DC548F",
|
||||||
|
"terminal.ansiCyan": "#4DACB8",
|
||||||
|
"terminal.ansiWhite": "#E5E5E5",
|
||||||
|
"terminal.ansiBrightBlack": "#7A7A7A",
|
||||||
|
"terminal.ansiBrightRed": "#FF8AC8",
|
||||||
|
"terminal.ansiBrightGreen": "#8AB68C",
|
||||||
|
"terminal.ansiBrightYellow": "#F0CB7A",
|
||||||
|
"terminal.ansiBrightBlue": "#7A9FE8",
|
||||||
|
"terminal.ansiBrightMagenta": "#FFB8D9",
|
||||||
|
"terminal.ansiBrightCyan": "#7ACAD5",
|
||||||
|
"terminal.ansiBrightWhite": "#FFFFFF",
|
||||||
|
"terminal.selectionBackground": "#502F41",
|
||||||
|
|
||||||
|
"notificationCenter.border": "#3D1632",
|
||||||
|
"notifications.background": "#2A1F24",
|
||||||
|
"notifications.border": "#3D1632",
|
||||||
|
"notificationLink.foreground": "#DC548F",
|
||||||
|
"notificationsErrorIcon.foreground": "#D23B80",
|
||||||
|
"notificationsWarningIcon.foreground": "#E0BD6C",
|
||||||
|
"notificationsInfoIcon.foreground": "#8CAFF0",
|
||||||
|
|
||||||
|
"pickerGroup.border": "#3D1632",
|
||||||
|
"pickerGroup.foreground": "#DC548F",
|
||||||
|
|
||||||
|
"gitDecoration.modifiedResourceForeground": "#8CAFF0",
|
||||||
|
"gitDecoration.addedResourceForeground": "#6A9A6C",
|
||||||
|
"gitDecoration.deletedResourceForeground": "#D23B80",
|
||||||
|
"gitDecoration.untrackedResourceForeground": "#8AB68C",
|
||||||
|
"gitDecoration.ignoredResourceForeground": "#7A7A7A",
|
||||||
|
"gitDecoration.conflictingResourceForeground": "#E0BD6C",
|
||||||
|
|
||||||
|
"breadcrumb.background": "#1E1A1D",
|
||||||
|
"breadcrumb.foreground": "#E5E5E5",
|
||||||
|
"breadcrumb.focusForeground": "#FFC2D9",
|
||||||
|
"breadcrumb.activeSelectionForeground": "#DC548F",
|
||||||
|
|
||||||
|
"scrollbarSlider.background": "#DC548F40",
|
||||||
|
"scrollbarSlider.hoverBackground": "#DC548F60",
|
||||||
|
"scrollbarSlider.activeBackground": "#DC548F80",
|
||||||
|
|
||||||
|
"settings.headerForeground": "#DC548F",
|
||||||
|
"settings.modifiedItemIndicator": "#DC548F",
|
||||||
|
|
||||||
|
"peekView.border": "#DC548F",
|
||||||
|
"peekViewEditor.background": "#1E1A1D",
|
||||||
|
"peekViewEditor.matchHighlightBackground": "#502F41",
|
||||||
|
"peekViewResult.background": "#2A1F24",
|
||||||
|
"peekViewResult.matchHighlightBackground": "#DC548F40",
|
||||||
|
"peekViewResult.selectionBackground": "#502F41",
|
||||||
|
"peekViewTitle.background": "#3D1632",
|
||||||
|
"peekViewTitleLabel.foreground": "#FFC2D9"
|
||||||
|
},
|
||||||
|
"tokenColors": [
|
||||||
|
{
|
||||||
|
"name": "Comments",
|
||||||
|
"scope": ["comment", "punctuation.definition.comment"],
|
||||||
|
"settings": {
|
||||||
|
"fontStyle": "italic",
|
||||||
|
"foreground": "#678D69"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "String",
|
||||||
|
"scope": ["string", "punctuation.definition.string"],
|
||||||
|
"settings": {
|
||||||
|
"foreground": "#8AB68C"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Keywords",
|
||||||
|
"scope": ["keyword", "storage.type", "storage.modifier"],
|
||||||
|
"settings": {
|
||||||
|
"foreground": "#DC548F"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Functions",
|
||||||
|
"scope": ["entity.name.function", "support.function"],
|
||||||
|
"settings": {
|
||||||
|
"foreground": "#8CAFF0"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Classes, Types",
|
||||||
|
"scope": ["entity.name.type", "entity.name.class", "entity.name.namespace", "entity.name.scope-resolution"],
|
||||||
|
"settings": {
|
||||||
|
"foreground": "#E0BD6C"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Variables",
|
||||||
|
"scope": ["variable", "entity.name.variable"],
|
||||||
|
"settings": {
|
||||||
|
"foreground": "#E5E5E5"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Constants",
|
||||||
|
"scope": ["variable.other.constant", "support.constant"],
|
||||||
|
"settings": {
|
||||||
|
"foreground": "#FFB8D9"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Numbers",
|
||||||
|
"scope": ["constant.numeric"],
|
||||||
|
"settings": {
|
||||||
|
"foreground": "#FFB8D9"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Punctuation",
|
||||||
|
"scope": ["punctuation"],
|
||||||
|
"settings": {
|
||||||
|
"foreground": "#AAAAAA"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Brackets",
|
||||||
|
"scope": ["meta.brace.square", "punctuation.definition.bracket"],
|
||||||
|
"settings": {
|
||||||
|
"foreground": "#7ACAD5"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Braces",
|
||||||
|
"scope": ["meta.brace.curly", "punctuation.definition.block"],
|
||||||
|
"settings": {
|
||||||
|
"foreground": "#F0CB7A"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Parentheses",
|
||||||
|
"scope": ["meta.brace.round", "punctuation.definition.parameters", "punctuation.definition.group"],
|
||||||
|
"settings": {
|
||||||
|
"foreground": "#FF8AC8"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Tags",
|
||||||
|
"scope": ["entity.name.tag", "punctuation.definition.tag"],
|
||||||
|
"settings": {
|
||||||
|
"foreground": "#DC548F"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Attributes",
|
||||||
|
"scope": ["entity.other.attribute-name"],
|
||||||
|
"settings": {
|
||||||
|
"foreground": "#E0BD6C"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Markup Headings",
|
||||||
|
"scope": ["markup.heading"],
|
||||||
|
"settings": {
|
||||||
|
"foreground": "#DC548F",
|
||||||
|
"fontStyle": "bold"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Markup Bold",
|
||||||
|
"scope": ["markup.bold"],
|
||||||
|
"settings": {
|
||||||
|
"foreground": "#E5E5E5",
|
||||||
|
"fontStyle": "bold"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Markup Italic",
|
||||||
|
"scope": ["markup.italic"],
|
||||||
|
"settings": {
|
||||||
|
"foreground": "#E5E5E5",
|
||||||
|
"fontStyle": "italic"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Markup Links",
|
||||||
|
"scope": ["markup.underline.link"],
|
||||||
|
"settings": {
|
||||||
|
"foreground": "#8CAFF0"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Regular Expressions",
|
||||||
|
"scope": ["string.regexp"],
|
||||||
|
"settings": {
|
||||||
|
"foreground": "#4DACB8"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Escape Characters",
|
||||||
|
"scope": ["constant.character.escape"],
|
||||||
|
"settings": {
|
||||||
|
"foreground": "#4DACB8"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "JSON Property Names",
|
||||||
|
"scope": ["support.type.property-name.json"],
|
||||||
|
"settings": {
|
||||||
|
"foreground": "#DC548F"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "JSON String",
|
||||||
|
"scope": ["string.quoted.double.json"],
|
||||||
|
"settings": {
|
||||||
|
"foreground": "#8AB68C"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "CSS Properties",
|
||||||
|
"scope": ["support.type.property-name.css"],
|
||||||
|
"settings": {
|
||||||
|
"foreground": "#FFB8D9"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "CSS Property Values",
|
||||||
|
"scope": ["support.constant.property-value.css"],
|
||||||
|
"settings": {
|
||||||
|
"foreground": "#8AB68C"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "CSS Selectors",
|
||||||
|
"scope": ["entity.name.tag.css", "entity.other.attribute-name.class.css"],
|
||||||
|
"settings": {
|
||||||
|
"foreground": "#DC548F"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "HTML Tags",
|
||||||
|
"scope": ["entity.name.tag.html"],
|
||||||
|
"settings": {
|
||||||
|
"foreground": "#DC548F"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "HTML Attributes",
|
||||||
|
"scope": ["entity.other.attribute-name.html"],
|
||||||
|
"settings": {
|
||||||
|
"foreground": "#E0BD6C"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "JavaScript Variables",
|
||||||
|
"scope": ["variable.other.readwrite.js", "variable.other.object.js"],
|
||||||
|
"settings": {
|
||||||
|
"foreground": "#E5E5E5"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "TypeScript Types",
|
||||||
|
"scope": ["support.type.primitive.ts", "support.type.builtin.ts"],
|
||||||
|
"settings": {
|
||||||
|
"foreground": "#E0BD6C"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Python Function Parameter",
|
||||||
|
"scope": ["variable.parameter.function.language.python"],
|
||||||
|
"settings": {
|
||||||
|
"foreground": "#E0BD6C"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Python Function Call",
|
||||||
|
"scope": ["meta.function-call.python"],
|
||||||
|
"settings": {
|
||||||
|
"foreground": "#8CAFF0"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Markdown URL",
|
||||||
|
"scope": ["markup.underline.link.markdown"],
|
||||||
|
"settings": {
|
||||||
|
"foreground": "#8CAFF0"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Markdown Headings",
|
||||||
|
"scope": ["markup.heading.markdown"],
|
||||||
|
"settings": {
|
||||||
|
"foreground": "#DC548F"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Markdown Bold",
|
||||||
|
"scope": ["markup.bold.markdown"],
|
||||||
|
"settings": {
|
||||||
|
"foreground": "#FFB8D9",
|
||||||
|
"fontStyle": "bold"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Markdown Italic",
|
||||||
|
"scope": ["markup.italic.markdown"],
|
||||||
|
"settings": {
|
||||||
|
"foreground": "#FFB8D9",
|
||||||
|
"fontStyle": "italic"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Markdown Code",
|
||||||
|
"scope": ["markup.inline.raw.markdown"],
|
||||||
|
"settings": {
|
||||||
|
"foreground": "#8AB68C"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"semanticHighlighting": true,
|
||||||
|
"semanticTokenColors": {
|
||||||
|
"enumMember": {
|
||||||
|
"foreground": "#4DACB8"
|
||||||
|
},
|
||||||
|
"variable.constant": {
|
||||||
|
"foreground": "#FFB8D9"
|
||||||
|
},
|
||||||
|
"variable.defaultLibrary": {
|
||||||
|
"foreground": "#E0BD6C"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
441
themes/fruitbasket-light.json
Normal file
441
themes/fruitbasket-light.json
Normal file
|
@ -0,0 +1,441 @@
|
||||||
|
{
|
||||||
|
"name": "fruitbasket-light",
|
||||||
|
"type": "light",
|
||||||
|
"colors": {
|
||||||
|
"editor.background": "#FEF9FB",
|
||||||
|
"editor.foreground": "#2A1F24",
|
||||||
|
"activityBar.background": "#FFDCE9",
|
||||||
|
"activityBar.foreground": "#C01C65",
|
||||||
|
"activityBar.inactiveForeground": "#D23B80A0",
|
||||||
|
"activityBarBadge.background": "#518053",
|
||||||
|
"activityBarBadge.foreground": "#FFFFFF",
|
||||||
|
|
||||||
|
"sideBar.background": "#F9EDF2",
|
||||||
|
"sideBar.foreground": "#2A1F24",
|
||||||
|
"sideBarTitle.foreground": "#C01C65",
|
||||||
|
"sideBarSectionHeader.background": "#FFDCE9",
|
||||||
|
"sideBarSectionHeader.foreground": "#C01C65",
|
||||||
|
|
||||||
|
"list.activeSelectionBackground": "#FF9CC7",
|
||||||
|
"list.activeSelectionForeground": "#C01C65",
|
||||||
|
"list.hoverBackground": "#FFD6E7",
|
||||||
|
"list.hoverForeground": "#C01C65",
|
||||||
|
"list.inactiveSelectionBackground": "#FFD6E7",
|
||||||
|
"list.inactiveSelectionForeground": "#2A1F24",
|
||||||
|
"list.dropBackground": "#FF9CC780",
|
||||||
|
"list.highlightForeground": "#C01C65",
|
||||||
|
"list.focusBackground": "#FF9CC780",
|
||||||
|
"list.focusForeground": "#C01C65",
|
||||||
|
|
||||||
|
"statusBar.background": "#FFDCE9",
|
||||||
|
"statusBar.foreground": "#C01C65",
|
||||||
|
"statusBar.debuggingBackground": "#C01C65",
|
||||||
|
"statusBar.noFolderBackground": "#D4E6D5",
|
||||||
|
"statusBarItem.remoteBackground": "#518053",
|
||||||
|
"statusBarItem.remoteForeground": "#FFFFFF",
|
||||||
|
"statusBarItem.activeBackground": "#C01C6530",
|
||||||
|
"statusBarItem.hoverBackground": "#C01C6520",
|
||||||
|
|
||||||
|
"titleBar.activeBackground": "#FFDCE9",
|
||||||
|
"titleBar.activeForeground": "#C01C65",
|
||||||
|
"titleBar.inactiveBackground": "#F9EDF2",
|
||||||
|
"titleBar.inactiveForeground": "#C01C65A0",
|
||||||
|
|
||||||
|
"menubar.selectionBackground": "#FFD6E7",
|
||||||
|
"menubar.selectionForeground": "#C01C65",
|
||||||
|
"menu.background": "#F9EDF2",
|
||||||
|
"menu.foreground": "#2A1F24",
|
||||||
|
"menu.selectionBackground": "#FF9CC780",
|
||||||
|
"menu.selectionForeground": "#C01C65",
|
||||||
|
"menu.separatorBackground": "#C01C6540",
|
||||||
|
|
||||||
|
"button.background": "#DC548F",
|
||||||
|
"button.foreground": "#FFFFFF",
|
||||||
|
"button.hoverBackground": "#C01C65",
|
||||||
|
"button.secondaryBackground": "#518053",
|
||||||
|
"button.secondaryForeground": "#FFFFFF",
|
||||||
|
"button.secondaryHoverBackground": "#3F6841",
|
||||||
|
|
||||||
|
"input.background": "#FFFFFF",
|
||||||
|
"input.foreground": "#2A1F24",
|
||||||
|
"input.placeholderForeground": "#679269",
|
||||||
|
"input.border": "#FFDCE9",
|
||||||
|
"inputOption.activeBackground": "#C01C6540",
|
||||||
|
"inputOption.activeBorder": "#C01C6500",
|
||||||
|
"inputOption.activeForeground": "#2A1F24",
|
||||||
|
|
||||||
|
"badge.background": "#518053",
|
||||||
|
"badge.foreground": "#FFFFFF",
|
||||||
|
|
||||||
|
"progressBar.background": "#DC548F",
|
||||||
|
|
||||||
|
"tab.activeBackground": "#FEF9FB",
|
||||||
|
"tab.activeForeground": "#C01C65",
|
||||||
|
"tab.inactiveBackground": "#F9EDF2",
|
||||||
|
"tab.inactiveForeground": "#2A1F24",
|
||||||
|
"tab.activeBorder": "#C01C65",
|
||||||
|
"tab.activeBorderTop": "#00000000",
|
||||||
|
"tab.unfocusedActiveBorder": "#C01C65A0",
|
||||||
|
"tab.border": "#F9EDF2",
|
||||||
|
|
||||||
|
"editorGroupHeader.tabsBackground": "#F9EDF2",
|
||||||
|
"editorGroup.border": "#FFDCE9",
|
||||||
|
"editorGroup.dropBackground": "#DC548F30",
|
||||||
|
|
||||||
|
"editor.selectionBackground": "#FF9CC780",
|
||||||
|
"editor.selectionHighlightBackground": "#C4DEC660",
|
||||||
|
"editor.wordHighlightBackground": "#C4DEC690",
|
||||||
|
"editor.findMatchBackground": "#FF9CC7",
|
||||||
|
"editor.findMatchHighlightBackground": "#FF9CC780",
|
||||||
|
"editor.lineHighlightBackground": "#FFD6E760",
|
||||||
|
"editor.lineHighlightBorder": "#FFD6E700",
|
||||||
|
|
||||||
|
"editorCursor.foreground": "#C01C65",
|
||||||
|
"editorLineNumber.foreground": "#888888",
|
||||||
|
"editorLineNumber.activeForeground": "#C01C65",
|
||||||
|
|
||||||
|
"editorWidget.background": "#F9EDF2",
|
||||||
|
"editorWidget.border": "#FFDCE9",
|
||||||
|
"editorSuggestWidget.background": "#F9EDF2",
|
||||||
|
"editorSuggestWidget.border": "#FFDCE9",
|
||||||
|
"editorSuggestWidget.selectedBackground": "#FF9CC780",
|
||||||
|
"editorSuggestWidget.highlightForeground": "#C01C65",
|
||||||
|
|
||||||
|
"panel.background": "#F9EDF2",
|
||||||
|
"panel.border": "#FFDCE9",
|
||||||
|
"panelTitle.activeBorder": "#C01C65",
|
||||||
|
"panelTitle.activeForeground": "#C01C65",
|
||||||
|
"panelTitle.inactiveForeground": "#2A1F24",
|
||||||
|
|
||||||
|
"terminal.background": "#FEF9FB",
|
||||||
|
"terminal.foreground": "#2A1F24",
|
||||||
|
"terminal.ansiBlack": "#2A1F24",
|
||||||
|
"terminal.ansiRed": "#C01C65",
|
||||||
|
"terminal.ansiGreen": "#3F6841",
|
||||||
|
"terminal.ansiYellow": "#9A6800",
|
||||||
|
"terminal.ansiBlue": "#3057B0",
|
||||||
|
"terminal.ansiMagenta": "#DC548F",
|
||||||
|
"terminal.ansiCyan": "#1A7884",
|
||||||
|
"terminal.ansiWhite": "#EEEEEE",
|
||||||
|
"terminal.ansiBrightBlack": "#666666",
|
||||||
|
"terminal.ansiBrightRed": "#FF8AC8",
|
||||||
|
"terminal.ansiBrightGreen": "#83AF85",
|
||||||
|
"terminal.ansiBrightYellow": "#E0BD6C",
|
||||||
|
"terminal.ansiBrightBlue": "#7A9FE8",
|
||||||
|
"terminal.ansiBrightMagenta": "#FFB8D9",
|
||||||
|
"terminal.ansiBrightCyan": "#7ACAD5",
|
||||||
|
"terminal.ansiBrightWhite": "#FFFFFF",
|
||||||
|
"terminal.selectionBackground": "#FF9CC780",
|
||||||
|
|
||||||
|
"notificationCenter.border": "#FFDCE9",
|
||||||
|
"notifications.background": "#F9EDF2",
|
||||||
|
"notifications.border": "#FFDCE9",
|
||||||
|
"notificationLink.foreground": "#DC548F",
|
||||||
|
"notificationsErrorIcon.foreground": "#C01C65",
|
||||||
|
"notificationsWarningIcon.foreground": "#9A6800",
|
||||||
|
"notificationsInfoIcon.foreground": "#3057B0",
|
||||||
|
|
||||||
|
"pickerGroup.border": "#FFDCE9",
|
||||||
|
"pickerGroup.foreground": "#C01C65",
|
||||||
|
|
||||||
|
"gitDecoration.modifiedResourceForeground": "#3057B0",
|
||||||
|
"gitDecoration.addedResourceForeground": "#3F6841",
|
||||||
|
"gitDecoration.deletedResourceForeground": "#C01C65",
|
||||||
|
"gitDecoration.untrackedResourceForeground": "#679269",
|
||||||
|
"gitDecoration.ignoredResourceForeground": "#888888",
|
||||||
|
"gitDecoration.conflictingResourceForeground": "#9A6800",
|
||||||
|
|
||||||
|
"breadcrumb.background": "#FEF9FB",
|
||||||
|
"breadcrumb.foreground": "#2A1F24",
|
||||||
|
"breadcrumb.focusForeground": "#C01C65",
|
||||||
|
"breadcrumb.activeSelectionForeground": "#C01C65",
|
||||||
|
|
||||||
|
"scrollbarSlider.background": "#DC548F40",
|
||||||
|
"scrollbarSlider.hoverBackground": "#DC548F60",
|
||||||
|
"scrollbarSlider.activeBackground": "#DC548F80",
|
||||||
|
|
||||||
|
"settings.headerForeground": "#C01C65",
|
||||||
|
"settings.modifiedItemIndicator": "#C01C65",
|
||||||
|
|
||||||
|
"peekView.border": "#C01C65",
|
||||||
|
"peekViewEditor.background": "#FEF9FB",
|
||||||
|
"peekViewEditor.matchHighlightBackground": "#FF9CC780",
|
||||||
|
"peekViewResult.background": "#F9EDF2",
|
||||||
|
"peekViewResult.matchHighlightBackground": "#FF9CC780",
|
||||||
|
"peekViewResult.selectionBackground": "#FF9CC780",
|
||||||
|
"peekViewTitle.background": "#FFDCE9",
|
||||||
|
"peekViewTitleLabel.foreground": "#C01C65"
|
||||||
|
},
|
||||||
|
"tokenColors": [
|
||||||
|
{
|
||||||
|
"name": "Comments",
|
||||||
|
"scope": ["comment", "punctuation.definition.comment"],
|
||||||
|
"settings": {
|
||||||
|
"fontStyle": "italic",
|
||||||
|
"foreground": "#528454"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "String",
|
||||||
|
"scope": ["string", "punctuation.definition.string"],
|
||||||
|
"settings": {
|
||||||
|
"foreground": "#3F6841"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Keywords",
|
||||||
|
"scope": ["keyword", "storage.type", "storage.modifier"],
|
||||||
|
"settings": {
|
||||||
|
"foreground": "#B01A67"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Functions",
|
||||||
|
"scope": ["entity.name.function", "support.function"],
|
||||||
|
"settings": {
|
||||||
|
"foreground": "#2752B3"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Classes, Types",
|
||||||
|
"scope": ["entity.name.type", "entity.name.class", "entity.name.namespace", "entity.name.scope-resolution"],
|
||||||
|
"settings": {
|
||||||
|
"foreground": "#9A6800"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Variables",
|
||||||
|
"scope": ["variable", "entity.name.variable"],
|
||||||
|
"settings": {
|
||||||
|
"foreground": "#2A1F24"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Constants",
|
||||||
|
"scope": ["variable.other.constant", "support.constant"],
|
||||||
|
"settings": {
|
||||||
|
"foreground": "#B01A67"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Numbers",
|
||||||
|
"scope": ["constant.numeric"],
|
||||||
|
"settings": {
|
||||||
|
"foreground": "#B01A67"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Punctuation",
|
||||||
|
"scope": ["punctuation"],
|
||||||
|
"settings": {
|
||||||
|
"foreground": "#555555"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Brackets",
|
||||||
|
"scope": ["meta.brace.square", "punctuation.definition.bracket"],
|
||||||
|
"settings": {
|
||||||
|
"foreground": "#1A7884"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Braces",
|
||||||
|
"scope": ["meta.brace.curly", "punctuation.definition.block"],
|
||||||
|
"settings": {
|
||||||
|
"foreground": "#9A6800"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Parentheses",
|
||||||
|
"scope": ["meta.brace.round", "punctuation.definition.parameters", "punctuation.definition.group"],
|
||||||
|
"settings": {
|
||||||
|
"foreground": "#B01A67"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Tags",
|
||||||
|
"scope": ["entity.name.tag", "punctuation.definition.tag"],
|
||||||
|
"settings": {
|
||||||
|
"foreground": "#B01A67"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Attributes",
|
||||||
|
"scope": ["entity.other.attribute-name"],
|
||||||
|
"settings": {
|
||||||
|
"foreground": "#9A6800"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Markup Headings",
|
||||||
|
"scope": ["markup.heading"],
|
||||||
|
"settings": {
|
||||||
|
"foreground": "#B01A67",
|
||||||
|
"fontStyle": "bold"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Markup Bold",
|
||||||
|
"scope": ["markup.bold"],
|
||||||
|
"settings": {
|
||||||
|
"foreground": "#2A1F24",
|
||||||
|
"fontStyle": "bold"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Markup Italic",
|
||||||
|
"scope": ["markup.italic"],
|
||||||
|
"settings": {
|
||||||
|
"foreground": "#2A1F24",
|
||||||
|
"fontStyle": "italic"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Markup Links",
|
||||||
|
"scope": ["markup.underline.link"],
|
||||||
|
"settings": {
|
||||||
|
"foreground": "#2752B3"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Regular Expressions",
|
||||||
|
"scope": ["string.regexp"],
|
||||||
|
"settings": {
|
||||||
|
"foreground": "#1A7884"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Escape Characters",
|
||||||
|
"scope": ["constant.character.escape"],
|
||||||
|
"settings": {
|
||||||
|
"foreground": "#1A7884"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "JSON Property Names",
|
||||||
|
"scope": ["support.type.property-name.json"],
|
||||||
|
"settings": {
|
||||||
|
"foreground": "#B01A67"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "JSON String",
|
||||||
|
"scope": ["string.quoted.double.json"],
|
||||||
|
"settings": {
|
||||||
|
"foreground": "#3F6841"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "CSS Properties",
|
||||||
|
"scope": ["support.type.property-name.css"],
|
||||||
|
"settings": {
|
||||||
|
"foreground": "#B01A67"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "CSS Property Values",
|
||||||
|
"scope": ["support.constant.property-value.css"],
|
||||||
|
"settings": {
|
||||||
|
"foreground": "#3F6841"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "CSS Selectors",
|
||||||
|
"scope": ["entity.name.tag.css", "entity.other.attribute-name.class.css"],
|
||||||
|
"settings": {
|
||||||
|
"foreground": "#B01A67"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "HTML Tags",
|
||||||
|
"scope": ["entity.name.tag.html"],
|
||||||
|
"settings": {
|
||||||
|
"foreground": "#B01A67"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "HTML Attributes",
|
||||||
|
"scope": ["entity.other.attribute-name.html"],
|
||||||
|
"settings": {
|
||||||
|
"foreground": "#9A6800"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "JavaScript Variables",
|
||||||
|
"scope": ["variable.other.readwrite.js", "variable.other.object.js"],
|
||||||
|
"settings": {
|
||||||
|
"foreground": "#2A1F24"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "TypeScript Types",
|
||||||
|
"scope": ["support.type.primitive.ts", "support.type.builtin.ts"],
|
||||||
|
"settings": {
|
||||||
|
"foreground": "#9A6800"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Python Function Parameter",
|
||||||
|
"scope": ["variable.parameter.function.language.python"],
|
||||||
|
"settings": {
|
||||||
|
"foreground": "#9A6800"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Python Function Call",
|
||||||
|
"scope": ["meta.function-call.python"],
|
||||||
|
"settings": {
|
||||||
|
"foreground": "#2752B3"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Markdown URL",
|
||||||
|
"scope": ["markup.underline.link.markdown"],
|
||||||
|
"settings": {
|
||||||
|
"foreground": "#2752B3"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Markdown Headings",
|
||||||
|
"scope": ["markup.heading.markdown"],
|
||||||
|
"settings": {
|
||||||
|
"foreground": "#B01A67"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Markdown Bold",
|
||||||
|
"scope": ["markup.bold.markdown"],
|
||||||
|
"settings": {
|
||||||
|
"foreground": "#B01A67",
|
||||||
|
"fontStyle": "bold"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Markdown Italic",
|
||||||
|
"scope": ["markup.italic.markdown"],
|
||||||
|
"settings": {
|
||||||
|
"foreground": "#B01A67",
|
||||||
|
"fontStyle": "italic"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Markdown Code",
|
||||||
|
"scope": ["markup.inline.raw.markdown"],
|
||||||
|
"settings": {
|
||||||
|
"foreground": "#3F6841"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"semanticHighlighting": true,
|
||||||
|
"semanticTokenColors": {
|
||||||
|
"enumMember": {
|
||||||
|
"foreground": "#1A7884"
|
||||||
|
},
|
||||||
|
"variable.constant": {
|
||||||
|
"foreground": "#B01A67"
|
||||||
|
},
|
||||||
|
"variable.defaultLibrary": {
|
||||||
|
"foreground": "#9A6800"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
Loading…
Add table
Add a link
Reference in a new issue