From 6969caf69075466c5fbdd4da99b5df1c0f8b9841 Mon Sep 17 00:00:00 2001 From: David <33458145+davidmcpowell@users.noreply.github.com> Date: Wed, 9 Jul 2025 10:52:32 +0100 Subject: [PATCH] Merge pull request #26969 from overleaf/dp-chat-text-color Fix chat empty state colors in dark mode GitOrigin-RevId: 8daca1971443d0112068bb06bb312ab633d39a20 --- .../frontend/stylesheets/bootstrap-5/pages/editor/chat.scss | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/services/web/frontend/stylesheets/bootstrap-5/pages/editor/chat.scss b/services/web/frontend/stylesheets/bootstrap-5/pages/editor/chat.scss index b0e50cd95d..5d39e6b414 100644 --- a/services/web/frontend/stylesheets/bootstrap-5/pages/editor/chat.scss +++ b/services/web/frontend/stylesheets/bootstrap-5/pages/editor/chat.scss @@ -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); } }