Streamの更新日時バーに背景色をつける
author: Nrem.icon
UserCSS.icon
2026-01-24 変数名を変更
前: --stream-section-title-bg, --stream-section-title-text-color
新: --stream-section-label-bg, --stream-section-label-text-color
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);
}