LONGMAN wrote:No, it's changes editor text color/selection, not UI inputs
In Sublime Text 3, the "foreground" and "selection" of the
Color Scheme do change the text color and selection background of the
find panel.
For the quick panel, look for the following in your .sublime-theme Theme.
//background of entire quick panel box
"class": "overlay_control",
"layer0.texture": "",
"layer0.tint": [64, 64, 64],
//background of a row entry of quick panel
"class": "quick_panel_row",
"layer0.texture": "",
"layer0.tint": [32, 32, 32],
//background (selected) of a row entry of quick panel
"class": "quick_panel_row",
"attributes": ["selected"],
//quick panel text
"class": "quick_panel_label",
"fg": [190, 190, 190, 255],