Enhance 2026 Light Theme and Add Stealth Shadows Styles

- Updated color values in 2026-light.json for improved contrast and accessibility.
- Introduced new styles.css file to implement stealth shadows for various UI elements, enhancing visual depth and aesthetics across the workbench.
- Adjusted box-shadow properties for components like the activity bar, sidebar, panel, and editor to create a more cohesive design.
This commit is contained in:
mrleemurray
2026-01-16 13:24:26 +00:00
parent ef452dc92e
commit acd5f6a352
4 changed files with 347 additions and 116 deletions

View File

@@ -8,23 +8,31 @@
"engines": {
"vscode": "^1.85.0"
},
"enabledApiProposals": [
"css"
],
"categories": [
"Themes"
],
"contributes": {
"themes": [
{
"id": "2026-light",
"id": "2026-light-experimental",
"label": "2026 Light",
"uiTheme": "vs",
"path": "./themes/2026-light.json"
},
{
"id": "2026-dark",
"id": "2026-dark-experimental",
"label": "2026 Dark",
"uiTheme": "vs-dark",
"path": "./themes/2026-dark.json"
}
]
],
"css": [
{
"path": "./themes/styles.css"
}
]
}
}