@@ -13,7 +13,7 @@ const Command = React.forwardRef<
13
13
< CommandPrimitive
14
14
ref = { ref }
15
15
className = { cn (
16
- "flex h-full w-full flex-col overflow-hidden rounded-md bg-[#111113]/50 backdrop-blur-md text-wite-foreground " ,
16
+ "flex h-full w-full flex-col overflow-hidden rounded-md bg-blackmid/40 backdrop-blur-md shadow-md text-white " ,
17
17
className
18
18
) }
19
19
{ ...props }
@@ -26,7 +26,7 @@ interface CommandDialogProps extends DialogProps {}
26
26
const CommandDialog = ( { children, ...props } : CommandDialogProps ) => {
27
27
return (
28
28
< Dialog { ...props } >
29
- < DialogContent className = "overflow-hidden p-0 shadow-lg border border-darkbtnhover/60 text-white " >
29
+ < DialogContent className = "overflow-hidden p-0 shadow-lg border-none " >
30
30
< Command className = "[&_[cmdk-group-heading]]:px-2 [&_[cmdk-group-heading]]:font-medium [&_[cmdk-group-heading]]:text-muted-foreground [&_[cmdk-group]:not([hidden])_~[cmdk-group]]:pt-0 [&_[cmdk-group]]:px-2 [&_[cmdk-input-wrapper]_svg]:h-5 [&_[cmdk-input-wrapper]_svg]:w-5 [&_[cmdk-input]]:h-12 [&_[cmdk-item]]:px-2 [&_[cmdk-item]]:py-3 [&_[cmdk-item]_svg]:h-5 [&_[cmdk-item]_svg]:w-5" >
31
31
{ children }
32
32
</ Command >
@@ -39,12 +39,12 @@ const CommandInput = React.forwardRef<
39
39
React . ElementRef < typeof CommandPrimitive . Input > ,
40
40
React . ComponentPropsWithoutRef < typeof CommandPrimitive . Input >
41
41
> ( ( { className, ...props } , ref ) => (
42
- < div className = "flex items-center border-b border-darkbtnhover/90 px-3" cmdk-input-wrapper = "" >
43
- < Search className = "mr-2 h-4 w-4 shrink-0 opacity-50 text-white/50 " />
42
+ < div className = "flex items-center border-b border-hashtext/40 px-3" cmdk-input-wrapper = "" >
43
+ < Search className = "mr-2 h-4 w-4 shrink-0 opacity-50" />
44
44
< CommandPrimitive . Input
45
45
ref = { ref }
46
46
className = { cn (
47
- "flex h-11 w-full rounded-md bg-transparent py-3 text-sm outline-none placeholder:text-white/50 disabled:cursor-not-allowed disabled:opacity-50" ,
47
+ "flex h-11 w-full rounded-md bg-transparent py-3 text-sm outline-none placeholder:text-muted-foreground disabled:cursor-not-allowed disabled:opacity-50" ,
48
48
className
49
49
) }
50
50
{ ...props }
@@ -115,7 +115,7 @@ const CommandItem = React.forwardRef<
115
115
< CommandPrimitive . Item
116
116
ref = { ref }
117
117
className = { cn (
118
- "relative flex cursor-default select-none items-center rounded-md px-2 py-1.5 text-sm outline-none aria-selected:bg-secondpro aria-selected:text-accent-foreground data-[disabled]:pointer-events-none data-[disabled]:opacity-50" ,
118
+ "relative flex cursor-default select-none items-center rounded-md px-2 py-1.5 text-sm outline-none aria-selected:bg-darkbtn aria-selected:text-accent-foreground data-[disabled]:pointer-events-none data-[disabled]:opacity-50" ,
119
119
className
120
120
) }
121
121
{ ...props }
0 commit comments