metrics/styles/globals.css
2025-01-09 22:12:24 +00:00

56 lines
753 B
CSS

@tailwind base;
@tailwind components;
@tailwind utilities;
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
@layer base {
:root {
--background: 0 0% 0%;
--foreground: 0 0% 100%;
--accent: 154 98% 73%;
}
body {
font-family: "Inter", sans-serif;
font-optical-sizing: auto;
font-style: normal;
}
}
.font-thin {
font-weight: 100;
}
.font-extralight {
font-weight: 200;
}
.font-light {
font-weight: 300;
}
.font-normal {
font-weight: 400;
}
.font-medium {
font-weight: 500;
}
.font-semibold {
font-weight: 600;
}
.font-bold {
font-weight: 700;
}
.font-extrabold {
font-weight: 800;
}
.font-black {
font-weight: 900;
}