globals.css 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  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: 262.1 83.3% 57.8%;
  13. --primary-foreground: 210 40% 98%;
  14. --secondary: 210 40% 96%;
  15. --secondary-foreground: 222.2 84% 4.9%;
  16. --muted: 210 40% 96%;
  17. --muted-foreground: 215.4 16.3% 46.9%;
  18. --accent: 210 40% 96%;
  19. --accent-foreground: 222.2 84% 4.9%;
  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: 262.1 83.3% 57.8%;
  25. --radius: 0.75rem;
  26. }
  27. .dark {
  28. --background: 222.2 84% 4.9%;
  29. --foreground: 210 40% 98%;
  30. --card: 222.2 84% 4.9%;
  31. --card-foreground: 210 40% 98%;
  32. --popover: 222.2 84% 4.9%;
  33. --popover-foreground: 210 40% 98%;
  34. --primary: 262.1 83.3% 57.8%;
  35. --primary-foreground: 210 40% 98%;
  36. --secondary: 217.2 32.6% 17.5%;
  37. --secondary-foreground: 210 40% 98%;
  38. --muted: 217.2 32.6% 17.5%;
  39. --muted-foreground: 215 20.2% 65.1%;
  40. --accent: 217.2 32.6% 17.5%;
  41. --accent-foreground: 210 40% 98%;
  42. --destructive: 0 62.8% 30.6%;
  43. --destructive-foreground: 210 40% 98%;
  44. --border: 217.2 32.6% 17.5%;
  45. --input: 217.2 32.6% 17.5%;
  46. --ring: 262.1 83.3% 57.8%;
  47. }
  48. }
  49. @layer base {
  50. * {
  51. @apply border-border;
  52. }
  53. body {
  54. @apply bg-background text-foreground;
  55. }
  56. }
  57. html {
  58. scroll-behavior: smooth;
  59. }
  60. /* Custom scrollbar */
  61. ::-webkit-scrollbar {
  62. width: 8px;
  63. }
  64. ::-webkit-scrollbar-track {
  65. @apply bg-muted;
  66. }
  67. ::-webkit-scrollbar-thumb {
  68. @apply bg-muted-foreground/30 rounded-full;
  69. }
  70. ::-webkit-scrollbar-thumb:hover {
  71. @apply bg-muted-foreground/50;
  72. }