From 1df5e196323829ebdf40736f45330e4c77987f69 Mon Sep 17 00:00:00 2001 From: Aly Raffauf Date: Tue, 14 Apr 2026 23:00:54 -0400 Subject: [PATCH] web: improve contrast --- web/src/components/ActivityList.tsx | 6 +++--- web/src/components/BBSPanel.tsx | 12 ++++++------ web/src/components/DialBBS.tsx | 2 +- web/src/components/DiscoveryList.tsx | 2 +- web/src/components/ErrorPage.tsx | 2 +- web/src/components/Localtime.tsx | 2 +- web/src/components/MyThreadList.tsx | 12 ++++++------ web/src/components/PinnedList.tsx | 4 ++-- web/src/components/form/BoardRowEditor.tsx | 4 ++-- web/src/components/form/ComposeForm.tsx | 4 ++-- web/src/components/form/FileChips.tsx | 4 ++-- web/src/components/layout/Footer.tsx | 4 ++-- web/src/components/layout/Header.tsx | 4 ++-- .../components/layout/HeaderBreadcrumbs.tsx | 2 +- web/src/components/layout/MobileMenu.tsx | 2 +- web/src/components/nav/ListLink.tsx | 2 +- web/src/components/nav/PageNav.tsx | 4 ++-- web/src/components/nav/ThreadLink.tsx | 4 ++-- web/src/components/post/AttachmentLink.tsx | 2 +- web/src/components/post/PostActions.tsx | 4 ++-- web/src/components/post/PostMeta.tsx | 4 ++-- web/src/components/post/ReplyCard.tsx | 2 +- web/src/components/profile/EditProfile.tsx | 8 ++++---- web/src/components/profile/ViewProfile.tsx | 12 ++++++------ web/src/pages/BBS.tsx | 18 +++++++++--------- web/src/pages/Board.tsx | 6 +++--- web/src/pages/Dashboard.tsx | 12 ++++++------ web/src/pages/LoggedOutHome.tsx | 18 +++++++++--------- web/src/pages/Login.tsx | 10 +++++----- web/src/pages/News.tsx | 2 +- web/src/pages/NotFound.tsx | 2 +- web/src/pages/OAuthCallback.tsx | 2 +- web/src/pages/Profile.tsx | 4 ++-- web/src/pages/SysopCreate.tsx | 2 +- web/src/pages/SysopEdit.tsx | 2 +- web/src/pages/SysopModerate.tsx | 6 +++--- web/src/pages/Thread.tsx | 4 ++-- 37 files changed, 98 insertions(+), 98 deletions(-) diff --git a/web/src/components/ActivityList.tsx b/web/src/components/ActivityList.tsx index 7633beb..8de2995 100644 --- a/web/src/components/ActivityList.tsx +++ b/web/src/components/ActivityList.tsx @@ -16,7 +16,7 @@ export default function ActivityList({ items, userHandle }: ActivityListProps) { const [shown, setShown] = useState(PAGE_SIZE); if (items.length === 0) - return

No activity yet.

; + return

No activity yet.

; return (
@@ -31,7 +31,7 @@ export default function ActivityList({ items, userHandle }: ActivityListProps) { className="block border border-neutral-800/50 rounded p-4 mb-2 hover:bg-neutral-800" > -

+

{item.type === "quote" ? "quoted your reply" : `on: ${item.threadTitle}`} @@ -46,7 +46,7 @@ export default function ActivityList({ items, userHandle }: ActivityListProps) {

diff --git a/web/src/components/BBSPanel.tsx b/web/src/components/BBSPanel.tsx index 3e0a5bd..3f77688 100644 --- a/web/src/components/BBSPanel.tsx +++ b/web/src/components/BBSPanel.tsx @@ -14,7 +14,7 @@ export default function BBSPanel({ hasBBS, userHandle, onDelete }: BBSPanelProps if (!hasBBS) { return ( <> -

+

You haven't set up a BBS yet.

create a bbs @@ -26,22 +26,22 @@ export default function BBSPanel({ hasBBS, userHandle, onDelete }: BBSPanelProps
Browse
-
View your BBS.
+
View your BBS.
Edit
-
Name, boards, intro.
+
Name, boards, intro.
Moderate
-
Bans and hidden posts.
+
Bans and hidden posts.
); diff --git a/web/src/components/DialBBS.tsx b/web/src/components/DialBBS.tsx index 86215bb..d62c5e0 100644 --- a/web/src/components/DialBBS.tsx +++ b/web/src/components/DialBBS.tsx @@ -123,7 +123,7 @@ export default function DialBBS({ discovered, suggestions }: DialBBSProps) { > {entry.name} {entry.name !== entry.handle && ( - {entry.handle} + {entry.handle} )} ))} diff --git a/web/src/components/DiscoveryList.tsx b/web/src/components/DiscoveryList.tsx index fc3a4fe..9abe6b2 100644 --- a/web/src/components/DiscoveryList.tsx +++ b/web/src/components/DiscoveryList.tsx @@ -14,7 +14,7 @@ export default function DiscoveryList({ return (
-

+

or try one of these

diff --git a/web/src/components/ErrorPage.tsx b/web/src/components/ErrorPage.tsx index 11465eb..57dda43 100644 --- a/web/src/components/ErrorPage.tsx +++ b/web/src/components/ErrorPage.tsx @@ -28,7 +28,7 @@ export default function ErrorPage() { return (

{title}

- {detail &&

{detail}

} + {detail &&

{detail}

} ← back to home
); diff --git a/web/src/components/Localtime.tsx b/web/src/components/Localtime.tsx index 363d29f..badfe42 100644 --- a/web/src/components/Localtime.tsx +++ b/web/src/components/Localtime.tsx @@ -3,7 +3,7 @@ import { formatFullDate, relativeDate } from "../lib/util"; export default function Localtime({ iso }: { iso: string }) { if (!iso) return null; return ( -