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

Custom tags color does not play well with Solarized Light color scheme #44

Open
cabello opened this issue Mar 8, 2018 · 1 comment
Open

Comments

@cabello
Copy link

cabello commented Mar 8, 2018

This extension is great! ❤️

I use Solarized Light color scheme and when I type custom tags the color does not play well with this theme, making them hard to read:

screen shot 2018-03-08 at 2 55 48 pm

Any chance the color scheme colors can be leveraged so they play nicely within a light theme?

@AndresAcuna
Copy link

Hi, I just started to look at this extension today, but I think I can help.

Unless I'm mistaken, the color can be changed in the TodoDocumentDecorator.js file.

For example, for the @low tag change the hex codes to what you want...

    TagsDecorator.DECORATOR_LOW_TAG = vscode_1.window.createTextEditorDecorationType({
        light: {
            backgroundColor: '#9933FF',
            color: '#fff'
        },
        dark: {
            backgroundColor: '#99CC00',
            color: '#000',
        }
    });

image
image

Replace the hex color codes with your desired colors and it should work after restarting VS Code.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants