Guest User

Untitled

a guest
Jun 16th, 2024
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.56 KB | None | 0 0
  1. @tailwind base;
  2. @tailwind components;
  3. @tailwind utilities;
  4.  
  5.   @layer base {
  6.     :root {
  7.       --background: 248 58% 99%;
  8.       --foreground: 248 56% 3%;
  9.       --muted: 248 40% 85%;
  10.       --muted-foreground: 248 12% 25%;
  11.       --popover: 248 58% 99%;
  12.       --popover-foreground: 248 56% 3%;
  13.       --card: 248 58% 99%;
  14.       --card-foreground: 248 56% 3%;
  15.       --border: 248 5% 91%;
  16.       --input: 248 5% 91%;
  17.       --primary: 248 65% 52%;
  18.       --primary-foreground: 0 0% 100%;
  19.       --secondary: 248 11% 89%;
  20.       --secondary-foreground: 248 11% 29%;
  21.       --accent: 248 20% 84%;
  22.       --accent-foreground: 248 20% 24%;
  23.       --destructive: 13 88% 40%;
  24.       --destructive-foreground: 0 0% 100%;
  25.       --ring: 248 65% 52%;
  26.       --radius: 0.5rem;
  27.     }
  28.  
  29.     .dark {
  30.       --background: 248 53% 1%;
  31.       --foreground: 248 24% 99%;
  32.       --muted: 248 40% 15%;
  33.       --muted-foreground: 248 12% 75%;
  34.       --popover: 248 53% 1%;
  35.       --popover-foreground: 248 24% 99%;
  36.       --card: 248 53% 1%;
  37.       --card-foreground: 248 24% 99%;
  38.       --border: 248 5% 11%;
  39.       --input: 248 5% 11%;
  40.       --primary: 248 65% 52%;
  41.       --primary-foreground: 0 0% 100%;
  42.       --secondary: 248 16% 14%;
  43.       --secondary-foreground: 248 16% 74%;
  44.       --accent: 248 25% 21%;
  45.       --accent-foreground: 248 25% 81%;
  46.       --destructive: 13 88% 54%;
  47.       --destructive-foreground: 0 0% 100%;
  48.       --ring: 248 65% 52%;
  49.     }
  50.   }
  51.  
  52. @layer base {
  53.     * {
  54.       @apply border-border;
  55.     }
  56.     body {
  57.       @apply bg-background text-foreground;
  58.     }
  59.   }
Advertisement
Add Comment
Please, Sign In to add comment