Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Please do not hard code colors into the extension but instead use themeable properties. #119

Closed
grymmjack opened this issue May 19, 2023 · 4 comments
Assignees
Labels
bug Something isn't working

Comments

@grymmjack
Copy link
Contributor

grymmjack commented May 19, 2023

51bb8ec#r113996771

I spent 30 minutes trying to override this in the theme. It's not over-rideable.
image

image

Example returning a themeable color vs. hardcoded from
microsoft/vscode#78660:

const vscode = require('vscode');

function activate(context) {
    var decorator = vscode.window.createTextEditorDecorationType( {
      color: new vscode.ThemeColor('editor.selectionForeground'),
      backgroundColor: new vscode.ThemeColor('editor.selectionBackground')
    });

    context.subscriptions.push(
        vscode.commands.registerCommand('extension.decoratorselect', () => {
            const editor = vscode.window.activeTextEditor;
            if (!editor) { return; }
            editor.setDecorations(decorator, [new vscode.Range(new vscode.Position(1, 0), new vscode.Position(1, 20))]);
        })
    );
};

function deactivate() {}

module.exports = {
    activate,
    deactivate
}
@LordDurus LordDurus self-assigned this May 19, 2023
@LordDurus LordDurus added the bug Something isn't working label May 19, 2023
@LordDurus
Copy link
Collaborator

This is a good idea and will be done.

@LordDurus
Copy link
Collaborator

This is ready to text in v0.9.1

@grymmjack
Copy link
Contributor Author

Tested and worked for the color, but now new issue with bold #120

@LordDurus
Copy link
Collaborator

Making this one done.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

2 participants