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

(Notice the white border)
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]
}