Invert the colors of the camera and microphone buttons again

Turns out design prefers the button colors how they were prior to fa844446b6.
This commit is contained in:
Robin
2026-04-21 11:17:57 +02:00
parent 2828b92d91
commit e9fd84816e
2 changed files with 4 additions and 4 deletions

View File

@@ -47,7 +47,7 @@ export const MicButton: FC<MicButtonProps> = ({ enabled, ...props }) => {
<CpdButton
iconOnly
Icon={Icon}
kind={enabled ? "primary" : "secondary"}
kind={enabled ? "secondary" : "primary"}
role="switch"
aria-checked={enabled}
{...props}
@@ -73,7 +73,7 @@ export const VideoButton: FC<VideoButtonProps> = ({ enabled, ...props }) => {
<CpdButton
iconOnly
Icon={Icon}
kind={enabled ? "primary" : "secondary"}
kind={enabled ? "secondary" : "primary"}
role="switch"
aria-checked={enabled}
{...props}