Use proper colors

This commit is contained in:
2026-02-17 15:58:16 -07:00
parent 9ada9c6982
commit e16fce9ce5

View File

@@ -1,10 +1,15 @@
@import "tailwindcss"; @import "tailwindcss";
body { body {
@apply bg-(--col0) text-white select-none;
font-family: 'Lexend', sans-serif; font-family: 'Lexend', sans-serif;
@apply bg-[rgb(24,24,24)] text-white select-none;
--col0: rgb(8, 8, 8);
--col2: rgb(32, 32, 32);
--col4: rgb(64, 64, 64);
--col6: rgb(96, 96, 96);
} }
button { button {
@apply bg-[rgb(48,48,48)] hover:bg-[rgb(72,72,72)] border border-[rgb(72,72,72)] hover:border-[rgb(96,96,96)] transition-colors px-2 py-1 rounded-md cursor-pointer; @apply bg-(--col2) hover:bg-(--col4) border border-(--col4) hover:border-(--col6) transition-colors px-2 py-1 rounded-md cursor-pointer;
} }