style: Update CSS syntax and fix color case sensitivity

This commit is contained in:
Jan-Marlon Leibl 2025-02-12 11:46:52 +01:00
parent 21bdbab1cf
commit aea34424b8
No known key found for this signature in database
GPG key ID: E7B6F77BF5EDB6F7

View file

@ -1,12 +1,12 @@
@import "tailwindcss"; @import 'tailwindcss';
@theme { @theme {
--color-deep-blue: #0F212E; --color-deep-blue: #0f212e;
--color-deep-blue-light: #1A2C38; --color-deep-blue-light: #1a2c38;
--color-deep-blue-contrast: #1B2C3B; --color-deep-blue-contrast: #1b2c3b;
--color-light-blue: #1475E1; --color-light-blue: #1475e1;
} }
body { body {
@apply bg-deep-blue text-gray-100; @apply bg-deep-blue text-gray-100;
} }