style: Update CSS syntax and fix color case sensitivity
All checks were successful
CI / prettier (pull_request) Successful in 17s
CI / test-build (pull_request) Successful in 36s

This commit is contained in:
Hop In, I Have Puppies AND WiFi 2025-02-12 11:46:52 +01:00
parent 21bdbab1cf
commit aea34424b8
Signed by: jleibl
GPG Key ID: E7B6F77BF5EDB6F7

View File

@ -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;
@apply bg-deep-blue text-gray-100;
}