From 3288280d3e10b5404e4cc40372fd7ee4049b3627 Mon Sep 17 00:00:00 2001 From: Boris Crismancich Date: Thu, 25 Apr 2024 05:06:30 +0200 Subject: [PATCH] color change --- styles.css | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/styles.css b/styles.css index 12b8ab6..5086cba 100644 --- a/styles.css +++ b/styles.css @@ -9,7 +9,7 @@ body { h1, h2, h3 { font-family: 'Ubuntu', sans-serif; /* Ubuntu font for headlines */ - color: #FFD700; /* Gold color for headings */ + color: #cccccc; /* Light gray color for headings */ } .code-block { @@ -34,11 +34,11 @@ code { border: none; border-radius: 5px; cursor: pointer; - background-color: #FFD700; /* Gold background for the button */ + background-color: #cccccc; /* Light gray background for the button */ color: #333333; /* Dark text on button */ font-weight: bold; } .copy-btn:hover { - background-color: #FFC107; /* Lighter gold on hover */ + background-color: #aaaaaa; /* Slightly darker gray on hover */ }