diff options
Diffstat (limited to 'src/plugins/platformIndicators.tsx')
-rw-r--r-- | src/plugins/platformIndicators.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/platformIndicators.tsx b/src/plugins/platformIndicators.tsx index 2917ba8..1c9bbf1 100644 --- a/src/plugins/platformIndicators.tsx +++ b/src/plugins/platformIndicators.tsx @@ -58,7 +58,7 @@ const PlatformIcon = ({ platform, status }: { platform: Platform, status: string const tooltip = platform[0].toUpperCase() + platform.slice(1); const Icon = Icons[platform] ?? Icons.desktop; - return <Icon color={getStatusColor(status)} tooltip={tooltip} />; + return <Icon color={`var(--${getStatusColor(status)}`} tooltip={tooltip} />; }; const PlatformIndicator = ({ user }: { user: User; }) => { |