From c4ac6bc5d410dee123929ab2050319d8e7c6ad06 Mon Sep 17 00:00:00 2001 From: Cho Young-Hwi Date: Sat, 21 Mar 2026 20:33:21 +0000 Subject: [PATCH] Restore paper-like feel with subtler intensity MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Paper bg: warmer white (#FFFCF7) that stands out from page bg - Lines: slightly more visible (hsl 40% sat, 90% light) - Margin line: more visible pink (hsl 60% sat, 92% light) - Box-shadow: 0.08 opacity — subtle lift without being heavy Co-Authored-By: Claude Opus 4.6 (1M context) --- src/app/globals.css | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/app/globals.css b/src/app/globals.css index 6c461865..f3a655c7 100644 --- a/src/app/globals.css +++ b/src/app/globals.css @@ -11,9 +11,9 @@ --accent-dim: #6B3410; --border: #D4C5B0; --error: #CC3333; - --paper-line: hsl(234, 30%, 92%); - --paper-margin: hsl(350, 40%, 94%); - --paper-bg: hsl(30, 20%, 96%); + --paper-line: hsl(234, 40%, 90%); + --paper-margin: hsl(350, 60%, 92%); + --paper-bg: #FFFCF7; } @theme inline { @@ -72,7 +72,7 @@ h1, h2, h3, h4, h5, h6 { var(--paper-line) 1.6em, transparent 1.6em ); - box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.05); + box-shadow: 0 0 0.75rem rgba(0, 0, 0, 0.08); border-radius: 4px; }