I submitted my extension to the VS Marketplace on Friday with the "light" text theme because the hex code for my header is dark gray. When I view the page in the marketplace however I get black text.
https://marketplace.visualstudio.com/items?itemName=RushFrisby.Encryptor
I submitted the extension again with the dark text theme just to see if the logic was somehow reversed but no luck. Here is what my package.json looks like:
{
"name": "Encryptor",
"displayName": "Encryptor",
"description": "Encrypts and decrypts files and strings in VS Code",
"version": "0.2.0",
"publisher": "RushFrisby",
"icon": "images/lock.png",
"galleryBanner": {
"color": "#333333",
"theme": "light"
},
"engines": {
"vscode": "^0.10.10"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:extension.encryptor_EncryptFile",
"onCommand:extension.encryptor_DecryptFile",
"onCommand:extension.encryptor_EncryptString",
"onCommand:extension.encryptor_DecryptString"
],
"main": "./extension",
"contributes": {
"commands": [{
"command": "extension.encryptor_EncryptFile",
"title": "encryptfile"
},
{
"command": "extension.encryptor_DecryptFile",
"title": "decryptfile"
},
{
"command": "extension.encryptor_EncryptString",
"title": "encryptstr"
},
{
"command": "extension.encryptor_DecryptString",
"title": "decryptstr"
}]
},
"scripts": {
"postinstall": "node ./node_modules/vscode/bin/install"
},
"devDependencies": {
"vscode": "^0.11.0"
}
}
I submitted my extension to the VS Marketplace on Friday with the "light" text theme because the hex code for my header is dark gray. When I view the page in the marketplace however I get black text.
https://marketplace.visualstudio.com/items?itemName=RushFrisby.Encryptor
I submitted the extension again with the dark text theme just to see if the logic was somehow reversed but no luck. Here is what my package.json looks like:
{ "name": "Encryptor", "displayName": "Encryptor", "description": "Encrypts and decrypts files and strings in VS Code", "version": "0.2.0", "publisher": "RushFrisby", "icon": "images/lock.png", "galleryBanner": { "color": "#333333", "theme": "light" }, "engines": { "vscode": "^0.10.10" }, "categories": [ "Other" ], "activationEvents": [ "onCommand:extension.encryptor_EncryptFile", "onCommand:extension.encryptor_DecryptFile", "onCommand:extension.encryptor_EncryptString", "onCommand:extension.encryptor_DecryptString" ], "main": "./extension", "contributes": { "commands": [{ "command": "extension.encryptor_EncryptFile", "title": "encryptfile" }, { "command": "extension.encryptor_DecryptFile", "title": "decryptfile" }, { "command": "extension.encryptor_EncryptString", "title": "encryptstr" }, { "command": "extension.encryptor_DecryptString", "title": "decryptstr" }] }, "scripts": { "postinstall": "node ./node_modules/vscode/bin/install" }, "devDependencies": { "vscode": "^0.11.0" } }