mirror of
https://github.com/microsoft/vscode.git
synced 2026-02-22 10:46:11 +00:00
- 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.
39 lines
752 B
JSON
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"
|
|
}
|
|
]
|
|
}
|
|
}
|