style: apply grid texture to original gray background
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.
This commit is contained in:
+5
-5
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user