From ff1ca56157c523c72c3c7f2ff15003fd8d772d81 Mon Sep 17 00:00:00 2001 From: skoved Date: Tue, 26 Aug 2025 21:15:58 -0400 Subject: [PATCH 1/2] fix text color for topic names on discover page in light mode make light mode color for topic text black so it is readable --- src/app/discover/page.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/discover/page.tsx b/src/app/discover/page.tsx index 8e20e50..a9d0090 100644 --- a/src/app/discover/page.tsx +++ b/src/app/discover/page.tsx @@ -91,7 +91,7 @@ const Page = () => { 'border-[0.1px] rounded-full text-sm px-3 py-1 text-nowrap transition duration-200 cursor-pointer', activeTopic === t.key ? 'text-cyan-300 bg-cyan-300/30 border-cyan-300/60' - : 'border-white/30 text-white/70 hover:text-white hover:border-white/40 hover:bg-white/5', + : 'border-black/30 dark:border-white/30 text-black/70 dark:text-white/70 hover:text-black dark:hover:text-white hover:border-black/40 dark:hover:border-white/40 hover:bg-black/5 dark:hover:bg-white/5', )} onClick={() => setActiveTopic(t.key)} > From a546eb18a17750e6652b9198714368424745bd39 Mon Sep 17 00:00:00 2001 From: skoved Date: Tue, 26 Aug 2025 21:53:51 -0400 Subject: [PATCH 2/2] make file icon in attachment modal fit light theme better make the file icon in the attachment modal black on an off-white background so that it matches the light theme better and looks stylistically equivalent to its look in dark mode --- src/components/MessageInputActions/Attach.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/MessageInputActions/Attach.tsx b/src/components/MessageInputActions/Attach.tsx index eb25a89..42722a2 100644 --- a/src/components/MessageInputActions/Attach.tsx +++ b/src/components/MessageInputActions/Attach.tsx @@ -132,8 +132,8 @@ const Attach = ({ showText }: { showText?: boolean }) => { key={i} className="flex flex-row items-center justify-start w-full space-x-3 p-3" > -
- +
+

{file.fileName.length > 25