globals.css 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  1. @tailwind base;
  2. @tailwind components;
  3. @tailwind utilities;
  4. @layer base {
  5. :root {
  6. --background: 0 0% 100%;
  7. --foreground: 222.2 84% 4.9%;
  8. --card: 0 0% 100%;
  9. --card-foreground: 222.2 84% 4.9%;
  10. --popover: 0 0% 100%;
  11. --popover-foreground: 222.2 84% 4.9%;
  12. --primary: 222.2 47.4% 11.2%;
  13. --primary-foreground: 210 40% 98%;
  14. --secondary: 210 40% 96.1%;
  15. --secondary-foreground: 222.2 47.4% 11.2%;
  16. --muted: 210 40% 96.1%;
  17. --muted-foreground: 215.4 16.3% 46.9%;
  18. --accent: 210 40% 96.1%;
  19. --accent-foreground: 222.2 47.4% 11.2%;
  20. --destructive: 0 84.2% 60.2%;
  21. --destructive-foreground: 210 40% 98%;
  22. --border: 214.3 31.8% 91.4%;
  23. --input: 214.3 31.8% 91.4%;
  24. --ring: 222.2 84% 4.9%;
  25. --chart-1: 12 76% 61%;
  26. --chart-2: 173 58% 39%;
  27. --chart-3: 197 37% 24%;
  28. --chart-4: 43 74% 66%;
  29. --chart-5: 27 87% 67%;
  30. --radius: 0.5rem
  31. }
  32. .dark {
  33. --background: 222.2 84% 4.9%;
  34. --foreground: 210 40% 98%;
  35. --card: 222.2 84% 4.9%;
  36. --card-foreground: 210 40% 98%;
  37. --popover: 222.2 84% 4.9%;
  38. --popover-foreground: 210 40% 98%;
  39. --primary: 210 40% 98%;
  40. --primary-foreground: 222.2 47.4% 11.2%;
  41. --secondary: 217.2 32.6% 17.5%;
  42. --secondary-foreground: 210 40% 98%;
  43. --muted: 217.2 32.6% 17.5%;
  44. --muted-foreground: 215 20.2% 65.1%;
  45. --accent: 217.2 32.6% 17.5%;
  46. --accent-foreground: 210 40% 98%;
  47. --destructive: 0 62.8% 30.6%;
  48. --destructive-foreground: 210 40% 98%;
  49. --border: 217.2 32.6% 17.5%;
  50. --input: 217.2 32.6% 17.5%;
  51. --ring: 212.7 26.8% 83.9%;
  52. --chart-1: 220 70% 50%;
  53. --chart-2: 160 60% 45%;
  54. --chart-3: 30 80% 55%;
  55. --chart-4: 280 65% 60%;
  56. --chart-5: 340 75% 55%;
  57. }
  58. }
  59. @layer base {
  60. * {
  61. @apply border-border;
  62. }
  63. body {
  64. @apply bg-background text-foreground;
  65. }
  66. }
  67. /* Custom dark mode styles to match dashboard */
  68. .dark {
  69. @apply bg-gradient-to-br from-gray-900 to-gray-800;
  70. }
  71. /* Ensure consistent dark mode backgrounds */
  72. .dark .bg-white {
  73. @apply bg-gray-800;
  74. }
  75. .dark .bg-gray-50 {
  76. @apply bg-gray-900;
  77. }
  78. .dark .bg-gray-100 {
  79. @apply bg-gray-800;
  80. }
  81. .dark .border-gray-200 {
  82. @apply border-gray-700;
  83. }
  84. .dark .text-gray-900 {
  85. @apply text-white;
  86. }
  87. .dark .text-gray-700 {
  88. @apply text-gray-300;
  89. }
  90. .dark .text-gray-600 {
  91. @apply text-gray-400;
  92. }
  93. .dark .text-gray-500 {
  94. @apply text-gray-400;
  95. }