Skip to content

Commit 2e587b9

Browse files
committed
fix(webapp): the resting agent logo is one step off the surface extreme
charcoal-100 ink on dark, charcoal-800 on light — pure white/black stays reserved for the animated peak, so rest is calm and thinking visibly glows.
1 parent 2bb5bdf commit 2e587b9

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

apps/webapp/app/components/primitives/AgentDotMatrix.tsx

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -666,7 +666,10 @@ export function AgentMonoLogo(props: Omit<AgentDotMatrixProps, "palette" | "rest
666666
{...props}
667667
mode={mode}
668668
palette={light ? "monoLight" : "mono"}
669-
restColor={light ? DOT_MATRIX_PALETTES.monoLight.glow : DOT_MATRIX_PALETTES.mono.glow}
669+
// Rest ink is one step off the surface's extreme (charcoal-100 on dark,
670+
// charcoal-800 on light) — pure white/black is reserved for the animated
671+
// peak, so a resting logo is calm and a thinking one visibly glows.
672+
restColor={light ? "#1a1b1f" : "#d7d9dd"}
670673
/>
671674
);
672675
}

0 commit comments

Comments
 (0)