29a81b72a3
Each Explorer row's action icons (Info, Download, Generate URL, Delete) tint themselves on hover via Tailwind hover:bg-*-50 / hover:text-charcoal utilities, but the dark-mode override layer only re-pointed the non-hover utilities. The hover: variants fell through to Tailwind's light defaults: Generate URL (hover:bg-blue-50) and Delete (hover:bg-red-50) flashed a near-white box (#eff6ff / #fef2f2), and Info (hover:text-charcoal) drove the icon to the near-black charcoal DEFAULT (#12121a), vanishing on the dark page. Download looked fine only because its hover:bg-accent-50 maps to the custom dark accent-50 (#172554). Re-point the four hover variants to the same translucent 0.13-alpha tints used elsewhere, and lift text-red-500 (the delete icons' rest colour) to the themed red-400 #f87171 like the other reds. These are utility-class overrides, so they also fix the bucket / folder / version delete icons and the modal close buttons. Folded into 0002-webui-dark-theme.patch. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>