@@ -78,11 +78,11 @@ const DraggableProjectItemBase: React.FC<DraggableProjectItemProps> = ({
7878 < div
7979 ref = { ( node ) => drag ( drop ( node ) ) }
8080 className = { cn (
81- "py-1 px-3 flex items-center border-l-transparent transition-all duration-150 bg-neutral-900 " ,
81+ "py-1 px-3 flex items-center border-l-transparent transition-all duration-150 bg-neutral-800 " ,
8282 isDragging ? "cursor-grabbing opacity-40 [&_*]:!cursor-grabbing" : "cursor-grab" ,
8383 isOver && "bg-sky-600/[0.08]" ,
84- selected && "bg-neutral-900 border-l-accent" ,
85- "hover:bg-neutral-900 hover:[&_button]:opacity-100 hover:[&_[data-drag-handle]]:opacity-100"
84+ selected && "bg-neutral-800 border-l-accent" ,
85+ "hover:bg-neutral-800 hover:[&_button]:opacity-100 hover:[&_[data-drag-handle]]:opacity-100"
8686 ) }
8787 { ...rest }
8888 >
@@ -136,7 +136,7 @@ const ProjectDragLayer: React.FC = () => {
136136 return (
137137 < div className = "pointer-events-none fixed inset-0 z-[9999] cursor-grabbing" >
138138 < div style = { { transform : `translate(${ currentOffset . x + 10 } px, ${ currentOffset . y + 10 } px)` } } >
139- < div className = "border-l-accent flex w-fit max-w-72 min-w-44 items-center rounded border-l-[3px] bg-neutral-900 /95 px-3 py-1.5 text-neutral-300 shadow-[0_6px_24px_rgba(0,0,0,0.4)]" >
139+ < div className = "border-l-accent flex w-fit max-w-72 min-w-44 items-center rounded border-l-[3px] bg-neutral-800 /95 px-3 py-1.5 text-neutral-300 shadow-[0_6px_24px_rgba(0,0,0,0.4)]" >
140140 < span className = "mr-1.5 text-xs text-neutral-400" > ⠿</ span >
141141 < span className = "mr-2 text-[10px] text-neutral-400" > ▶</ span >
142142 < div className = "min-w-0 flex-1" >
@@ -416,21 +416,21 @@ const ProjectSidebarInner: React.FC<ProjectSidebarProps> = ({
416416 < DndProvider backend = { HTML5Backend } >
417417 < ProjectDragLayer />
418418 < div
419- className = "font-primary flex flex-1 flex-col overflow-hidden border-r border-neutral-800 bg-neutral-900 "
419+ className = "font-primary flex flex-1 flex-col overflow-hidden border-r border-neutral-800 bg-neutral-800 "
420420 role = "navigation"
421421 aria-label = "Projects"
422422 >
423423 { ! collapsed && (
424424 < >
425- < div className = "flex items-center justify-between border-b border-neutral-950 bg-neutral-900 p-4" >
425+ < div className = "flex items-center justify-between border-b border-neutral-950 bg-neutral-800 p-4" >
426426 < h2 className = "m-0 text-[13px] font-semibold tracking-[0.8px] text-neutral-300 uppercase" >
427427 Projects
428428 </ h2 >
429429 < TooltipWrapper inline >
430430 < button
431431 onClick = { onAddProject }
432432 aria-label = "Add project"
433- className = "flex h-6 w-6 cursor-pointer items-center justify-center rounded border border-transparent bg-transparent p-0 text-lg text-neutral-300 transition-all duration-200 hover:border-neutral-800 hover:bg-neutral-900 "
433+ className = "flex h-6 w-6 cursor-pointer items-center justify-center rounded border border-transparent bg-transparent p-0 text-lg text-neutral-300 transition-all duration-200 hover:border-neutral-800 hover:bg-neutral-800 "
434434 >
435435 +
436436 </ button >
@@ -549,7 +549,7 @@ const ProjectSidebarInner: React.FC<ProjectSidebarProps> = ({
549549 onClick = { ( ) => onAddWorkspace ( projectPath ) }
550550 data-project-path = { projectPath }
551551 aria-label = { `Add workspace to ${ projectName } ` }
552- className = "hover:border-neutral-800-darker w-full cursor-pointer rounded border border-dashed border-neutral-700 bg-transparent px-3 py-1.5 text-left text-[13px] text-neutral-400 transition-all duration-200 hover:bg-neutral-900 hover:text-neutral-300"
552+ className = "hover:border-neutral-800-darker w-full cursor-pointer rounded border border-dashed border-neutral-700 bg-transparent px-3 py-1.5 text-left text-[13px] text-neutral-400 transition-all duration-200 hover:bg-neutral-800 hover:text-neutral-300"
553553 >
554554 + New Workspace
555555 { selectedWorkspace ?. projectPath === projectPath &&
@@ -629,7 +629,7 @@ const ProjectSidebarInner: React.FC<ProjectSidebarProps> = ({
629629 < TooltipWrapper inline >
630630 < button
631631 onClick = { onToggleCollapsed }
632- className = "mt-auto flex h-9 w-full cursor-pointer items-center justify-center border-t border-none border-neutral-950 bg-transparent p-0 text-sm text-neutral-400 transition-all duration-200 hover:bg-neutral-900 hover:text-neutral-300"
632+ className = "mt-auto flex h-9 w-full cursor-pointer items-center justify-center border-t border-none border-neutral-950 bg-transparent p-0 text-sm text-neutral-400 transition-all duration-200 hover:bg-neutral-800 hover:text-neutral-300"
633633 >
634634 { collapsed ? "»" : "«" }
635635 </ button >
0 commit comments