From c9f2b0c36377820e5b5cf47cceda478644ef0c38 Mon Sep 17 00:00:00 2001 From: "gpt-engineer-app[bot]" <159125892+gpt-engineer-app[bot]@users.noreply.github.com> Date: Mon, 29 Sep 2025 18:46:44 +0000 Subject: [PATCH] Refactor: Use blue accent color --- src/components/upload/DragDropZone.tsx | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/components/upload/DragDropZone.tsx b/src/components/upload/DragDropZone.tsx index 3e5b5854..039d00a3 100644 --- a/src/components/upload/DragDropZone.tsx +++ b/src/components/upload/DragDropZone.tsx @@ -132,7 +132,7 @@ export function DragDropZone({ onDrop={handleDrop} className={cn( "relative transition-all duration-200", - isDragOver && !disabled && "ring-2 ring-primary ring-offset-2", + isDragOver && !disabled && "ring-2 ring-accent ring-offset-2", className )} > @@ -157,8 +157,8 @@ export function DragDropZone({ className={cn( "relative border-2 border-dashed rounded-lg transition-all duration-200 p-8", isDragOver && !disabled - ? "border-primary bg-primary/5 scale-[1.02]" - : "border-border hover:border-primary/50", + ? "border-accent bg-accent/5 scale-[1.02]" + : "border-border hover:border-accent/50", disabled && "opacity-50 cursor-not-allowed", !disabled && "cursor-pointer hover:bg-muted/50", className @@ -174,11 +174,11 @@ export function DragDropZone({ />
-
+
{isDragOver ? ( - + ) : ( - + )}