Skip to content

Conversation

IcEarthlight
Copy link
Contributor

Problem

The Steam tray icon will not change its color in dark mode, making it nearly invisible against the dark taskbar background. Other icons (e.g., sound, Wi-Fi, Bluetooth) adapt correctly to light/dark themes.

Possible Cause

The original Steam SVG lacks a <style> definition and uses a hardcoded fill color, unlike other icons which use currentColor and the ColorScheme-Text class.

图片

Fix

I modified 32/status/steam_tray_mono.svg to something like:

<style id="current-color-scheme" type="text/css">
  .ColorScheme-Text { color: #363636; }
</style>
<path class="ColorScheme-Text" d="..." fill="currentColor" opacity=".85"/>

This allows the icon to adapt properly to both light and dark modes.

图片

@vinceliuice vinceliuice merged commit 6bafbd8 into vinceliuice:master Aug 6, 2025
1 check passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants