Files
azuredatastudio/extensions/theme-defaults/package.json
Aasim Khan d3f4f0daa4 Adding light contrast theme (#22028)
* Adding light contrast theme

* fixing oe icons

* Fixing more files

* Converting ep files to support hc light

* Revert "Copy Headers for Selected Columns (#21622)"

This reverts commit f74d6f6d9b.

* Adding more css rules

* Fixing modal

* Fixing azure icons
2023-03-06 17:31:27 -08:00

42 lines
857 B
JSON

{
"name": "theme-defaults",
"displayName": "%displayName%",
"description": "%description%",
"categories": [
"Themes"
],
"version": "1.0.0",
"publisher": "vscode",
"license": "MIT",
"engines": {
"vscode": "*"
},
"contributes": {
"themes": [
{
"id": "Default High Contrast",
"label": "%hcColorThemeLabel%",
"uiTheme": "hc-black",
"path": "./themes/hc_black.json"
},
{
"id": "Default High Contrast Light",
"label": "%lightHcColorThemeLabel%",
"uiTheme": "hc-light",
"path": "./themes/hc_light.json"
}
]
},
"iconThemes": [
{
"id": "vs-minimal",
"label": "Minimal (Azure Data Studio)",
"path": "./fileicons/vs_minimal-icon-theme.json"
}
],
"repository": {
"type": "git",
"url": "https://github.com/microsoft/azuredatastudio.git"
}
}