From 47e52b5a2dbc2ad1d9242a578eeb551e898e4cb0 Mon Sep 17 00:00:00 2001 From: yoginawaka Date: Sat, 22 Feb 2025 00:14:10 +0530 Subject: [PATCH] did more changes --- app/home/TokenomicsSection.tsx | 2 +- components/chat/ChatInput.tsx | 2 +- components/chat/MessageBubble.tsx | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/app/home/TokenomicsSection.tsx b/app/home/TokenomicsSection.tsx index e5dc6bf..d79f769 100644 --- a/app/home/TokenomicsSection.tsx +++ b/app/home/TokenomicsSection.tsx @@ -29,7 +29,7 @@ export default function TokenomicsSection() { }, { id: 2, - color: "#FBBC05", + color: "#1D9BF0", title: "TEAM ALLOCATIONS", percentage: "2%", content: { diff --git a/components/chat/ChatInput.tsx b/components/chat/ChatInput.tsx index f330f5a..75c3afc 100644 --- a/components/chat/ChatInput.tsx +++ b/components/chat/ChatInput.tsx @@ -12,7 +12,7 @@ export const ChatInput = ({ input, setInput, handleSubmit, isLoading }: ChatInpu value={input} onChange={(e) => setInput(e.target.value)} placeholder="What's on your mind?" - className="w-full px-4 py-3 rounded-xl bg-white border border-gray-200 focus:ring-1 focus:ring-[#1DA2FF] focus:outline-none hover:ring-[#1DA2FF] hover:ring-1 transition duration-200 ease-linear" + className="w-full px-4 py-3 rounded-xl bg-white border border-gray-200 focus:ring-1 focus:ring-[#F3BA2F] focus:outline-none hover:ring-[#F3BA2F] hover:ring-1 transition duration-200 ease-linear" disabled={isLoading} />
diff --git a/components/chat/MessageBubble.tsx b/components/chat/MessageBubble.tsx index d709928..be7623f 100644 --- a/components/chat/MessageBubble.tsx +++ b/components/chat/MessageBubble.tsx @@ -85,7 +85,7 @@ const MessageBubble = ({ message, userName, avatarConfig }: MessageBubbleProps) > {!isUser && ( @@ -120,7 +120,7 @@ const MessageBubble = ({ message, userName, avatarConfig }: MessageBubbleProps)