globals.css 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. @tailwind base;
  2. @tailwind components;
  3. @tailwind utilities;
  4. body {
  5. font-family: Arial, Helvetica, sans-serif;
  6. }
  7. @layer utilities {
  8. .text-balance {
  9. text-wrap: balance;
  10. }
  11. }
  12. @layer base {
  13. :root {
  14. --background: 0 0% 100%;
  15. --foreground: 0 0% 3.9%;
  16. --card: 0 0% 100%;
  17. --card-foreground: 0 0% 3.9%;
  18. --popover: 0 0% 100%;
  19. --popover-foreground: 0 0% 3.9%;
  20. --primary: 0 0% 9%;
  21. --primary-foreground: 0 0% 98%;
  22. --secondary: 0 0% 96.1%;
  23. --secondary-foreground: 0 0% 9%;
  24. --muted: 0 0% 96.1%;
  25. --muted-foreground: 0 0% 45.1%;
  26. --accent: 0 0% 96.1%;
  27. --accent-foreground: 0 0% 9%;
  28. --destructive: 0 84.2% 60.2%;
  29. --destructive-foreground: 0 0% 98%;
  30. --border: 0 0% 89.8%;
  31. --input: 0 0% 89.8%;
  32. --ring: 0 0% 3.9%;
  33. --chart-1: 12 76% 61%;
  34. --chart-2: 173 58% 39%;
  35. --chart-3: 197 37% 24%;
  36. --chart-4: 43 74% 66%;
  37. --chart-5: 27 87% 67%;
  38. --radius: 0.5rem;
  39. --sidebar-background: 0 0% 98%;
  40. --sidebar-foreground: 240 5.3% 26.1%;
  41. --sidebar-primary: 240 5.9% 10%;
  42. --sidebar-primary-foreground: 0 0% 98%;
  43. --sidebar-accent: 240 4.8% 95.9%;
  44. --sidebar-accent-foreground: 240 5.9% 10%;
  45. --sidebar-border: 220 13% 91%;
  46. --sidebar-ring: 217.2 91.2% 59.8%;
  47. }
  48. .dark {
  49. --background: 0 0% 3.9%;
  50. --foreground: 0 0% 98%;
  51. --card: 0 0% 3.9%;
  52. --card-foreground: 0 0% 98%;
  53. --popover: 0 0% 3.9%;
  54. --popover-foreground: 0 0% 98%;
  55. --primary: 0 0% 98%;
  56. --primary-foreground: 0 0% 9%;
  57. --secondary: 0 0% 14.9%;
  58. --secondary-foreground: 0 0% 98%;
  59. --muted: 0 0% 14.9%;
  60. --muted-foreground: 0 0% 63.9%;
  61. --accent: 0 0% 14.9%;
  62. --accent-foreground: 0 0% 98%;
  63. --destructive: 0 62.8% 30.6%;
  64. --destructive-foreground: 0 0% 98%;
  65. --border: 0 0% 14.9%;
  66. --input: 0 0% 14.9%;
  67. --ring: 0 0% 83.1%;
  68. --chart-1: 220 70% 50%;
  69. --chart-2: 160 60% 45%;
  70. --chart-3: 30 80% 55%;
  71. --chart-4: 280 65% 60%;
  72. --chart-5: 340 75% 55%;
  73. --sidebar-background: 240 5.9% 10%;
  74. --sidebar-foreground: 240 4.8% 95.9%;
  75. --sidebar-primary: 224.3 76.3% 48%;
  76. --sidebar-primary-foreground: 0 0% 100%;
  77. --sidebar-accent: 240 3.7% 15.9%;
  78. --sidebar-accent-foreground: 240 4.8% 95.9%;
  79. --sidebar-border: 240 3.7% 15.9%;
  80. --sidebar-ring: 217.2 91.2% 59.8%;
  81. }
  82. }
  83. @layer base {
  84. * {
  85. @apply border-border;
  86. }
  87. body {
  88. @apply bg-background text-foreground;
  89. }
  90. }