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 2.2KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  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. --background-inverse-standard: rgba(58, 56, 65, 0.15);
  27. --background-inverse-standard-foreground: rgb(92, 81, 81);
  28. }
  29. .dark {
  30. --background: rgba(11, 10, 18, 1);
  31. --foreground: 213 31% 91%;
  32. --muted: 223 47% 11%;
  33. --muted-foreground: 215.4 16.3% 56.9%;
  34. --accent: 216 34% 17%;
  35. --accent-foreground: 210 40% 98%;
  36. --popover: 224 71% 4%;
  37. --popover-foreground: 215 20.2% 65.1%;
  38. --border: 216 34% 17%;
  39. --input: 216 34% 17%;
  40. --card: 224 71% 4%;
  41. --card-foreground: 213 31% 91%;
  42. --primary: 210 40% 98%;
  43. --primary-foreground: 222.2 47.4% 1.2%;
  44. --secondary: 222.2 47.4% 11.2%;
  45. --secondary-foreground: 210 40% 98%;
  46. --destructive: 0 63% 31%;
  47. --destructive-foreground: 210 40% 98%;
  48. --ring: 216 34% 17%;
  49. --radius: 0.5rem;
  50. --background-inverse-standard: rgba(230, 227, 246, 0.15);
  51. --background-inverse-standard-foreground: rgba(255, 255, 255, 1);
  52. --background-inverse-weak: rgba(184, 181, 203, 0.15);
  53. --background-inverse-weak-foreground: rgba(255, 255, 255, 1);
  54. --background-core-standard: rgba(137, 126, 255, 1);
  55. --background-core-standard-foreground: rgba(255, 255, 255, 1);
  56. --background-inverse-strong: rgba(255, 255, 255, 0.15);
  57. --background-inverse-strong-foreground: rgba(255, 255, 255, 1);
  58. }
  59. }
  60. @layer base {
  61. * {
  62. @apply border-border;
  63. }
  64. body {
  65. @apply bg-background text-foreground;
  66. font-feature-settings:
  67. 'rlig' 1,
  68. 'calt' 1;
  69. }
  70. }