I want the status bar background to be white with black text in a slightly larger font.
I’m using the Eazy Light color scheme which does not contain references to the status bar. I then tried modifying the default theme sections:
{
“class”: “status_bar”,
// “layer0.tint”: [171, 177, 186],
“layer0.tint”: [100, 100, 100],
“layer0.opacity”: 1.0,
“content_margin”: [8, 0, 8, 0],
“fg”: [255, 255, 255],
“font.size”: 18
},
and
{
“class”: “label_control”,
“parents”: [{“class”: “status_bar”}],
“font.size”: 24,
// “shadow_color”: [255, 255, 255, 0.18],
// “shadow_color”: [255, 255, 255, 255],
// “shadow_offset”: [0, 0],
“fg”: [255,255,255]
},
with all types of values and stays the same. What am I missing?