|
| 1 | +@tailwind base; |
| 2 | +@tailwind components; |
| 3 | +@tailwind utilities; |
| 4 | + |
| 5 | +@layer base { |
| 6 | + :root { |
| 7 | + --background: 0 0% 100%; |
| 8 | + --foreground: 222.2 84% 4.9%; |
| 9 | + |
| 10 | + --card: 0 0% 100%; |
| 11 | + --card-foreground: 222.2 84% 4.9%; |
| 12 | + |
| 13 | + --popover: 0 0% 100%; |
| 14 | + --popover-foreground: 222.2 84% 4.9%; |
| 15 | + |
| 16 | + --primary: 221.2 83.2% 53.3%; |
| 17 | + --primary-foreground: 210 40% 98%; |
| 18 | + |
| 19 | + --secondary: 210 40% 96.1%; |
| 20 | + --secondary-foreground: 222.2 47.4% 11.2%; |
| 21 | + |
| 22 | + --muted: 210 40% 96.1%; |
| 23 | + --muted-foreground: 215.4 16.3% 46.9%; |
| 24 | + |
| 25 | + --accent: 210 40% 96.1%; |
| 26 | + --accent-foreground: 222.2 47.4% 11.2%; |
| 27 | + |
| 28 | + --destructive: 0 84.2% 60.2%; |
| 29 | + --destructive-foreground: 210 40% 98%; |
| 30 | + |
| 31 | + --border: 214.3 31.8% 91.4%; |
| 32 | + --input: 214.3 31.8% 91.4%; |
| 33 | + --ring: 221.2 83.2% 53.3%; |
| 34 | + --radius: 0.5rem; |
| 35 | + } |
| 36 | + |
| 37 | + .dark { |
| 38 | + --background: 222.2 84% 4.9%; |
| 39 | + --foreground: 210 40% 98%; |
| 40 | + |
| 41 | + --card: 222.2 84% 4.9%; |
| 42 | + --card-foreground: 210 40% 98%; |
| 43 | + |
| 44 | + --popover: 222.2 84% 4.9%; |
| 45 | + --popover-foreground: 210 40% 98%; |
| 46 | + |
| 47 | + --primary: 217.2 91.2% 59.8%; |
| 48 | + --primary-foreground: 222.2 47.4% 11.2%; |
| 49 | + |
| 50 | + --secondary: 217.2 32.6% 17.5%; |
| 51 | + --secondary-foreground: 210 40% 98%; |
| 52 | + |
| 53 | + --muted: 217.2 32.6% 17.5%; |
| 54 | + --muted-foreground: 215 20.2% 65.1%; |
| 55 | + |
| 56 | + --accent: 217.2 32.6% 17.5%; |
| 57 | + --accent-foreground: 210 40% 98%; |
| 58 | + |
| 59 | + --destructive: 0 62.8% 30.6%; |
| 60 | + --destructive-foreground: 210 40% 98%; |
| 61 | + |
| 62 | + --border: 217.2 32.6% 17.5%; |
| 63 | + --input: 217.2 32.6% 17.5%; |
| 64 | + --ring: 224.3 76.3% 48%; |
| 65 | + } |
| 66 | +} |
| 67 | + |
| 68 | +@layer utilities { |
| 69 | + .step { |
| 70 | + counter-increment: step; |
| 71 | + } |
| 72 | + |
| 73 | + .step:before { |
| 74 | + @apply absolute w-9 h-9 bg-muted rounded-full font-mono font-medium text-center text-base inline-flex items-center justify-center -indent-px border-4 border-background; |
| 75 | + @apply -ml-[50px] -mt-1; |
| 76 | + content: counter(step); |
| 77 | + } |
| 78 | +} |
| 79 | + |
| 80 | +@layer base { |
| 81 | + * { |
| 82 | + @apply border-border; |
| 83 | + } |
| 84 | + |
| 85 | + body { |
| 86 | + @apply bg-background text-foreground; |
| 87 | + } |
| 88 | +} |
0 commit comments