From 4f317fb0882616f0229b58788ab5bda722d92a9c Mon Sep 17 00:00:00 2001 From: mic Date: Wed, 21 Aug 2024 15:25:02 +0200 Subject: [PATCH] improved dark color scheme for api webchat --- api_webchat/styles.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/api_webchat/styles.css b/api_webchat/styles.css index 807c3a4b..ddc6c883 100644 --- a/api_webchat/styles.css +++ b/api_webchat/styles.css @@ -43,7 +43,7 @@ p { /* Dark mode styles */ @media (prefers-color-scheme: dark) { body { - background-color: #000000; - color: #ffffff; + background-color: rgb(33, 33, 33); + color: rgb(236, 236, 236); } } \ No newline at end of file