|
1 | | -@tailwind base; |
2 | | -@tailwind components; |
3 | | -@tailwind utilities; |
| 1 | +@import 'tailwindcss'; |
| 2 | + |
| 3 | +@plugin '@tailwindcss/typography'; |
| 4 | + |
| 5 | +@theme { |
| 6 | + --shadow-*: initial; |
| 7 | + --shadow-default: |
| 8 | + 0 10px 30px 0 rgba(0, 0, 0, 1), 0 10px 20px 0 rgba(0, 0, 0, 1); |
| 9 | + |
| 10 | + --color-*: initial; |
| 11 | + --color-transparent: transparent; |
| 12 | + --color-black: #000000; |
| 13 | + --color-navy: #16202d; |
| 14 | + --color-navy-light: #959fac; |
| 15 | + --color-grey: #f3f5f5; |
| 16 | + --color-grey-light: #eff2f3; |
| 17 | + --color-white: #ffffff; |
| 18 | + |
| 19 | + --color-pink-200: #ffa6f6; |
| 20 | + --color-pink-300: #fa8cef; |
| 21 | + --color-pink-400: #fa7fee; |
| 22 | + |
| 23 | + --font-*: initial; |
| 24 | + --font-body: Founders Grotesk, sans-serif; |
| 25 | + --font-heading: GT Pressura, sans-serif; |
| 26 | + |
| 27 | + --text-*: initial; |
| 28 | + --text-xs: 0.75rem; |
| 29 | + --text-sm: 0.875rem; |
| 30 | + --text-base: 1rem; |
| 31 | + --text-lg: 1.125rem; |
| 32 | + --text-xl: 1.25rem; |
| 33 | + --text-2xl: 1.5rem; |
| 34 | + --text-3xl: 1.875rem; |
| 35 | + --text-4xl: 2.25rem; |
| 36 | + --text-5xl: 3rem; |
| 37 | + --text-6xl: 4rem; |
| 38 | + |
| 39 | + --container-*: initial; |
| 40 | + --container-xxs: 13rem; |
| 41 | + --container-xs: 20rem; |
| 42 | + --container-sm: 24rem; |
| 43 | + --container-md: 28rem; |
| 44 | + --container-lg: 32rem; |
| 45 | + --container-xl: 36rem; |
| 46 | + --container-2xl: 42rem; |
| 47 | + --container-3xl: 48rem; |
| 48 | + --container-4xl: 56rem; |
| 49 | + --container-5xl: 64rem; |
| 50 | + --container-6xl: 72rem; |
| 51 | + --container-7xl: 80rem; |
| 52 | + --container-8xl: 90rem; |
| 53 | + --container-9xl: 100rem; |
| 54 | + --container-full: 100%; |
| 55 | + |
| 56 | + --spacing-*: initial; |
| 57 | + --spacing-0: 0; |
| 58 | + --spacing-1: 0.25rem; |
| 59 | + --spacing-2: 0.5rem; |
| 60 | + --spacing-3: 0.75rem; |
| 61 | + --spacing-4: 1rem; |
| 62 | + --spacing-5: 1.25rem; |
| 63 | + --spacing-6: 1.5rem; |
| 64 | + --spacing-8: 2rem; |
| 65 | + --spacing-10: 2.5rem; |
| 66 | + --spacing-12: 3rem; |
| 67 | + --spacing-16: 4rem; |
| 68 | + --spacing-20: 5rem; |
| 69 | + --spacing-24: 6rem; |
| 70 | + --spacing-32: 8rem; |
| 71 | + --spacing-40: 10rem; |
| 72 | + --spacing-48: 12rem; |
| 73 | + --spacing-56: 14rem; |
| 74 | + --spacing-64: 16rem; |
| 75 | + --spacing-72: 18rem; |
| 76 | + --spacing-80: 20rem; |
| 77 | + --spacing-140: 36rem; |
| 78 | + --spacing-px: 1px; |
| 79 | + |
| 80 | + --animate-ellipsis1: ellipsis 1s infinite; |
| 81 | + --animate-ellipsis2: ellipsis 1s infinite 0.333s; |
| 82 | + --animate-ellipsis3: ellipsis 1s infinite 0.666s; |
| 83 | + |
| 84 | + @keyframes ellipsis { |
| 85 | + 0% { |
| 86 | + transform: scale(0); |
| 87 | + } |
| 88 | + 50% { |
| 89 | + transform: scale(1); |
| 90 | + } |
| 91 | + 100% { |
| 92 | + transform: scale(0); |
| 93 | + } |
| 94 | + } |
| 95 | +} |
| 96 | + |
| 97 | +/* |
| 98 | + The default border color has changed to `currentcolor` in Tailwind CSS v4, |
| 99 | + so we've added these compatibility styles to make sure everything still |
| 100 | + looks the same as it did with Tailwind CSS v3. |
| 101 | +
|
| 102 | + If we ever want to remove these styles, we need to add an explicit border |
| 103 | + color utility to any element that depends on these defaults. |
| 104 | +*/ |
| 105 | +@layer base { |
| 106 | + *, |
| 107 | + ::after, |
| 108 | + ::before, |
| 109 | + ::backdrop, |
| 110 | + ::file-selector-button { |
| 111 | + border-color: var(--color-gray-200, currentcolor); |
| 112 | + } |
| 113 | +} |
4 | 114 |
|
5 | 115 | html, |
6 | 116 | body { |
|
0 commit comments