diff --git a/ui/components/EmptyChatMessageInput.tsx b/ui/components/EmptyChatMessageInput.tsx index 2e3ab53..f955fc9 100644 --- a/ui/components/EmptyChatMessageInput.tsx +++ b/ui/components/EmptyChatMessageInput.tsx @@ -31,7 +31,7 @@ const EmptyChatMessageInput = ({ }} className="w-full" > -
+
setMessage(e.target.value)} diff --git a/ui/components/Layout.tsx b/ui/components/Layout.tsx index e517e00..832be78 100644 --- a/ui/components/Layout.tsx +++ b/ui/components/Layout.tsx @@ -1,6 +1,6 @@ const Layout = ({ children }: { children: React.ReactNode }) => { return ( -
+
{children}
); diff --git a/ui/components/MessageBoxLoading.tsx b/ui/components/MessageBoxLoading.tsx index e070a27..6e64b8e 100644 --- a/ui/components/MessageBoxLoading.tsx +++ b/ui/components/MessageBoxLoading.tsx @@ -1,6 +1,6 @@ const MessageBoxLoading = () => { return ( -
+
diff --git a/ui/components/MessageInput.tsx b/ui/components/MessageInput.tsx index baf6095..64432a7 100644 --- a/ui/components/MessageInput.tsx +++ b/ui/components/MessageInput.tsx @@ -40,7 +40,7 @@ const MessageInput = ({ } }} className={cn( - 'bg-[#111111] p-4 flex items-center overflow-hidden border border-[#1C1C1C]', + 'bg-gray-40/20 p-4 flex items-center overflow-hidden border border-[#1C1C1C]', mode === 'multi' ? 'flex-col rounded-lg' : 'flex-row rounded-full', )} > diff --git a/ui/components/MessageInputActions.tsx b/ui/components/MessageInputActions.tsx index 9c00c4d..b90e9d9 100644 --- a/ui/components/MessageInputActions.tsx +++ b/ui/components/MessageInputActions.tsx @@ -109,7 +109,7 @@ export const Focus = ({ leaveTo="opacity-0 translate-y-1" > -
+
{focusModes.map((mode, i) => ( setFocusMode(mode.key)} @@ -117,8 +117,8 @@ export const Focus = ({ className={cn( 'p-2 rounded-lg flex flex-col items-start justify-start text-start space-y-2 duration-200 cursor-pointer transition', focusMode === mode.key - ? 'bg-[#111111]' - : 'hover:bg-[#111111]', + ? 'bg-gray-40/20' + : 'hover:bg-gray-40/20', )} >
Copilot {
{sources.slice(0, 3).map((source, i) => ( { {sources.length > 3 && (
diff --git a/ui/components/Sidebar.tsx b/ui/components/Sidebar.tsx index aef1153..9159725 100644 --- a/ui/components/Sidebar.tsx +++ b/ui/components/Sidebar.tsx @@ -38,7 +38,7 @@ const Sidebar = ({ children }: { children: React.ReactNode }) => { return (
-
+
@@ -70,7 +70,7 @@ const Sidebar = ({ children }: { children: React.ReactNode }) => {
-
+
{navLinks.map((link, i) => (