Merge pull request #26969 from overleaf/dp-chat-text-color

Fix chat empty state colors in dark mode

GitOrigin-RevId: 8daca1971443d0112068bb06bb312ab633d39a20
This commit is contained in:
David
2025-07-09 10:52:32 +01:00
committed by Copybot
parent e17eaf51d2
commit 6969caf690

View File

@@ -211,7 +211,8 @@
border-radius: 50%;
display: inline-block;
line-height: 32px;
background-color: var(--bg-light-secondary);
background-color: var(--bg-secondary-themed);
color: var(--content-primary-themed);
.material-symbols {
font-size: 32px;
@@ -219,6 +220,7 @@
}
.chat-empty-state-title {
color: var(--content-primary-themed);
font-size: var(--font-size-02);
line-height: var(--line-height-02);
font-weight: bold;
@@ -227,7 +229,7 @@
.chat-empty-state-body {
font-size: var(--font-size-02);
line-height: var(--line-height-02);
color: var(--content-secondary);
color: var(--content-secondary-themed);
}
}