diff --git a/src/components/ChatWindow.tsx b/src/components/ChatWindow.tsx
index cb955e4..8e06f94 100644
--- a/src/components/ChatWindow.tsx
+++ b/src/components/ChatWindow.tsx
@@ -352,13 +352,6 @@ export function ChatWindow({ session, config, onAddMessage }: ChatWindowProps) {
gap: '6px'
}}>
Assistant
-
diff --git a/src/components/SessionDrawer.tsx b/src/components/SessionDrawer.tsx
index e0d5b7b..0220dbe 100644
--- a/src/components/SessionDrawer.tsx
+++ b/src/components/SessionDrawer.tsx
@@ -125,7 +125,7 @@ export function SessionDrawer({
fontSize: '13px',
fontWeight: 600,
marginBottom: '16px',
- color: 'var(--text-secondary)',
+ color: 'var(--accent)',
textTransform: 'uppercase',
letterSpacing: '0.5px'
}}>
@@ -205,7 +205,7 @@ export function SessionDrawer({
display: 'block',
fontSize: '13px',
fontWeight: 500,
- color: 'var(--text-primary)',
+ color: 'var(--accent)',
marginBottom: '2px'
}}>
Streaming Response
@@ -247,7 +247,7 @@ export function SessionDrawer({
fontWeight: 600,
marginBottom: '12px',
marginLeft: '8px',
- color: 'var(--text-secondary)',
+ color: 'var(--accent)',
textTransform: 'uppercase',
letterSpacing: '0.5px'
}}>
@@ -276,11 +276,11 @@ export function SessionDrawer({
padding: '12px 14px',
borderRadius: 'var(--radius-md)',
backgroundColor: currentSessionId === session.id
- ? 'var(--accent)'
+ ? 'var(--bg-hover)'
: 'var(--bg-tertiary)',
cursor: 'pointer',
transition: 'var(--transition)',
- border: `1px solid ${currentSessionId === session.id ? 'var(--accent)' : 'transparent'}`,
+ border: `1px solid ${currentSessionId === session.id ? 'var(--border-light)' : 'transparent'}`,
boxShadow: currentSessionId === session.id ? 'var(--shadow)' : 'none'
}}
onClick={() => {
@@ -292,7 +292,7 @@ export function SessionDrawer({