From 18042eab09308eab3be579a70ea841fcc7c46ea3 Mon Sep 17 00:00:00 2001 From: kappa Date: Tue, 20 Jan 2026 02:00:24 +0900 Subject: [PATCH] Switch to dark mode theme and remove tilted elements - Change color scheme to dark mode (navy blue background) - Update all card, button, and form styles for dark theme - Remove rotation transforms from all elements for cleaner look - Adjust text colors for proper contrast on dark background Co-Authored-By: Claude Opus 4.5 --- index.html | 164 ++++++++++++++++++++++++++--------------------------- 1 file changed, 80 insertions(+), 84 deletions(-) diff --git a/index.html b/index.html index 8cb8980..5831112 100644 --- a/index.html +++ b/index.html @@ -18,16 +18,16 @@ hand: ['Caveat', 'cursive'], }, colors: { - cream: '#fffce8', + cream: '#0f172a', sketch: { - bg: '#fffce8', - line: '#1e1e1e', - blue: '#1971c2', - red: '#e03131', - green: '#2f9e44', - orange: '#e8590c', - purple: '#9c36b5', - yellow: '#ffc078', + bg: '#0f172a', + line: '#e2e8f0', + blue: '#3b82f6', + red: '#ef4444', + green: '#22c55e', + orange: '#f97316', + purple: '#a855f7', + yellow: '#fbbf24', } } }, @@ -37,50 +37,48 @@