change unread color

This commit is contained in:
2024-12-17 04:03:37 +02:00
parent ac7b00662f
commit 0f95f947ec
24 changed files with 56 additions and 57 deletions

View File

@@ -150,7 +150,7 @@ export const DesktopFooter = ({
height={30}
color={
hasUnreadGroups
? "var(--unread)"
? "var(--danger)"
: isGroups
? "white"
: "rgba(250, 250, 250, 0.5)"
@@ -172,7 +172,7 @@ export const DesktopFooter = ({
height={30}
color={
hasUnreadDirects
? "var(--unread)"
? "var(--danger)"
: isDirects
? "white"
: "rgba(250, 250, 250, 0.5)"

View File

@@ -109,7 +109,7 @@ export const DesktopHeader = ({
)}
{isPrivate === false && (
<NoEncryptionGmailerrorredIcon sx={{
color: 'var(--unread)'
color: 'var(--danger)'
}} />
)}
<Typography
@@ -158,7 +158,7 @@ export const DesktopHeader = ({
height={25}
color={
hasUnreadGroups
? "var(--unread)"
? "var(--danger)"
: isGroups
? "white"
: "rgba(250, 250, 250, 0.5)"
@@ -180,7 +180,7 @@ export const DesktopHeader = ({
height={25}
color={
hasUnreadDirects
? "var(--unread)"
? "var(--danger)"
: isDirects
? "white"
: "rgba(250, 250, 250, 0.5)"