[READ-ONLY] Mirror of https://github.com/bombshell-dev/docs. bomb.sh/docs
0

Configure Feed

Select the types of activity you want to include in your feed.

fix: override topics css styles to fix light mode colors (#52)

* fix: override topics css styles to fix light mode colors

* fix: topic background color in light mode

Inspired-by: HiDeoo <494699+hideoo@users.noreply.github.com>

authored by

Felix Schneider and committed by
GitHub
(Jun 3, 2026, 4:14 PM -0500) ad847dcb 4f800055

+6 -6
+6 -6
src/styles/starlight.css
··· 193 193 .sl-link-button>svg { 194 194 fill: var(--color-white-100); 195 195 } 196 + } 197 + } 196 198 199 + /* this rule must not be layered because the Starlight Sidebar Topics plugin doesn't use Cascade Layers */ 200 + :root[data-theme="light"] { 201 + a:is(.starlight-sidebar-topics-current, :hover, :focus-visible) 197 202 .starlight-sidebar-topics-icon { 198 - background-color: var(--color-gray-20); 199 - } 200 - 201 - starlight-menu-button button { 202 - background-color: var(--color-gray-20); 203 - } 203 + background-color: var(--sl-color-accent-low); 204 204 } 205 205 }