This commit is contained in:
2026-02-17 01:33:45 +00:00
parent a1e416e894
commit 3dc7383e11
6 changed files with 36 additions and 7 deletions
+2
View File
@@ -1,2 +1,4 @@
import './variables.css';
import './prose.css';
document.documentElement.style.setProperty('--page-bg-image', 'url(/static/landscape1.jpg)');
@@ -8,6 +8,16 @@
--duck-dark: #14532D;
--duck-beige: #E7D4B5;
/* Page background (--page-bg-image set via client.ts to avoid bundler url() resolution) */
--pixel-grid-color: rgba(20, 83, 45, 0.1);
/* Glass surfaces */
--glass-bg: rgba(255, 255, 255, 0.1);
--glass-border: rgba(255, 255, 255, 0.2);
--dock-bg: rgba(0, 0, 0, 0.15);
--dock-border: rgba(255, 255, 255, 0.1);
--dock-tooltip-bg: rgba(0, 0, 0, 0.75);
/* Card component */
--card-bg: rgba(255, 255, 255, 0.9);
--card-grid-color: rgba(20, 83, 45, 0.08);
@@ -81,6 +91,16 @@
}
.dark {
/* Page background */
--pixel-grid-color: rgba(200, 230, 210, 0.08);
/* Glass surfaces */
--glass-bg: rgba(0, 0, 0, 0.2);
--glass-border: rgba(255, 255, 255, 0.1);
--dock-bg: rgba(0, 0, 0, 0.3);
--dock-border: rgba(255, 255, 255, 0.08);
--dock-tooltip-bg: rgba(0, 0, 0, 0.85);
/* Card component */
--card-bg: rgba(10, 20, 15, 0.9);
--card-grid-color: rgba(200, 230, 210, 0.06);