From ed5a324f441444892f41aa3dddde6909194f78d2 Mon Sep 17 00:00:00 2001 From: juanatsap Date: Sun, 9 Nov 2025 04:33:42 +0000 Subject: [PATCH] style: apply grid texture to original gray background MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Changed from dark charcoal to original gray (var(--bg-gray)): - Base color: rgb(82, 86, 89) - original gray background - Large grid: 50px × 50px with rgba(0,0,0,0.05) lines - Fine grid: 10px × 10px with rgba(0,0,0,0.02) lines - Semi-transparent black lines create subtle texture on gray base Maintains familiar gray appearance with added subtle grid pattern. --- static/css/main.css | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/static/css/main.css b/static/css/main.css index 3c9e499..86fd090 100644 --- a/static/css/main.css +++ b/static/css/main.css @@ -22,12 +22,12 @@ body { font-family: 'Quicksand', 'Source Sans Pro', -apple-system, system-ui, sans-serif; - background-color: #171717; + background-color: var(--bg-gray); background-image: - linear-gradient(90deg, #171717 1px, transparent 1px), - linear-gradient(180deg, #171717 1px, transparent 1px), - linear-gradient(90deg, #262626 1px, transparent 1px), - linear-gradient(180deg, #262626 1px, transparent 1px); + linear-gradient(90deg, rgba(0, 0, 0, 0.05) 1px, transparent 1px), + linear-gradient(180deg, rgba(0, 0, 0, 0.05) 1px, transparent 1px), + linear-gradient(90deg, rgba(0, 0, 0, 0.02) 1px, transparent 1px), + linear-gradient(180deg, rgba(0, 0, 0, 0.02) 1px, transparent 1px); background-size: 50px 50px, 50px 50px, 10px 10px, 10px 10px; background-attachment: fixed; color: rgb(41, 43, 44);