From 34ce0c4c871e9f9ec175295d26132c5c3ecbb6d2 Mon Sep 17 00:00:00 2001 From: Maria Rushkova <66270386+mrushkova@users.noreply.github.com> Date: Fri, 1 Oct 2021 15:51:08 +0200 Subject: [PATCH] Fix background colors (#28) --- packages/react-chat/src/components/Chat/ChatBody.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/react-chat/src/components/Chat/ChatBody.tsx b/packages/react-chat/src/components/Chat/ChatBody.tsx index 485c71a2..80c99fd8 100644 --- a/packages/react-chat/src/components/Chat/ChatBody.tsx +++ b/packages/react-chat/src/components/Chat/ChatBody.tsx @@ -72,7 +72,7 @@ const ChatBodyWrapper = styled.div` flex-direction: column; flex: 1; height: 100%; - background: ${({ theme }) => theme.textPrimaryColor}; + background: ${({ theme }) => theme.bodyBackgroundColor}; `; const ChannelWrapper = styled.div` @@ -100,7 +100,7 @@ const CommunityWrap = styled.div` height: 24px; transform: translateY(-50%); border-radius: 1px; - background: ${({ theme }) => theme.bodyBackgroundColor}; + background: ${({ theme }) => theme.textPrimaryColor}; opacity: 0.1; } `;