From aea34424b897d87a5f6414a59c296fb9d62f580f Mon Sep 17 00:00:00 2001 From: Jan-Marlon Leibl Date: Wed, 12 Feb 2025 11:46:52 +0100 Subject: [PATCH] style: Update CSS syntax and fix color case sensitivity --- frontend/src/styles.css | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/frontend/src/styles.css b/frontend/src/styles.css index b1ddff1..8de5d08 100644 --- a/frontend/src/styles.css +++ b/frontend/src/styles.css @@ -1,12 +1,12 @@ -@import "tailwindcss"; +@import 'tailwindcss'; @theme { - --color-deep-blue: #0F212E; - --color-deep-blue-light: #1A2C38; - --color-deep-blue-contrast: #1B2C3B; - --color-light-blue: #1475E1; + --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 + @apply bg-deep-blue text-gray-100; +}