diff --git a/web/src/components/dynamic/CameraFeatureToggle.tsx b/web/src/components/dynamic/CameraFeatureToggle.tsx index 666bfb33b..a3a674c64 100644 --- a/web/src/components/dynamic/CameraFeatureToggle.tsx +++ b/web/src/components/dynamic/CameraFeatureToggle.tsx @@ -8,12 +8,12 @@ import { isDesktop } from "react-device-detect"; const variants = { primary: { - active: "font-bold text-primary-foreground bg-primary", - inactive: "text-muted-foreground bg-muted", + active: "font-bold text-primary-foreground bg-selected", + inactive: "text-secondary-foreground bg-secondary", }, secondary: { active: "font-bold text-primary", - inactive: "text-muted-foreground", + inactive: "text-secondary-foreground", }, }; diff --git a/web/src/components/navigation/NavItem.tsx b/web/src/components/navigation/NavItem.tsx index 4725d0eb1..26321d69a 100644 --- a/web/src/components/navigation/NavItem.tsx +++ b/web/src/components/navigation/NavItem.tsx @@ -11,12 +11,12 @@ import { isDesktop } from "react-device-detect"; const variants = { primary: { - active: "font-bold text-primary-foreground bg-primary", - inactive: "text-muted-foreground bg-muted", + active: "font-bold text-primary-foreground bg-selected", + inactive: "text-muted-foreground bg-secondary", }, secondary: { active: "font-bold text-primary", - inactive: "text-muted-foreground", + inactive: "text-secondary-foreground", }, }; diff --git a/web/src/views/live/LiveCameraView.tsx b/web/src/views/live/LiveCameraView.tsx index 3dfd76109..dff75fc78 100644 --- a/web/src/views/live/LiveCameraView.tsx +++ b/web/src/views/live/LiveCameraView.tsx @@ -101,7 +101,7 @@ export default function LiveCameraView({ camera }: LiveCameraViewProps) {