diff --git a/apps/web/src/components/auth/login-form.tsx b/apps/web/src/components/auth/login-form.tsx
index b3478c8..7d3e443 100644
--- a/apps/web/src/components/auth/login-form.tsx
+++ b/apps/web/src/components/auth/login-form.tsx
@@ -11,6 +11,7 @@ import {
import { useIsMutating } from "@tanstack/react-query";
import { cn } from "cnfast";
import { Eye, EyeOff, Lock, Mail } from "lucide-react";
+import { useTheme } from "next-themes";
import {
type Dispatch,
type ReactNode,
@@ -57,11 +58,15 @@ export type LoginFormProps = {
};
function LoginAgentsPanel() {
+ const { resolvedTheme } = useTheme();
+ const flickerColor =
+ resolvedTheme === "dark" ? "rgb(255, 255, 255)" : "rgb(0, 0, 0)";
+
return (
-
+
@@ -152,7 +157,6 @@ function PasswordAuthFields({
{labels.password}
-
+
@@ -313,7 +317,6 @@ function MagicLinkAuthFields({