Skip to content

Commit d154d50

Browse files
committed
polish(web): home + transcript bud-parity
- Home weather line: text-[13px]/#5f5f5f/leading-[19.5px] -> text-[16px]/#1b1b1b/leading-[24px] (bud's weather line spec). - Transcript: inline code-chip bg near-black rgba(9,9,11,0.95) -> grey #f5f5f5 (bud renders code/value chips as light-grey chips; text inherits dark body color); user-message surface #efefef -> #f5f5f5 and tool-arg chip #f4f4f4 -> #f5f5f5 (bud's #f5f5f5 surfaces).
1 parent 61e854f commit d154d50

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

apps/web/src/app/globals.css

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -384,7 +384,7 @@
384384
--thread-accent-purple-glow: rgba(248, 175, 44, 0.18);
385385

386386
/* Thread Message Bubbles */
387-
--thread-user-message-bg: #efefef;
387+
--thread-user-message-bg: #f5f5f5;
388388
--thread-assistant-message-bg: #ffffff;
389389
--thread-assistant-message-border: #f1f1f1;
390390

@@ -667,7 +667,7 @@
667667
padding: 0.2em 0.4em;
668668
font-size: 0.85em;
669669
font-family: var(--font-mono);
670-
background-color: rgba(9, 9, 11, 0.95);
670+
background-color: #f5f5f5;
671671
border-radius: 3px;
672672
word-break: break-word;
673673
}

apps/web/src/components/chat/message-parts.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -521,7 +521,7 @@ function ToolRow({ parts }: { parts: MessagePart[] }) {
521521
/>
522522
<span className="shrink-0">{verb}</span>
523523
{arg ? (
524-
<code className="truncate rounded bg-[#f4f4f4] px-1.5 py-0.5 font-mono text-[#1b1b1b] text-[12px]">
524+
<code className="truncate rounded bg-[#f5f5f5] px-1.5 py-0.5 font-mono text-[#1b1b1b] text-[12px]">
525525
{arg}
526526
</code>
527527
) : null}

apps/web/src/components/home/home-greeting.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ export function HomeGreeting() {
3333
}
3434
const clock = CLOCK_FORMATTER.format(now).replace(/\s+/g, "");
3535
return (
36-
<p className="mt-4 text-center font-medium text-[#5f5f5f] text-[13px] leading-[19.5px]">
36+
<p className="mt-4 text-center font-medium text-[#1b1b1b] text-[16px] leading-[24px]">
3737
{`${clock}${weatherSuffix(greeting ?? null)}`}
3838
</p>
3939
);

0 commit comments

Comments
 (0)