Skip to content

Commit 3ebd754

Browse files
chore(web): Subtle color adjustment for light mode
1 parent 9fe10b0 commit 3ebd754

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

packages/web/src/app/globals.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
}
1717

1818
:root {
19-
--background: hsl(0 0% 100%);
19+
--background: hsl(0 0% 99%);
2020
--background-secondary: hsl(0, 0%, 98%);
2121
--foreground: hsl(37, 84%, 5%);
2222
--card: hsl(0 0% 100%);

packages/web/src/features/chat/components/chatThread/answerCard.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ const AnswerCardComponent = forwardRef<HTMLDivElement, AnswerCardProps>(({
109109
className="sticky top-0 h-fit max-w-44 py-2 mr-1.5"
110110
/>
111111
)}
112-
<div className="flex flex-col w-full bg-[#fcfcfc] dark:bg-[#0e1320] px-4 py-2 rounded-lg shadow-sm">
112+
<div className="flex flex-col w-full bg-[#fafafa] dark:bg-[#0e1320] px-4 py-2 rounded-lg shadow-sm">
113113
<div className="flex flex-col z-10 bg-inherit py-2 sticky top-0">
114114
<div className="flex items-center justify-between mb-2">
115115
<p className="font-semibold text-muted-foreground">Answer</p>

0 commit comments

Comments
 (0)