How can I make Gnome's top bar font weight bold?
I found source for gnome-shell.css on GitLab that describes #panel
as the UI to target.
I've tried both of these CSS properties on the panel:
#panel {
font-weight: bold;
/*font-weight: 700;*/
}
Nothing seems to change though. If I set background-color: red
, that background change is reflected, so I know my CSS file is working at least.
Here is screenshot of the top bar UI I'm trying to change:
The method described by @andy.holmes seemed to do the trick. Use #panel StLabel
for font-weight
and use stage
for font-family
.
This CSS is working:
#panel StLabel {
font-weight: 500;
font-size: 13px;
}
stage {
font-family: "Inter", sans-serif;
}