Skip to content

Commit d951d46

Browse files
committed
polish(web): brighten Models source-tree branches for visibility
The unselected tree elbows were too faint on the expanded row; nudge the light branch (#e3e3e3 -> #d0d0d0) so all rounded connectors read like bud's, keeping the dark accent + check node on the selected source.
1 parent 9883570 commit d951d46

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

apps/web/src/components/settings/agents-panel.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -382,7 +382,7 @@ function ModelSourceList({
382382
<div className="relative flex flex-col pl-8">
383383
{choices.map((choice, index) => {
384384
const isLast = index === choices.length - 1;
385-
const branch = choice.active ? "#1b1b1b" : "#e3e3e3";
385+
const branch = choice.active ? "#1b1b1b" : "#d0d0d0";
386386
return (
387387
<div className="group/item relative z-10" key={choice.id}>
388388
{/* rounded elbow from the tree line into this item */}
@@ -401,7 +401,7 @@ function ModelSourceList({
401401
{isLast ? null : (
402402
<span
403403
aria-hidden="true"
404-
className="absolute top-2 -bottom-1 -left-8 w-[1.5px] bg-[#e3e3e3]"
404+
className="absolute top-2 -bottom-1 -left-8 w-[1.5px] bg-[#d0d0d0]"
405405
/>
406406
)}
407407
{/* filled check node at the elbow end, only for the active source */}

0 commit comments

Comments
 (0)