Skip to content

Commit 2695437

Browse files
style: unify card and page backgrounds for a cohesive cream canvas
--c-surface now matches --c-bg in both light and dark modes. Cards become defined by their border-light outlines rather than a darker fill, so the page reads as one continuous surface instead of a grid of slightly grayer panels. --c-surface-raised keeps a subtle state delta on hover so cards still feel interactive, just without changing the resting palette. Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
1 parent c34ccc2 commit 2695437

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

src/app/globals.css

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88
:root {
99
/* Backgrounds */
1010
--c-bg: #FAF6EF; /* page background */
11-
--c-surface: #EDE8E1; /* cards */
12-
--c-surface-raised: #F5F0E8; /* cards lifted above surface */
11+
--c-surface: #FAF6EF; /* cards (matches page for a unified cream canvas) */
12+
--c-surface-raised: #F1ECE3; /* cards on hover: slight darken for state feedback */
1313

1414
/* Text */
1515
--c-ink: #160A06; /* primary text */
@@ -31,8 +31,8 @@
3131
[data-theme="dark"] {
3232
/* Backgrounds */
3333
--c-bg: #0F0C09; /* page background */
34-
--c-surface: #1A1510; /* cards */
35-
--c-surface-raised: #241D16; /* cards lifted above surface */
34+
--c-surface: #0F0C09; /* cards (matches page in dark mode too) */
35+
--c-surface-raised: #1A1510; /* cards on hover: slight lift for state feedback */
3636

3737
/* Text */
3838
--c-ink: #EDE8E1; /* primary text */

0 commit comments

Comments
 (0)