brogrammer-theme icon indicating copy to clipboard operation
brogrammer-theme copied to clipboard

Adjust background color for console prompt

Open idleberg opened this issue 8 years ago • 1 comments

Sublime Text 3 (Build 3127) supports a dark background for the console. However, your theme doesn't color the background of the prompt correctly:

screen shot 2017-04-12 at 12 50 33

(Notice the white border)

idleberg avatar Apr 12 '17 10:04 idleberg

A figured the required fix

In Brogrammer.sublime-theme, for the text_line_control class you have to apply the following changes:

    {
        "class": "text_line_control",
        "layer0.texture": "",
        "layer0.tint": [230, 230, 230],
        "layer0.opacity": 1,
        "content_margin": [3, 6, 0, 3]
    }

to:

    {
        "class": "text_line_control",
        "layer0.texture": "",
        "layer0.tint": [230, 230, 230],
        "color_scheme_tint": [230, 230, 230],
        "layer0.opacity": 1,
        "content_margin": [3, 6, 0, 3]
    }

danielkalen avatar Aug 31 '17 22:08 danielkalen