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({ />