website/app/assets/css/main.css
2026-05-14 06:49:11 +02:00

36 lines
No EOL
766 B
CSS

@import "tailwindcss";
@import "@nuxt/ui";
@theme static {
--font-sans: 'Public Sans', sans-serif;
--color-green-50: #EFFDF5;
--color-green-100: #D9FBE8;
--color-green-200: #B3F5D1;
--color-green-300: #75EDAE;
--color-green-400: #00DC82;
--color-green-500: #00C16A;
--color-green-600: #00A155;
--color-green-700: #007F45;
--color-green-800: #016538;
--color-green-900: #0A5331;
--color-green-950: #052E16;
}
body {
font-family: 'Arial', sans-serif;
}
html, body {
margin: 0;
padding: 0;
background-color: #1d1e1f !important;
color: #c9d1d9;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
-webkit-font-smoothing: antialiased;
}
*, *::before, *::after {
box-sizing: border-box;
}