From ede27455c881c59fa93b88db3082812791ec9416 Mon Sep 17 00:00:00 2001 From: Jonas Heller <168646044+jheller1212@users.noreply.github.com> Date: Fri, 12 Jun 2026 00:03:17 +0200 Subject: [PATCH] feat(design): calmer navy chat + setup surfaces (re-theme 2/2) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Harmonizes the chat and setup screens with the navy aurora environment. Per the 'chat calmer' choice, these are SOLID navy (not translucent glass like the dashboard) for legibility during long sessions: - dark gray surfaces → navy scale: gray-900→#0c1830, gray-800→#0f1e38, gray-700/600→#16294a (raised); gray borders → white/10 - Applied to ChatPanel, ConversationDisplay, SetupPage, AIConfigPanel, ModelConfig, DataTable, ConversationAnalytics Background/border only — text colors untouched (stay light on navy). Light mode unchanged. User-set bot bubble colors untouched. --- src/components/AIConfigPanel.tsx | 14 ++--- src/components/ChatPanel.tsx | 66 ++++++++++++------------ src/components/ConversationAnalytics.tsx | 16 +++--- src/components/ConversationDisplay.tsx | 6 +-- src/components/DataTable.tsx | 6 +-- src/components/ModelConfig.tsx | 10 ++-- src/components/SetupPage.tsx | 24 ++++----- 7 files changed, 71 insertions(+), 71 deletions(-) diff --git a/src/components/AIConfigPanel.tsx b/src/components/AIConfigPanel.tsx index 859cfde..42a6d6f 100644 --- a/src/components/AIConfigPanel.tsx +++ b/src/components/AIConfigPanel.tsx @@ -136,7 +136,7 @@ export function AIConfigPanel({ value={title} onChange={(e) => onTitleChange(e.target.value)} maxLength={50} - className="text-base font-semibold text-gray-900 dark:text-gray-100 bg-transparent border-b border-gray-300 dark:border-gray-600 focus:border-indigo-500 focus:outline-none w-full" + className="text-base font-semibold text-gray-900 dark:text-gray-100 bg-transparent border-b border-gray-300 dark:border-white/10 focus:border-indigo-500 focus:outline-none w-full" placeholder="Bot name" /> @@ -193,7 +193,7 @@ export function AIConfigPanel({ {showVersions && (
{versions.length === 0 ? (

@@ -202,7 +202,7 @@ export function AIConfigPanel({ ) : (

{versions.map((v) => ( -
+

{formatDate(v.created_at)}

{v.content}

@@ -223,13 +223,13 @@ export function AIConfigPanel({