Yimaru-Admin/src/index.css
2025-12-17 14:40:14 +03:00

55 lines
1013 B
CSS

@import "@fontsource/inter/latin.css";
@tailwind base;
@tailwind components;
@tailwind utilities;
@layer base {
:root {
--background: 0 0% 100%;
--foreground: 222.2 84% 4.9%;
--card: 0 0% 100%;
--card-foreground: 222.2 84% 4.9%;
--popover: 0 0% 100%;
--popover-foreground: 222.2 84% 4.9%;
/* primary ~= #9E2891 (brand 500) */
--primary: 312 59% 39%;
--primary-foreground: 0 0% 100%;
--secondary: 210 40% 96.1%;
--secondary-foreground: 222.2 47.4% 11.2%;
--muted: 210 40% 96.1%;
--muted-foreground: 215.4 16.3% 46.9%;
--accent: 210 40% 96.1%;
--accent-foreground: 222.2 47.4% 11.2%;
--destructive: 0 84.2% 60.2%;
--destructive-foreground: 0 0% 100%;
--border: 214.3 31.8% 91.4%;
--input: 214.3 31.8% 91.4%;
--ring: 312 59% 39%;
--radius: 14px;
}
* {
@apply border-border;
}
html,
body,
#root {
height: 100%;
}
body {
@apply bg-grayScale-100 text-foreground font-sans antialiased;
}
}