Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Muted color normalized #1793

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions app/[locale]/globals.css
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
--background: 0 0% 100%;
--foreground: 0 0% 3.9%;

--muted: 0 0% 96.1%;
--muted: 0 0% 96.5%;
--muted-foreground: 0 0% 45.1%;

--popover: 0 0% 100%;
Expand Down Expand Up @@ -66,7 +66,7 @@
--background: 0 0% 3.9%;
--foreground: 0 0% 98%;

--muted: 0 0% 14.9%;
--muted: 0 0% 9.5%;
--muted-foreground: 0 0% 63.9%;

--popover: 0 0% 3.9%;
Expand Down
2 changes: 1 addition & 1 deletion components/chat/chat-input.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ export const ChatInput: FC<ChatInputProps> = ({}) => {
)}
</div>

<div className="border-input relative mt-3 flex min-h-[60px] w-full items-center justify-center rounded-xl border-2">
<div className="border-input bg-muted relative mt-3 flex min-h-[60px] w-full items-center justify-center rounded-xl border-2">
<div className="absolute bottom-[76px] left-0 max-h-[300px] w-full overflow-auto rounded-xl dark:border-none">
<ChatCommandInput />
</div>
Expand Down
2 changes: 1 addition & 1 deletion components/ui/dashboard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ export const Dashboard: FC<DashboardProps> = ({ children }) => {
</div>

<div
className="bg-muted/50 relative flex w-screen min-w-[90%] grow flex-col sm:min-w-fit"
className="bg-muted relative flex w-screen min-w-[90%] grow flex-col sm:min-w-fit"
onDrop={onFileDrop}
onDragOver={onDragOver}
onDragEnter={handleDragEnter}
Expand Down