diff --git a/ui/components/EmptyChatMessageInput.tsx b/ui/components/EmptyChatMessageInput.tsx index 3dd4db5..dd0e0d3 100644 --- a/ui/components/EmptyChatMessageInput.tsx +++ b/ui/components/EmptyChatMessageInput.tsx @@ -31,7 +31,7 @@ const EmptyChatMessageInput = ({ }} className="w-full" > -
+
setMessage(e.target.value)} @@ -51,7 +51,7 @@ const EmptyChatMessageInput = ({ /> diff --git a/ui/components/MessageInput.tsx b/ui/components/MessageInput.tsx index d215787..69bc021 100644 --- a/ui/components/MessageInput.tsx +++ b/ui/components/MessageInput.tsx @@ -40,7 +40,7 @@ const MessageInput = ({ } }} className={cn( - 'bg-light-primary dark:bg-dark-primary p-4 flex items-center overflow-hidden border border-light-300 dark:border-dark-200', + 'bg-light-primary dark:bg-dark-primary p-4 flex items-center overflow-hidden border border-light-200 dark:border-dark-200', mode === 'multi' ? 'flex-col rounded-lg' : 'flex-row rounded-full', )} > @@ -62,7 +62,7 @@ const MessageInput = ({ /> @@ -78,7 +78,7 @@ const MessageInput = ({ /> diff --git a/ui/components/Navbar.tsx b/ui/components/Navbar.tsx index 2c0d87e..91e131f 100644 --- a/ui/components/Navbar.tsx +++ b/ui/components/Navbar.tsx @@ -38,7 +38,7 @@ const Navbar = ({ messages }: { messages: Message[] }) => { }, []); return ( -
+
({ }); const themeLight = (colors: DefaultColors) => ({ - 50: '#fff', - 100: colors.slate[50], - 200: colors.slate[100], - 300: colors.slate[200], + 50: '#fcfcf9', + 100: '#f3f3ee', + 200: '#ccccbe', + 300: '#a4a692', }); const config: Config = {