33 lines
637 B
CSS
33 lines
637 B
CSS
@import "tailwindcss";
|
|
|
|
@theme {
|
|
--color-navy: #1A2B6B;
|
|
--color-cyan: #00B4D8;
|
|
--color-gold: #FFB703;
|
|
--font-sans: "Inter", "Plus Jakarta Sans", sans-serif;
|
|
}
|
|
|
|
@layer base {
|
|
:root {
|
|
--background: #f8fafc;
|
|
--foreground: #0f172a;
|
|
}
|
|
|
|
body {
|
|
background-color: var(--background);
|
|
color: var(--foreground);
|
|
font-family: var(--font-sans);
|
|
-webkit-font-smoothing: antialiased;
|
|
-moz-osx-font-smoothing: grayscale;
|
|
}
|
|
}
|
|
|
|
@layer utilities {
|
|
.glass {
|
|
@apply bg-white/70 backdrop-blur-md border border-white/20;
|
|
}
|
|
.glass-dark {
|
|
@apply bg-navy/80 backdrop-blur-md border border-white/10;
|
|
}
|
|
}
|