Files
st-react/web-app/src/index.css
Echo f4e166c5ee 🎉 初始化项目
Signed-off-by: Echo <1711788888@qq.com>
2026-02-27 21:52:00 +08:00

28 lines
592 B
CSS

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
@tailwind base;
@tailwind components;
@tailwind utilities;
@layer base {
:root {
--color-primary: #7C3AED;
--color-secondary: #A78BFA;
}
body {
@apply bg-[#0A0A0F] text-white font-sans antialiased;
font-family: 'Inter', system-ui, -apple-system, sans-serif;
}
}
@layer utilities {
.glass {
@apply bg-white/5 backdrop-blur-xl border border-white/10;
}
.glass-hover {
@apply transition-all duration-200 hover:bg-white/10 hover:border-white/20;
}
}