On a screenshot they have bright color, but actually they have dim color. I want to add brightness to arrows.
Part of my Default.sublime-theme file:
// Arrow in top right corner
{
"class": "show_tabs_dropdown_button",
"layer0.tint": [255, 182, 193, 255],
"layer0.opacity": 1.0,
},
// Arrows in top left corner
{
"class": "scroll_tabs_left_button",
"layer0.tint": [0, 255, 0],
"layer0.opacity": 1.0,
},
{
"class": "scroll_tabs_right_button",
"layer0.tint": [0, 255, 0],
"layer0.opacity": 1.0,
},
How still I can increase brightness of arrows? Thanks.