mirror of
https://github.com/logos-storage/metrics.git
synced 2026-01-02 13:33:09 +00:00
56 lines
753 B
CSS
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;
|
|
}
|