You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

tailwind.css 1.6KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. @tailwind base;
  2. @tailwind components;
  3. @tailwind utilities;
  4. @layer base {
  5. :root {
  6. --background: 0 0% 100%;
  7. --foreground: 222.2 47.4% 11.2%;
  8. --muted: 210 40% 96.1%;
  9. --muted-foreground: 215.4 16.3% 46.9%;
  10. --popover: 0 0% 100%;
  11. --popover-foreground: 222.2 47.4% 11.2%;
  12. --border: 214.3 31.8% 91.4%;
  13. --input: 214.3 31.8% 91.4%;
  14. --card: 0 0% 100%;
  15. --card-foreground: 222.2 47.4% 11.2%;
  16. --primary: 222.2 47.4% 11.2%;
  17. --primary-foreground: 210 40% 98%;
  18. --secondary: 210 40% 96.1%;
  19. --secondary-foreground: 222.2 47.4% 11.2%;
  20. --accent: 210 40% 96.1%;
  21. --accent-foreground: 222.2 47.4% 11.2%;
  22. --destructive: 0 100% 50%;
  23. --destructive-foreground: 210 40% 98%;
  24. --ring: 215 20.2% 65.1%;
  25. --radius: 0.5rem;
  26. }
  27. .dark {
  28. --background: 224 71% 4%;
  29. --foreground: 213 31% 91%;
  30. --muted: 223 47% 11%;
  31. --muted-foreground: 215.4 16.3% 56.9%;
  32. --accent: 216 34% 17%;
  33. --accent-foreground: 210 40% 98%;
  34. --popover: 224 71% 4%;
  35. --popover-foreground: 215 20.2% 65.1%;
  36. --border: 216 34% 17%;
  37. --input: 216 34% 17%;
  38. --card: 224 71% 4%;
  39. --card-foreground: 213 31% 91%;
  40. --primary: 210 40% 98%;
  41. --primary-foreground: 222.2 47.4% 1.2%;
  42. --secondary: 222.2 47.4% 11.2%;
  43. --secondary-foreground: 210 40% 98%;
  44. --destructive: 0 63% 31%;
  45. --destructive-foreground: 210 40% 98%;
  46. --ring: 216 34% 17%;
  47. --radius: 0.5rem;
  48. }
  49. }
  50. @layer base {
  51. * {
  52. @apply border-border;
  53. }
  54. body {
  55. @apply bg-background text-foreground;
  56. font-feature-settings:
  57. 'rlig' 1,
  58. 'calt' 1;
  59. }
  60. }