tailwind styles added

This commit is contained in:
2025-05-10 14:14:31 +05:30
parent dd26e27193
commit b94017d262
11 changed files with 1126 additions and 34 deletions

View File

@@ -1 +1,60 @@
@import "tailwindcss";
:root {
--background: 0 0% 100%;
--foreground: 222.2 47.4% 11.2%;
--card: 0 0% 100%;
--card-foreground: 222.2 47.4% 11.2%;
--popover: 0 0% 100%;
--popover-foreground: 222.2 47.4% 11.2%;
--primary: 240 100% 50%;
--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 100% 50%;
--destructive-foreground: 0 0% 100%;
--border: 240 5.9% 90%;
--input: 240 5.9% 90%;
--ring: 240 4.9% 83.9%;
--radius: 0.5rem;
--chart-1: 217 91% 60%;
--chart-2: 267 91% 70%;
--chart-3: 177 91% 40%;
--chart-4: 37 91% 55%;
--chart-5: 357 91% 60%;
--sidebar-background: 222.2 47.4% 11.2%;
--sidebar-foreground: 0 0% 100%;
--sidebar-primary: 240 100% 50%;
--sidebar-primary-foreground: 0 0% 100%;
--sidebar-accent: 210 40% 96.1%;
--sidebar-accent-foreground: 222.2 47.4% 11.2%;
--sidebar-border: 240 5.9% 90%;
--sidebar-ring: 240 4.9% 83.9%;
}
@tailwind base;
@tailwind components;
@tailwind utilities;
@layer base {
* {
@apply border-border;
}
body {
@apply font-sans antialiased bg-background text-foreground;
}
}