From 77cbb0eec1d38639dbf1967fead586e0aaa6d224 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bruno=20Galv=C3=A3o?= Date: Sat, 20 Jan 2024 17:25:17 -0300 Subject: [PATCH] add background-color --- style.css | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/style.css b/style.css index 3e11041..f07ac2b 100644 --- a/style.css +++ b/style.css @@ -7,6 +7,7 @@ :root { --text-color: white; --bg-url: url(./assets/bg-dark.jpg); + --bg-color: rgb(22, 22, 24); --stroke-color: rgba(255, 255, 255, 0.5); --surface-color: rgba(255, 255, 255, 0.05); --surface-color-hover: rgba(0, 0, 0, 0.02); @@ -17,6 +18,7 @@ .light { --text-color: black; --bg-url: url(./assets/bg-light.jpg); + --bg-color: rgb(239, 235, 239); --stroke-color: rgba(0, 0, 0, 0.5); --surface-color: rgba(0, 0, 0, 0.05); --surface-color-hover: rgba(0, 0, 0, 0.02); @@ -26,8 +28,8 @@ body { background: var(--bg-url) no-repeat top center/cover; + background-color: var(--bg-color); min-height: 100vh; - overscroll-behavior: none; } body * {