Skyler Grey | 7177bbd | 2023-06-01 03:26:31 +0200 | [diff] [blame] | 1 | /* Write your global styles here, in PostCSS syntax */ |
| 2 | @tailwind base; |
| 3 | @tailwind components; |
| 4 | @tailwind utilities; |
| 5 | |
| 6 | @layer base { |
| 7 | :root { |
| 8 | --background: 224 71% 4%; |
| 9 | --foreground: 213 31% 91%; |
| 10 | |
| 11 | --muted: 223 47% 11%; |
| 12 | --muted-foreground: 215.4 16.3% 56.9%; |
| 13 | |
| 14 | --popover: 224 71% 4%; |
| 15 | --popover-foreground: 215 20.2% 65.1%; |
| 16 | |
| 17 | --card: 224 71% 4%; |
| 18 | --card-foreground: 213 31% 91%; |
| 19 | |
| 20 | --border: 216 34% 17%; |
| 21 | --input: 216 34% 17%; |
| 22 | |
| 23 | --primary: 210 40% 98%; |
| 24 | --primary-foreground: 222.2 47.4% 1.2%; |
| 25 | |
| 26 | --secondary: 222.2 47.4% 11.2%; |
| 27 | --secondary-foreground: 210 40% 98%; |
| 28 | |
| 29 | --accent: 216 34% 17%; |
| 30 | --accent-foreground: 210 40% 98%; |
| 31 | |
| 32 | --destructive: 359 51% 48%; |
| 33 | --destructive-foreground: 210 40% 98%; |
| 34 | |
| 35 | --ring: 216 34% 17%; |
| 36 | |
| 37 | --radius: 0.5rem; |
| 38 | } |
| 39 | } |
| 40 | |
| 41 | @layer base { |
| 42 | * { |
| 43 | @apply border-border; |
| 44 | } |
| 45 | body { |
| 46 | @apply bg-background text-foreground; |
| 47 | font-feature-settings: 'rlig' 1, 'calt' 1; |
| 48 | } |
| 49 | } |
Skyler Grey | 22205e6 | 2023-08-06 15:20:25 +0000 | [diff] [blame^] | 50 | |
| 51 | .gradient-text { |
| 52 | background-clip: text; |
| 53 | -webkit-text-fill-color: transparent; |
| 54 | @apply bg-gradient-to-r font-bold; |
| 55 | } |
| 56 | |
| 57 | p:not(.reset):not(:last-child) { |
| 58 | @apply pb-5; |
| 59 | } |
| 60 | |
| 61 | a:not(.reset) { |
| 62 | @apply gradient-text text-cyan-300 from-cyan-200 to-cyan-300 underline decoration-cyan-300/30 transition-colors; |
| 63 | } |
| 64 | |
| 65 | a:hover:not(.reset) { |
| 66 | @apply gradient-text text-cyan-500 from-cyan-400 to-cyan-500 decoration-cyan-500; |
| 67 | } |
| 68 | |
| 69 | ul li:not(.reset)::before { |
| 70 | content: "- "; |
| 71 | } |
| 72 | |
| 73 | .dim { |
| 74 | @apply text-gray-400; |
| 75 | } |
| 76 | |
| 77 | a.dim:not(.reset) { |
| 78 | @apply gradient-text text-cyan-600 from-cyan-600 to-cyan-700; |
| 79 | } |
| 80 | |
| 81 | a.dim:hover:not(.reset) { |
| 82 | @apply gradient-text text-cyan-400 from-cyan-300 to-cyan-400 underline decoration-cyan-400; |
| 83 | } |
| 84 | |
| 85 | h2:not(.reset) { |
| 86 | @apply inline-block; |
| 87 | } |