2024-12-17 21:09:49 +00:00
|
|
|
@tailwind base;
|
|
|
|
|
@tailwind components;
|
|
|
|
|
@tailwind utilities;
|
|
|
|
|
|
2025-01-09 22:12:24 +00:00
|
|
|
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
|
2024-12-17 21:09:49 +00:00
|
|
|
|
2025-01-09 22:12:24 +00:00
|
|
|
@layer base {
|
2024-12-17 21:09:49 +00:00
|
|
|
:root {
|
2025-01-09 22:12:24 +00:00
|
|
|
--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;
|
2024-12-17 21:09:49 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2025-01-09 22:12:24 +00:00
|
|
|
.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;
|
2024-12-17 21:09:49 +00:00
|
|
|
}
|