Skip to content

Commit 7c101f4

Browse files
author
Magomed-Elbi_Dzhukalaev
committed
fix(chat): fix colors
1 parent d5554a2 commit 7c101f4

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

apps/chat/src/components/Chat/Publish/ApproveRequiredSection.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -247,7 +247,7 @@ export const ApproveRequiredSection = ({
247247
isHighlighted={isSectionHighlighted}
248248
additionalNode={
249249
!!publicationsToReviewCount && (
250-
<span className="absolute right-4 flex h-[14px] min-w-[14px] select-none items-center justify-center rounded bg-accent-primary px-[2px] text-xxs font-semibold text-controls-disable">
250+
<span className="absolute right-4 flex h-[14px] min-w-[14px] select-none items-center justify-center rounded bg-accent-secondary px-[2px] text-xxs font-semibold text-layer-3">
251251
{publicationsToReviewCount}
252252
</span>
253253
)

apps/chat/src/components/Common/AnnouncementBanner.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ export const AnnouncementsBanner = () => {
4242
<span dangerouslySetInnerHTML={{ __html: announcement }}></span>
4343
</div>
4444
<DialCloseButton
45-
className="absolute right-2 top-[calc(50%_-_12px)] shrink-0"
45+
className="absolute right-2 top-[calc(50%_-_12px)] shrink-0 text-primary"
4646
onClose={() => {
4747
dispatch(UIActions.closeAnnouncement({ announcement }));
4848
}}

apps/chat/tailwind.config.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,7 @@ module.exports = {
7171
'accent-tertiary': 'var(--text-accent-tertiary, #A972FF)',
7272
'controls-permanent': 'var(--controls-text-permanent, #FCFCFC)',
7373
'controls-disable': 'var(--controls-text-disable, #5B6570)',
74+
'layer-3': 'var(--bg-layer-3, #222932)',
7475
},
7576
gradientColorStops: commonBgColors,
7677
/////////

0 commit comments

Comments
 (0)