|
| 1 | +@tailwind base; |
| 2 | +@tailwind components; |
| 3 | +@tailwind utilities; |
| 4 | + |
| 5 | +@layer base { |
| 6 | + :root { |
| 7 | + /* Name: custom color palette |
| 8 | + Author: Ilias Ism |
| 9 | + URL: https://gradient.page */ |
| 10 | + |
| 11 | + /* CSS: .bg-gradient { background: var(--gradient) } */ |
| 12 | + --gradient: linear-gradient(to top left,#000C40,#607D8B); |
| 13 | + --background: 243 100% 98.26%; |
| 14 | + --foreground: 243 10% 0.52%; |
| 15 | + |
| 16 | + --muted: 243 10% 91.3%; |
| 17 | + --muted-foreground: 243 5% 41.3%; |
| 18 | + |
| 19 | + --popover: 243 10% 91.3%; |
| 20 | + --popover-foreground: 243 10% 0.65%; |
| 21 | + |
| 22 | + --card: 243 10% 91.3%; |
| 23 | + --card-foreground: 243 10% 0.65%; |
| 24 | + |
| 25 | + --border: 243 15% 89.52%; |
| 26 | + --input: 243 15% 89.52%; |
| 27 | + |
| 28 | + --primary: 243 100% 13%; |
| 29 | + --primary-foreground: 243 2% 91.3%; |
| 30 | + |
| 31 | + --secondary: 243 5% 73.9%; |
| 32 | + --secondary-foreground: 243 7% 11.3%; |
| 33 | + |
| 34 | + --accent: 243 5% 73.9%; |
| 35 | + --accent-foreground: 243 7% 11.3%; |
| 36 | + |
| 37 | + --destructive: 0 84.2% 60.2%; |
| 38 | + --destructive-foreground: 0 0% 98%; |
| 39 | + |
| 40 | + --ring: 243 100% 13%; |
| 41 | + |
| 42 | + --radius: 0.5rem; |
| 43 | + |
| 44 | + |
| 45 | + /* Name: custom color palette |
| 46 | + Author: Ilias Ism |
| 47 | + URL: https://gradient.page */ |
| 48 | + |
| 49 | + /* CSS: .bg-gradient { background: var(--gradient) } */ |
| 50 | + --gradient: linear-gradient(to top left, #3a6186, #89253e); |
| 51 | + |
| 52 | + --background: 222 26% 3.04%; |
| 53 | + --foreground: 222 4% 96.9%; |
| 54 | + |
| 55 | + --muted: 222 20% 11.4%; |
| 56 | + --muted-foreground: 222 4% 53.8%; |
| 57 | + |
| 58 | + --popover: 222 57% 4.94%; |
| 59 | + --popover-foreground: 222 4% 96.9%; |
| 60 | + |
| 61 | + --card: 222 57% 4.94%; |
| 62 | + --card-foreground: 222 4% 96.9%; |
| 63 | + |
| 64 | + --border: 222 20% 11.4%; |
| 65 | + --input: 222 20% 11.4%; |
| 66 | + |
| 67 | + --primary: 222 40% 38%; |
| 68 | + --primary-foreground: 222 4% 96.9%; |
| 69 | + |
| 70 | + --secondary: 222 20% 11.4%; |
| 71 | + --secondary-foreground: 222 4% 96.9%; |
| 72 | + |
| 73 | + --accent: 222 20% 11.4%; |
| 74 | + --accent-foreground: 222 4% 96.9%; |
| 75 | + |
| 76 | + --destructive: 0 62.8% 30.6%; |
| 77 | + --destructive-foreground: 222 4% 96.9%; |
| 78 | + |
| 79 | + --ring: 222 40% 38%; |
| 80 | + } |
| 81 | +} |
| 82 | + |
| 83 | +@layer base { |
| 84 | + [class*="border"] { |
| 85 | + @apply border-border; |
| 86 | + } |
| 87 | +} |
| 88 | + |
| 89 | +html { |
| 90 | + @apply bg-black text-foreground; |
| 91 | +} |
0 commit comments