Files
vscode/extensions/theme-2026/package.json
mrleemurray acd5f6a352 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.
2026-01-16 13:24:26 +00:00

39 lines
752 B
JSON

{
"name": "theme-2026",
"displayName": "2026 Themes",
"description": "Modern, minimal light and dark themes for 2026 with consistent neutral palette and accessible color contrast",
"version": "0.1.0",
"publisher": "vscode",
"license": "MIT",
"engines": {
"vscode": "^1.85.0"
},
"enabledApiProposals": [
"css"
],
"categories": [
"Themes"
],
"contributes": {
"themes": [
{
"id": "2026-light-experimental",
"label": "2026 Light",
"uiTheme": "vs",
"path": "./themes/2026-light.json"
},
{
"id": "2026-dark-experimental",
"label": "2026 Dark",
"uiTheme": "vs-dark",
"path": "./themes/2026-dark.json"
}
],
"css": [
{
"path": "./themes/styles.css"
}
]
}
}