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

Debug Console Yellow text colour on white background #85

Open
fromtoronto77 opened this issue Aug 2, 2020 · 3 comments
Open

Debug Console Yellow text colour on white background #85

fromtoronto77 opened this issue Aug 2, 2020 · 3 comments

Comments

@fromtoronto77
Copy link

I am using VScode-Python to debug under sublime_debugger. The text color is yellow with white background for Variables. Hard to read anything. How to change debug console font color? Thanks.

@daveleroy
Copy link
Owner

It's not possible at the moment. You would need to modify the generated html here https://github.com/daveleroy/sublime_debugger/blob/bef387a7c1772ffabc0697a6576e9971de60f374/modules/ui/html.py#L230

@gribera
Copy link

gribera commented Oct 11, 2022

I have the same problem debugging with Chrome, console errors are displayed on a white background, how can I remove the text background on errors?

image

@daveleroy
Copy link
Owner

@gribera those are the default region.redish colors in whatever color scheme you are using. You can define an alternative background color for the those regions by setting debugger.background to match the background color of the panel. You probably also want to change debugger.selection.

See https://github.com/daveleroy/sublime_debugger/tree/master/ColorSchemes

{
    "rules": [
        {
            "scope": "debugger.background",
            "background": "var(background)",
        },
        {
            "scope": "debugger.selection",
            "background": "color(var(blue) alpha(0.2))"
        },
    ]
}

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

3 participants