Files
workparking/app/globals.css
deonisii d769ac602b init
2026-04-17 03:15:47 +03:00

21 lines
310 B
CSS

@import "tailwindcss";
:root {
--background: #0a0a0a;
--foreground: #ffffff;
}
html {
scroll-behavior: smooth;
}
body {
background: var(--background);
color: var(--foreground);
}
@layer utilities {
.hero-bg {
background: linear-gradient(135deg, #050505 0%, #101712 55%, #12241a 100%);
}
}