From 21bdbab1cf878cf7afead5580764dd023612601c Mon Sep 17 00:00:00 2001 From: Jan-Marlon Leibl Date: Wed, 12 Feb 2025 11:45:12 +0100 Subject: [PATCH] style: Update CSS formatting and add theme variables --- frontend/src/styles.css | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) diff --git a/frontend/src/styles.css b/frontend/src/styles.css index 22329e3..b1ddff1 100644 --- a/frontend/src/styles.css +++ b/frontend/src/styles.css @@ -1,8 +1,12 @@ -@import 'tailwindcss'; +@import "tailwindcss"; -.btn-primary { - @apply px-4 py-2 cursor-pointer relative font-bold rounded-lg transition-all duration-300 ease-out transform-gpu hover:scale-105 will-change-transform bg-gradient-to-r from-emerald-500 to-emerald-400 text-black hover:shadow-xl hover:shadow-emerald-500/20; -} -.btn-secondary { - @apply px-4 py-2 cursor-pointer relative font-bold rounded-lg transition-all duration-300 ease-out transform-gpu hover:scale-105 will-change-transform bg-white/10 text-white hover:bg-white/20; +@theme { + --color-deep-blue: #0F212E; + --color-deep-blue-light: #1A2C38; + --color-deep-blue-contrast: #1B2C3B; + --color-light-blue: #1475E1; } + +body { + @apply bg-deep-blue text-gray-100; +} \ No newline at end of file