aesthetic-improvements: fix inconsistent selected track styling in LibraryPage (Action 11.3.1.3)

- Fixed mixed cyan/steel styling: bg-kodo-cyan/15 → bg-kodo-steel/15 for consistency
- Selected track state now uses consistent steel colors throughout
- Action 11.3.1.3: final consistency fix
This commit is contained in:
senke 2026-01-16 11:47:43 +01:00
parent b9c75111bb
commit 74dc7ce4e1

View file

@ -717,7 +717,7 @@ export default function LibraryPagePremium() {
'flex items-center gap-4 p-4 hover:bg-white/5 transition-colors cursor-pointer group',
'focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-kodo-cyan focus-visible:ring-offset-2 focus-visible:ring-offset-kodo-void rounded',
selectedTracks.has(track.id) &&
'bg-kodo-cyan/15 border-l-4 border-kodo-steel shadow-sm shadow-kodo-steel/20',
'bg-kodo-steel/15 border-l-4 border-kodo-steel shadow-sm shadow-kodo-steel/20',
)}
onClick={() => isBulkMode && toggleTrackSelection(track.id)}
tabIndex={0}