refactor(theme): lighten backgrounds, simplify header/sidebar/panel styling
This commit is contained in:
parent
227012ba1a
commit
fc328adf31
5 changed files with 30 additions and 30 deletions
|
|
@ -158,7 +158,7 @@ export function UnifiedShell({
|
|||
};
|
||||
|
||||
return (
|
||||
<div className="flex flex-col h-screen" style={{ backgroundColor: 'var(--color-bg-base)' }} data-testid="unified-shell">
|
||||
<div className="flex flex-col h-screen bg-[var(--ui-bg-app)]" data-testid="unified-shell">
|
||||
{/* TOP BAR: 3rem fixed */}
|
||||
<TopBar />
|
||||
|
||||
|
|
@ -182,7 +182,7 @@ export function UnifiedShell({
|
|||
<ResizeHandle direction="left" onResize={handleLeftResize} />
|
||||
|
||||
{/* MIDDLE CONTENT: flex-1 */}
|
||||
<div className="flex-1 relative overflow-hidden bg-black/10 shadow-inner" data-testid="middle-content">
|
||||
<div className="flex-1 relative overflow-hidden bg-[var(--ui-bg-shell)]" data-testid="middle-content">
|
||||
{renderMiddleContent()}
|
||||
</div>
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue