diff --git a/src/components/ui/toast/toast.tsx b/src/components/ui/toast/toast.tsx
index f80937481..ed89fe46b 100644
--- a/src/components/ui/toast/toast.tsx
+++ b/src/components/ui/toast/toast.tsx
@@ -106,7 +106,7 @@ const Toast = (props: IToast) => {
data-testid='toast'
className={
clsx({
- 'p-4 pointer-events-auto w-full max-w-sm overflow-hidden rounded-lg bg-white dark:bg-gray-900 shadow-lg dark:ring-2 dark:ring-gray-800': true,
+ 'p-4 pointer-events-auto w-full max-w-sm overflow-hidden rounded-lg bg-white black:bg-black dark:bg-gray-900 shadow-lg dark:ring-2 dark:ring-gray-800': true,
'animate-enter': t.visible,
'animate-leave': !t.visible,
})
diff --git a/src/features/account/components/header.tsx b/src/features/account/components/header.tsx
index 8b4f3de88..c9cae466c 100644
--- a/src/features/account/components/header.tsx
+++ b/src/features/account/components/header.tsx
@@ -110,7 +110,7 @@ const Header: React.FC
= ({ account }) => {
return (
@@ -620,7 +620,7 @@ const Header: React.FC
= ({ account }) => {
)}
-
+
{renderHeader()}
diff --git a/src/features/chats/components/chat-page/chat-page.tsx b/src/features/chats/components/chat-page/chat-page.tsx
index 344b7a90a..8384c8744 100644
--- a/src/features/chats/components/chat-page/chat-page.tsx
+++ b/src/features/chats/components/chat-page/chat-page.tsx
@@ -60,15 +60,15 @@ const ChatPage: React.FC
= ({ chatId }) => {
{isOnboarded ? (
diff --git a/src/features/chats/components/ui/pane.tsx b/src/features/chats/components/ui/pane.tsx
index 6583b76fc..40d58fad2 100644
--- a/src/features/chats/components/ui/pane.tsx
+++ b/src/features/chats/components/ui/pane.tsx
@@ -12,7 +12,7 @@ interface IPane {
const Pane: React.FC = ({ isOpen = false, children }) => {
return (
= ({ status }) => {
return (
<>
@@ -363,13 +363,13 @@ const EventHeader: React.FC
= ({ status }) => {
return (
<>
-
+
{banner && (
)}
diff --git a/src/features/group/components/group-header.tsx b/src/features/group/components/group-header.tsx
index 0753216ca..21eb7e5dd 100644
--- a/src/features/group/components/group-header.tsx
+++ b/src/features/group/components/group-header.tsx
@@ -36,7 +36,7 @@ const GroupHeader: React.FC
= ({ group }) => {
return (
diff --git a/src/features/placeholder/components/placeholder-event-preview.tsx b/src/features/placeholder/components/placeholder-event-preview.tsx
index 024975763..09ae4e9ca 100644
--- a/src/features/placeholder/components/placeholder-event-preview.tsx
+++ b/src/features/placeholder/components/placeholder-event-preview.tsx
@@ -9,7 +9,7 @@ const PlaceholderEventPreview = () => {
const nameLength = randomIntFromInterval(5, 15);
return (
-
+
{generateText(eventNameLength)}
diff --git a/src/features/placeholder/components/placeholder-group-card.tsx b/src/features/placeholder/components/placeholder-group-card.tsx
index b43ae1aaf..b8b221ab4 100644
--- a/src/features/placeholder/components/placeholder-group-card.tsx
+++ b/src/features/placeholder/components/placeholder-group-card.tsx
@@ -9,7 +9,7 @@ const PlaceholderGroupCard = () => {
return (
-
+
{/* Group Cover Image */}
diff --git a/src/features/placeholder/components/placeholder-notification.tsx b/src/features/placeholder/components/placeholder-notification.tsx
index 77c3032ae..8e66b08a1 100644
--- a/src/features/placeholder/components/placeholder-notification.tsx
+++ b/src/features/placeholder/components/placeholder-notification.tsx
@@ -8,7 +8,7 @@ import PlaceholderStatusContent from './placeholder-status-content';
/** Fake notification to display while data is loading. */
const PlaceholderNotification = () => (
-
+
diff --git a/src/features/placeholder/components/placeholder-status.tsx b/src/features/placeholder/components/placeholder-status.tsx
index 2aea94bb5..c6d7221ad 100644
--- a/src/features/placeholder/components/placeholder-status.tsx
+++ b/src/features/placeholder/components/placeholder-status.tsx
@@ -15,7 +15,7 @@ interface IPlaceholderStatus {
const PlaceholderStatus: React.FC
= ({ variant }) => (
{
- {showExplanationBox &&
+ {showExplanationBox &&
}
action={dismissExplanationBox}
diff --git a/src/features/soapbox-config/components/site-preview.tsx b/src/features/soapbox-config/components/site-preview.tsx
index c757e6f7e..617dc3121 100644
--- a/src/features/soapbox-config/components/site-preview.tsx
+++ b/src/features/soapbox-config/components/site-preview.tsx
@@ -22,7 +22,7 @@ const SitePreview: React.FC
= ({ soapbox }) => {
const userTheme = settings.get('themeMode');
const systemTheme = useSystemTheme();
- const dark = userTheme === 'dark' || (userTheme === 'system' && systemTheme === 'dark');
+ const dark = ['dark', 'black'].includes(userTheme as string) || (userTheme === 'system' && systemTheme === 'dark');
const bodyClass = clsx(
'site-preview',
diff --git a/src/features/ui/components/background-shapes.tsx b/src/features/ui/components/background-shapes.tsx
index 63df83ead..f256ad987 100644
--- a/src/features/ui/components/background-shapes.tsx
+++ b/src/features/ui/components/background-shapes.tsx
@@ -8,7 +8,7 @@ interface IBackgroundShapes {
/** Gradient that appears in the background of the UI. */
const BackgroundShapes: React.FC = ({ position = 'fixed' }) => (
-
+
);
diff --git a/src/features/ui/components/navbar.tsx b/src/features/ui/components/navbar.tsx
index 0be4e3948..79d478404 100644
--- a/src/features/ui/components/navbar.tsx
+++ b/src/features/ui/components/navbar.tsx
@@ -70,7 +70,7 @@ const Navbar = () => {
if (mfaToken) return
;
return (
-