
What property is responsible for the color of this menu here and where is it located?
1 answer
The color of the background of tooltips in Sublime Text 3 is the class table_row .
Preferences → Browse Paskages → User , create the Default.sublime-theme file, if it has not already been created, and insert the following code between it [] :
// Background hints
{
"class": "table_row",
"layer1.tint": [255, 228, 225, 255],
"layer1.opacity": 1,
}, Where layer1.tint is the background color of tooltips in RGBA , layer1.opacity is the background transparency, the property takes values from 0 to 1.

The auto_complete_label class is responsible for the auto_complete_label :
// Текст в автокомплите { "class": "auto_complete_label", "fg": [72, 72, 72, 255], "match_fg": [0, 0, 0, 255], "selected_fg": [250, 128, 114, 255], "selected_match_fg": [220, 20, 60, 255] }, 
fg- the text color of the unselected autocomplex variants,match_fg- color of already typed text in unselected variants,selected_fg- text color of selected autocomplete options (when autocomplete options appear, you can select them with up / down arrows),selected_match_fg- color of already typed text in selected variants.
|