From 61a0af5b1c298c7de0d2356b1a5dd21857c15acd Mon Sep 17 00:00:00 2001 From: zepp Date: Thu, 2 Jan 2025 17:20:26 -0500 Subject: [PATCH] add color value for text, apply it to body element --- style/style.css | 2 ++ 1 file changed, 2 insertions(+) diff --git a/style/style.css b/style/style.css index b8f30c2..a6a7530 100644 --- a/style/style.css +++ b/style/style.css @@ -2,6 +2,7 @@ --section-color: #fccce4bb; --border-color: #f6da92; --header-color: #fc94bcbb; + --text-color: #2A004E; } *, *::before, *::after { @@ -20,6 +21,7 @@ body { display: flex; flex-direction: column; align-items: center; + color: var(--text-color); } main {