Streamの更新日時バーに背景色をつける
code:style.css
body {
--stream-section-title-bg: hsl(from var(--navbar-bg) h s 35%);
--stream-section-title-text-color: white;
}
.stream h1 {
background-color: var(--stream-section-title-bg, midnightblue);
color: var(--stream-section-title-text-color, white);
}