Skip to content

Dark and Light text themes in Marketplace #4914

Description

@rushfrisby

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"
    }
}

Metadata

Metadata

Assignees

Labels

*questionIssue represents a question, should be posted to StackOverflow (VS Code)

Type

No type

Projects

No projects

Milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions