Streamの更新日時バーに背景色をつける
UserCSS.icon
Streamの更新日時バーの視認性を高めます
code:style.css
body {
--stream-section-label-bg: hsl(from var(--navbar-bg) h s 35%);
--stream-section-label-text-color: white;
}
.stream h1 {
background-color: var(--stream-section-label-bg, midnightblue);
color: var(--stream-section-label-text-color, white);
}
#UserCSS