index.css 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. @import "tailwindcss";
  2. :root {
  3. --background: 0 0% 96%;
  4. --foreground: 240 10% 3.9%;
  5. --card: 0 0% 100%;
  6. --card-foreground: 240 10% 3.9%;
  7. --popover: 0 0% 100%;
  8. --popover-foreground: 240 10% 3.9%;
  9. --primary: 240 5.9% 10%;
  10. --primary-foreground: 0 0% 98%;
  11. --secondary: 240 4.8% 95.9%;
  12. --secondary-foreground: 240 5.9% 10%;
  13. --muted: 240 4.8% 95.9%;
  14. --muted-foreground: 240 3.8% 46.1%;
  15. --accent: 240 4.8% 95.9%;
  16. --accent-foreground: 240 5.9% 10%;
  17. --destructive: 0 72.2% 50.6%;
  18. --destructive-foreground: 0 0% 98%;
  19. --border: 240 5.9% 88%;
  20. --input: 240 5.9% 88%;
  21. --ring: 240 5% 64.9%;
  22. --radius: 0.75rem;
  23. }
  24. @theme inline {
  25. --color-background: hsl(var(--background));
  26. --color-foreground: hsl(var(--foreground));
  27. --color-card: hsl(var(--card));
  28. --color-card-foreground: hsl(var(--card-foreground));
  29. --color-popover: hsl(var(--popover));
  30. --color-popover-foreground: hsl(var(--popover-foreground));
  31. --color-primary: hsl(var(--primary));
  32. --color-primary-foreground: hsl(var(--primary-foreground));
  33. --color-secondary: hsl(var(--secondary));
  34. --color-secondary-foreground: hsl(var(--secondary-foreground));
  35. --color-muted: hsl(var(--muted));
  36. --color-muted-foreground: hsl(var(--muted-foreground));
  37. --color-accent: hsl(var(--accent));
  38. --color-accent-foreground: hsl(var(--accent-foreground));
  39. --color-destructive: hsl(var(--destructive));
  40. --color-destructive-foreground: hsl(var(--destructive-foreground));
  41. --color-border: hsl(var(--border));
  42. --color-input: hsl(var(--input));
  43. --color-ring: hsl(var(--ring));
  44. --radius-sm: calc(var(--radius) - 4px);
  45. --radius-md: calc(var(--radius) - 2px);
  46. --radius-lg: var(--radius);
  47. --radius-xl: calc(var(--radius) + 4px);
  48. }
  49. @layer base {
  50. * {
  51. @apply border-border;
  52. }
  53. html {
  54. min-width: 320px;
  55. }
  56. body {
  57. @apply bg-background text-foreground antialiased;
  58. font-family: "Inter", "Avenir Next", "Segoe UI", sans-serif;
  59. }
  60. button,
  61. input,
  62. textarea {
  63. font: inherit;
  64. }
  65. }