From cf6bb1abffc0aee2262e62d71059665b2b0368ae Mon Sep 17 00:00:00 2001 From: itsscb Date: Mon, 3 Mar 2025 22:42:21 +0100 Subject: [PATCH] feat: add custom CSS variables for primary colors --- frontend/src/styles.css | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/frontend/src/styles.css b/frontend/src/styles.css index 90d4ee0..3d972f4 100644 --- a/frontend/src/styles.css +++ b/frontend/src/styles.css @@ -1 +1,7 @@ /* You can add global styles to this file, and also import other style files */ + +:root { + --primary-background-color: rgba(51, 217, 178, 1.0); + --primary-background-color-hover: rgba(33, 140, 116, 1.0); + --primary-text-color: rgba(255, 255, 255, 1.0); +}