diff --git a/app/assets/builds/tailwind.css b/app/assets/builds/tailwind.css index e92e2c0..d21d4a8 100644 --- a/app/assets/builds/tailwind.css +++ b/app/assets/builds/tailwind.css @@ -1,5 +1,5 @@ /* -! tailwindcss v3.3.0 | MIT License | https://tailwindcss.com +! tailwindcss v3.4.0 | MIT License | https://tailwindcss.com */ /* @@ -32,9 +32,11 @@ 4. Use the user's configured `sans` font-family by default. 5. Use the user's configured `sans` font-feature-settings by default. 6. Use the user's configured `sans` font-variation-settings by default. +7. Disable tap highlights on iOS */ -html { +html, +:host { line-height: 1.5; /* 1 */ -webkit-text-size-adjust: 100%; @@ -44,12 +46,14 @@ html { -o-tab-size: 4; tab-size: 4; /* 3 */ - font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; + font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; /* 4 */ font-feature-settings: normal; /* 5 */ font-variation-settings: normal; /* 6 */ + -webkit-tap-highlight-color: transparent; + /* 7 */ } /* @@ -121,8 +125,10 @@ strong { } /* -1. Use the user's configured `mono` font family by default. -2. Correct the odd `em` font sizing in all browsers. +1. Use the user's configured `mono` font-family by default. +2. Use the user's configured `mono` font-feature-settings by default. +3. Use the user's configured `mono` font-variation-settings by default. +4. Correct the odd `em` font sizing in all browsers. */ code, @@ -131,8 +137,12 @@ samp, pre { font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; /* 1 */ - font-size: 1em; + font-feature-settings: normal; /* 2 */ + font-variation-settings: normal; + /* 3 */ + font-size: 1em; + /* 4 */ } /* @@ -191,6 +201,10 @@ select, textarea { font-family: inherit; /* 1 */ + font-feature-settings: inherit; + /* 1 */ + font-variation-settings: inherit; + /* 1 */ font-size: 100%; /* 1 */ font-weight: inherit; @@ -341,6 +355,14 @@ menu { padding: 0; } +/* +Reset default styling for dialogs. +*/ + +dialog { + padding: 0; +} + /* Prevent resizing textareas horizontally by default. */ @@ -436,6 +458,9 @@ video { --tw-pan-y: ; --tw-pinch-zoom: ; --tw-scroll-snap-strictness: proximity; + --tw-gradient-from-position: ; + --tw-gradient-via-position: ; + --tw-gradient-to-position: ; --tw-ordinal: ; --tw-slashed-zero: ; --tw-numeric-figure: ; @@ -483,6 +508,9 @@ video { --tw-pan-y: ; --tw-pinch-zoom: ; --tw-scroll-snap-strictness: proximity; + --tw-gradient-from-position: ; + --tw-gradient-via-position: ; + --tw-gradient-to-position: ; --tw-ordinal: ; --tw-slashed-zero: ; --tw-numeric-figure: ; @@ -1024,12 +1052,16 @@ video { inset: 0px; } -.-top-4 { - top: -1rem; +.-left-1 { + left: -0.25rem; } -.bottom-1 { - bottom: 0.25rem; +.-top-3 { + top: -0.75rem; +} + +.-top-4 { + top: -1rem; } .z-40 { @@ -1056,6 +1088,10 @@ video { grid-column: span 7 / span 7; } +.col-start-2 { + grid-column-start: 2; +} + .float-right { float: right; } @@ -1081,6 +1117,11 @@ video { margin-right: auto; } +.my-4 { + margin-top: 1rem; + margin-bottom: 1rem; +} + .my-auto { margin-top: auto; margin-bottom: auto; @@ -1106,6 +1147,10 @@ video { margin-bottom: 1rem; } +.mb-5 { + margin-bottom: 1.25rem; +} + .mb-6 { margin-bottom: 1.5rem; } @@ -1210,8 +1255,8 @@ video { height: 0.5rem; } -.h-3 { - height: 0.75rem; +.h-2\.5 { + height: 0.625rem; } .h-32 { @@ -1226,6 +1271,10 @@ video { height: 12rem; } +.h-6 { + height: 1.5rem; +} + .h-8 { height: 2rem; } @@ -1239,15 +1288,14 @@ video { max-height: 3rem; } -.max-h-fit { - max-height: -moz-fit-content; - max-height: fit-content; -} - .max-h-full { max-height: 100%; } +.min-h-16 { + min-height: 4rem; +} + .w-1 { width: 0.25rem; } @@ -1260,6 +1308,10 @@ video { width: 0.5rem; } +.w-2\.5 { + width: 0.625rem; +} + .w-24 { width: 6rem; } @@ -1300,6 +1352,10 @@ video { width: 100vw; } +.min-w-32 { + min-width: 8rem; +} + .max-w-3xl { max-width: 48rem; } @@ -1336,6 +1392,10 @@ video { flex-grow: 1; } +.grow-0 { + flex-grow: 0; +} + .basis-auto { flex-basis: auto; } @@ -1361,6 +1421,11 @@ video { resize: both; } +.columns-1 { + -moz-columns: 1; + columns: 1; +} + .columns-2 { -moz-columns: 2; columns: 2; @@ -1407,8 +1472,8 @@ video { grid-template-rows: repeat(1, minmax(0, 1fr)); } -.grid-rows-2 { - grid-template-rows: repeat(2, minmax(0, 1fr)); +.grid-rows-7 { + grid-template-rows: repeat(7, minmax(0, 1fr)); } .flex-row { @@ -1423,10 +1488,6 @@ video { align-content: center; } -.items-start { - align-items: flex-start; -} - .items-center { align-items: center; } @@ -1443,6 +1504,14 @@ video { justify-content: space-between; } +.gap-0 { + gap: 0px; +} + +.gap-0\.5 { + gap: 0.125rem; +} + .gap-2 { gap: 0.5rem; } @@ -1451,10 +1520,6 @@ video { gap: 1rem; } -.gap-5 { - gap: 1.25rem; -} - .gap-x-1 { -moz-column-gap: 0.25rem; column-gap: 0.25rem; @@ -1471,12 +1536,6 @@ video { margin-left: calc(0.25rem * calc(1 - var(--tw-space-x-reverse))); } -.space-y-1 > :not([hidden]) ~ :not([hidden]) { - --tw-space-y-reverse: 0; - margin-top: calc(0.25rem * calc(1 - var(--tw-space-y-reverse))); - margin-bottom: calc(0.25rem * var(--tw-space-y-reverse)); -} - .overflow-auto { overflow: auto; } @@ -1518,6 +1577,10 @@ video { border-width: 2px; } +.border-b { + border-bottom-width: 1px; +} + .border-b-2 { border-bottom-width: 2px; } @@ -1542,6 +1605,15 @@ video { border-style: solid; } +.border-dashed { + border-style: dashed; +} + +.border-amber-400 { + --tw-border-opacity: 1; + border-color: rgb(251 191 36 / var(--tw-border-opacity)); +} + .border-blue-200 { --tw-border-opacity: 1; border-color: rgb(191 219 254 / var(--tw-border-opacity)); @@ -1557,6 +1629,11 @@ video { border-color: rgb(229 231 235 / var(--tw-border-opacity)); } +.border-gray-300 { + --tw-border-opacity: 1; + border-color: rgb(209 213 219 / var(--tw-border-opacity)); +} + .border-gray-400 { --tw-border-opacity: 1; border-color: rgb(156 163 175 / var(--tw-border-opacity)); @@ -1571,6 +1648,11 @@ video { border-color: transparent; } +.bg-amber-100 { + --tw-bg-opacity: 1; + background-color: rgb(254 243 199 / var(--tw-bg-opacity)); +} + .bg-black { --tw-bg-opacity: 1; background-color: rgb(0 0 0 / var(--tw-bg-opacity)); @@ -1581,6 +1663,90 @@ video { background-color: rgb(219 234 254 / var(--tw-bg-opacity)); } +.bg-blue-100\/0 { + background-color: rgb(219 234 254 / 0); +} + +.bg-blue-100\/10 { + background-color: rgb(219 234 254 / 0.1); +} + +.bg-blue-100\/100 { + background-color: rgb(219 234 254 / 1); +} + +.bg-blue-100\/15 { + background-color: rgb(219 234 254 / 0.15); +} + +.bg-blue-100\/20 { + background-color: rgb(219 234 254 / 0.2); +} + +.bg-blue-100\/25 { + background-color: rgb(219 234 254 / 0.25); +} + +.bg-blue-100\/30 { + background-color: rgb(219 234 254 / 0.3); +} + +.bg-blue-100\/35 { + background-color: rgb(219 234 254 / 0.35); +} + +.bg-blue-100\/40 { + background-color: rgb(219 234 254 / 0.4); +} + +.bg-blue-100\/45 { + background-color: rgb(219 234 254 / 0.45); +} + +.bg-blue-100\/5 { + background-color: rgb(219 234 254 / 0.05); +} + +.bg-blue-100\/50 { + background-color: rgb(219 234 254 / 0.5); +} + +.bg-blue-100\/55 { + background-color: rgb(219 234 254 / 0.55); +} + +.bg-blue-100\/60 { + background-color: rgb(219 234 254 / 0.6); +} + +.bg-blue-100\/65 { + background-color: rgb(219 234 254 / 0.65); +} + +.bg-blue-100\/70 { + background-color: rgb(219 234 254 / 0.7); +} + +.bg-blue-100\/75 { + background-color: rgb(219 234 254 / 0.75); +} + +.bg-blue-100\/80 { + background-color: rgb(219 234 254 / 0.8); +} + +.bg-blue-100\/85 { + background-color: rgb(219 234 254 / 0.85); +} + +.bg-blue-100\/90 { + background-color: rgb(219 234 254 / 0.9); +} + +.bg-blue-100\/95 { + background-color: rgb(219 234 254 / 0.95); +} + .bg-blue-200 { --tw-bg-opacity: 1; background-color: rgb(191 219 254 / var(--tw-bg-opacity)); @@ -1601,16 +1767,802 @@ video { background-color: rgb(239 246 255 / var(--tw-bg-opacity)); } +.bg-blue-50\/0 { + background-color: rgb(239 246 255 / 0); +} + +.bg-blue-50\/10 { + background-color: rgb(239 246 255 / 0.1); +} + +.bg-blue-50\/100 { + background-color: rgb(239 246 255 / 1); +} + +.bg-blue-50\/15 { + background-color: rgb(239 246 255 / 0.15); +} + +.bg-blue-50\/20 { + background-color: rgb(239 246 255 / 0.2); +} + +.bg-blue-50\/25 { + background-color: rgb(239 246 255 / 0.25); +} + +.bg-blue-50\/30 { + background-color: rgb(239 246 255 / 0.3); +} + +.bg-blue-50\/35 { + background-color: rgb(239 246 255 / 0.35); +} + +.bg-blue-50\/40 { + background-color: rgb(239 246 255 / 0.4); +} + +.bg-blue-50\/45 { + background-color: rgb(239 246 255 / 0.45); +} + +.bg-blue-50\/5 { + background-color: rgb(239 246 255 / 0.05); +} + +.bg-blue-50\/50 { + background-color: rgb(239 246 255 / 0.5); +} + +.bg-blue-50\/55 { + background-color: rgb(239 246 255 / 0.55); +} + +.bg-blue-50\/60 { + background-color: rgb(239 246 255 / 0.6); +} + +.bg-blue-50\/65 { + background-color: rgb(239 246 255 / 0.65); +} + +.bg-blue-50\/70 { + background-color: rgb(239 246 255 / 0.7); +} + +.bg-blue-50\/75 { + background-color: rgb(239 246 255 / 0.75); +} + +.bg-blue-50\/80 { + background-color: rgb(239 246 255 / 0.8); +} + +.bg-blue-50\/85 { + background-color: rgb(239 246 255 / 0.85); +} + +.bg-blue-50\/90 { + background-color: rgb(239 246 255 / 0.9); +} + +.bg-blue-50\/95 { + background-color: rgb(239 246 255 / 0.95); +} + .bg-blue-500 { --tw-bg-opacity: 1; background-color: rgb(59 130 246 / var(--tw-bg-opacity)); } +.bg-blue-500\/0 { + background-color: rgb(59 130 246 / 0); +} + +.bg-blue-500\/10 { + background-color: rgb(59 130 246 / 0.1); +} + +.bg-blue-500\/100 { + background-color: rgb(59 130 246 / 1); +} + +.bg-blue-500\/15 { + background-color: rgb(59 130 246 / 0.15); +} + +.bg-blue-500\/20 { + background-color: rgb(59 130 246 / 0.2); +} + +.bg-blue-500\/25 { + background-color: rgb(59 130 246 / 0.25); +} + +.bg-blue-500\/30 { + background-color: rgb(59 130 246 / 0.3); +} + +.bg-blue-500\/35 { + background-color: rgb(59 130 246 / 0.35); +} + +.bg-blue-500\/40 { + background-color: rgb(59 130 246 / 0.4); +} + +.bg-blue-500\/45 { + background-color: rgb(59 130 246 / 0.45); +} + +.bg-blue-500\/5 { + background-color: rgb(59 130 246 / 0.05); +} + +.bg-blue-500\/50 { + background-color: rgb(59 130 246 / 0.5); +} + +.bg-blue-500\/55 { + background-color: rgb(59 130 246 / 0.55); +} + +.bg-blue-500\/60 { + background-color: rgb(59 130 246 / 0.6); +} + +.bg-blue-500\/65 { + background-color: rgb(59 130 246 / 0.65); +} + +.bg-blue-500\/70 { + background-color: rgb(59 130 246 / 0.7); +} + +.bg-blue-500\/75 { + background-color: rgb(59 130 246 / 0.75); +} + +.bg-blue-500\/80 { + background-color: rgb(59 130 246 / 0.8); +} + +.bg-blue-500\/85 { + background-color: rgb(59 130 246 / 0.85); +} + +.bg-blue-500\/90 { + background-color: rgb(59 130 246 / 0.9); +} + +.bg-blue-500\/95 { + background-color: rgb(59 130 246 / 0.95); +} + +.bg-blue-800 { + --tw-bg-opacity: 1; + background-color: rgb(30 64 175 / var(--tw-bg-opacity)); +} + +.bg-blue-800\/0 { + background-color: rgb(30 64 175 / 0); +} + +.bg-blue-800\/10 { + background-color: rgb(30 64 175 / 0.1); +} + +.bg-blue-800\/100 { + background-color: rgb(30 64 175 / 1); +} + +.bg-blue-800\/15 { + background-color: rgb(30 64 175 / 0.15); +} + +.bg-blue-800\/20 { + background-color: rgb(30 64 175 / 0.2); +} + +.bg-blue-800\/25 { + background-color: rgb(30 64 175 / 0.25); +} + +.bg-blue-800\/30 { + background-color: rgb(30 64 175 / 0.3); +} + +.bg-blue-800\/35 { + background-color: rgb(30 64 175 / 0.35); +} + +.bg-blue-800\/40 { + background-color: rgb(30 64 175 / 0.4); +} + +.bg-blue-800\/45 { + background-color: rgb(30 64 175 / 0.45); +} + +.bg-blue-800\/5 { + background-color: rgb(30 64 175 / 0.05); +} + +.bg-blue-800\/50 { + background-color: rgb(30 64 175 / 0.5); +} + +.bg-blue-800\/55 { + background-color: rgb(30 64 175 / 0.55); +} + +.bg-blue-800\/60 { + background-color: rgb(30 64 175 / 0.6); +} + +.bg-blue-800\/65 { + background-color: rgb(30 64 175 / 0.65); +} + +.bg-blue-800\/70 { + background-color: rgb(30 64 175 / 0.7); +} + +.bg-blue-800\/75 { + background-color: rgb(30 64 175 / 0.75); +} + +.bg-blue-800\/80 { + background-color: rgb(30 64 175 / 0.8); +} + +.bg-blue-800\/85 { + background-color: rgb(30 64 175 / 0.85); +} + +.bg-blue-800\/90 { + background-color: rgb(30 64 175 / 0.9); +} + +.bg-blue-800\/95 { + background-color: rgb(30 64 175 / 0.95); +} + +.bg-blue-900 { + --tw-bg-opacity: 1; + background-color: rgb(30 58 138 / var(--tw-bg-opacity)); +} + +.bg-blue-900\/0 { + background-color: rgb(30 58 138 / 0); +} + +.bg-blue-900\/10 { + background-color: rgb(30 58 138 / 0.1); +} + +.bg-blue-900\/100 { + background-color: rgb(30 58 138 / 1); +} + +.bg-blue-900\/15 { + background-color: rgb(30 58 138 / 0.15); +} + +.bg-blue-900\/20 { + background-color: rgb(30 58 138 / 0.2); +} + +.bg-blue-900\/25 { + background-color: rgb(30 58 138 / 0.25); +} + +.bg-blue-900\/30 { + background-color: rgb(30 58 138 / 0.3); +} + +.bg-blue-900\/35 { + background-color: rgb(30 58 138 / 0.35); +} + +.bg-blue-900\/40 { + background-color: rgb(30 58 138 / 0.4); +} + +.bg-blue-900\/45 { + background-color: rgb(30 58 138 / 0.45); +} + +.bg-blue-900\/5 { + background-color: rgb(30 58 138 / 0.05); +} + +.bg-blue-900\/50 { + background-color: rgb(30 58 138 / 0.5); +} + +.bg-blue-900\/55 { + background-color: rgb(30 58 138 / 0.55); +} + +.bg-blue-900\/60 { + background-color: rgb(30 58 138 / 0.6); +} + +.bg-blue-900\/65 { + background-color: rgb(30 58 138 / 0.65); +} + +.bg-blue-900\/70 { + background-color: rgb(30 58 138 / 0.7); +} + +.bg-blue-900\/75 { + background-color: rgb(30 58 138 / 0.75); +} + +.bg-blue-900\/80 { + background-color: rgb(30 58 138 / 0.8); +} + +.bg-blue-900\/85 { + background-color: rgb(30 58 138 / 0.85); +} + +.bg-blue-900\/90 { + background-color: rgb(30 58 138 / 0.9); +} + +.bg-blue-900\/95 { + background-color: rgb(30 58 138 / 0.95); +} + +.bg-emerald-100 { + --tw-bg-opacity: 1; + background-color: rgb(209 250 229 / var(--tw-bg-opacity)); +} + +.bg-emerald-100\/0 { + background-color: rgb(209 250 229 / 0); +} + +.bg-emerald-100\/10 { + background-color: rgb(209 250 229 / 0.1); +} + +.bg-emerald-100\/100 { + background-color: rgb(209 250 229 / 1); +} + +.bg-emerald-100\/15 { + background-color: rgb(209 250 229 / 0.15); +} + +.bg-emerald-100\/20 { + background-color: rgb(209 250 229 / 0.2); +} + +.bg-emerald-100\/25 { + background-color: rgb(209 250 229 / 0.25); +} + +.bg-emerald-100\/30 { + background-color: rgb(209 250 229 / 0.3); +} + +.bg-emerald-100\/35 { + background-color: rgb(209 250 229 / 0.35); +} + +.bg-emerald-100\/40 { + background-color: rgb(209 250 229 / 0.4); +} + +.bg-emerald-100\/45 { + background-color: rgb(209 250 229 / 0.45); +} + +.bg-emerald-100\/5 { + background-color: rgb(209 250 229 / 0.05); +} + +.bg-emerald-100\/50 { + background-color: rgb(209 250 229 / 0.5); +} + +.bg-emerald-100\/55 { + background-color: rgb(209 250 229 / 0.55); +} + +.bg-emerald-100\/60 { + background-color: rgb(209 250 229 / 0.6); +} + +.bg-emerald-100\/65 { + background-color: rgb(209 250 229 / 0.65); +} + +.bg-emerald-100\/70 { + background-color: rgb(209 250 229 / 0.7); +} + +.bg-emerald-100\/75 { + background-color: rgb(209 250 229 / 0.75); +} + +.bg-emerald-100\/80 { + background-color: rgb(209 250 229 / 0.8); +} + +.bg-emerald-100\/85 { + background-color: rgb(209 250 229 / 0.85); +} + +.bg-emerald-100\/90 { + background-color: rgb(209 250 229 / 0.9); +} + +.bg-emerald-100\/95 { + background-color: rgb(209 250 229 / 0.95); +} + .bg-emerald-50 { --tw-bg-opacity: 1; background-color: rgb(236 253 245 / var(--tw-bg-opacity)); } +.bg-emerald-50\/0 { + background-color: rgb(236 253 245 / 0); +} + +.bg-emerald-50\/10 { + background-color: rgb(236 253 245 / 0.1); +} + +.bg-emerald-50\/100 { + background-color: rgb(236 253 245 / 1); +} + +.bg-emerald-50\/15 { + background-color: rgb(236 253 245 / 0.15); +} + +.bg-emerald-50\/20 { + background-color: rgb(236 253 245 / 0.2); +} + +.bg-emerald-50\/25 { + background-color: rgb(236 253 245 / 0.25); +} + +.bg-emerald-50\/30 { + background-color: rgb(236 253 245 / 0.3); +} + +.bg-emerald-50\/35 { + background-color: rgb(236 253 245 / 0.35); +} + +.bg-emerald-50\/40 { + background-color: rgb(236 253 245 / 0.4); +} + +.bg-emerald-50\/45 { + background-color: rgb(236 253 245 / 0.45); +} + +.bg-emerald-50\/5 { + background-color: rgb(236 253 245 / 0.05); +} + +.bg-emerald-50\/50 { + background-color: rgb(236 253 245 / 0.5); +} + +.bg-emerald-50\/55 { + background-color: rgb(236 253 245 / 0.55); +} + +.bg-emerald-50\/60 { + background-color: rgb(236 253 245 / 0.6); +} + +.bg-emerald-50\/65 { + background-color: rgb(236 253 245 / 0.65); +} + +.bg-emerald-50\/70 { + background-color: rgb(236 253 245 / 0.7); +} + +.bg-emerald-50\/75 { + background-color: rgb(236 253 245 / 0.75); +} + +.bg-emerald-50\/80 { + background-color: rgb(236 253 245 / 0.8); +} + +.bg-emerald-50\/85 { + background-color: rgb(236 253 245 / 0.85); +} + +.bg-emerald-50\/90 { + background-color: rgb(236 253 245 / 0.9); +} + +.bg-emerald-50\/95 { + background-color: rgb(236 253 245 / 0.95); +} + +.bg-emerald-500 { + --tw-bg-opacity: 1; + background-color: rgb(16 185 129 / var(--tw-bg-opacity)); +} + +.bg-emerald-500\/0 { + background-color: rgb(16 185 129 / 0); +} + +.bg-emerald-500\/10 { + background-color: rgb(16 185 129 / 0.1); +} + +.bg-emerald-500\/100 { + background-color: rgb(16 185 129 / 1); +} + +.bg-emerald-500\/15 { + background-color: rgb(16 185 129 / 0.15); +} + +.bg-emerald-500\/20 { + background-color: rgb(16 185 129 / 0.2); +} + +.bg-emerald-500\/25 { + background-color: rgb(16 185 129 / 0.25); +} + +.bg-emerald-500\/30 { + background-color: rgb(16 185 129 / 0.3); +} + +.bg-emerald-500\/35 { + background-color: rgb(16 185 129 / 0.35); +} + +.bg-emerald-500\/40 { + background-color: rgb(16 185 129 / 0.4); +} + +.bg-emerald-500\/45 { + background-color: rgb(16 185 129 / 0.45); +} + +.bg-emerald-500\/5 { + background-color: rgb(16 185 129 / 0.05); +} + +.bg-emerald-500\/50 { + background-color: rgb(16 185 129 / 0.5); +} + +.bg-emerald-500\/55 { + background-color: rgb(16 185 129 / 0.55); +} + +.bg-emerald-500\/60 { + background-color: rgb(16 185 129 / 0.6); +} + +.bg-emerald-500\/65 { + background-color: rgb(16 185 129 / 0.65); +} + +.bg-emerald-500\/70 { + background-color: rgb(16 185 129 / 0.7); +} + +.bg-emerald-500\/75 { + background-color: rgb(16 185 129 / 0.75); +} + +.bg-emerald-500\/80 { + background-color: rgb(16 185 129 / 0.8); +} + +.bg-emerald-500\/85 { + background-color: rgb(16 185 129 / 0.85); +} + +.bg-emerald-500\/90 { + background-color: rgb(16 185 129 / 0.9); +} + +.bg-emerald-500\/95 { + background-color: rgb(16 185 129 / 0.95); +} + +.bg-emerald-800 { + --tw-bg-opacity: 1; + background-color: rgb(6 95 70 / var(--tw-bg-opacity)); +} + +.bg-emerald-800\/0 { + background-color: rgb(6 95 70 / 0); +} + +.bg-emerald-800\/10 { + background-color: rgb(6 95 70 / 0.1); +} + +.bg-emerald-800\/100 { + background-color: rgb(6 95 70 / 1); +} + +.bg-emerald-800\/15 { + background-color: rgb(6 95 70 / 0.15); +} + +.bg-emerald-800\/20 { + background-color: rgb(6 95 70 / 0.2); +} + +.bg-emerald-800\/25 { + background-color: rgb(6 95 70 / 0.25); +} + +.bg-emerald-800\/30 { + background-color: rgb(6 95 70 / 0.3); +} + +.bg-emerald-800\/35 { + background-color: rgb(6 95 70 / 0.35); +} + +.bg-emerald-800\/40 { + background-color: rgb(6 95 70 / 0.4); +} + +.bg-emerald-800\/45 { + background-color: rgb(6 95 70 / 0.45); +} + +.bg-emerald-800\/5 { + background-color: rgb(6 95 70 / 0.05); +} + +.bg-emerald-800\/50 { + background-color: rgb(6 95 70 / 0.5); +} + +.bg-emerald-800\/55 { + background-color: rgb(6 95 70 / 0.55); +} + +.bg-emerald-800\/60 { + background-color: rgb(6 95 70 / 0.6); +} + +.bg-emerald-800\/65 { + background-color: rgb(6 95 70 / 0.65); +} + +.bg-emerald-800\/70 { + background-color: rgb(6 95 70 / 0.7); +} + +.bg-emerald-800\/75 { + background-color: rgb(6 95 70 / 0.75); +} + +.bg-emerald-800\/80 { + background-color: rgb(6 95 70 / 0.8); +} + +.bg-emerald-800\/85 { + background-color: rgb(6 95 70 / 0.85); +} + +.bg-emerald-800\/90 { + background-color: rgb(6 95 70 / 0.9); +} + +.bg-emerald-800\/95 { + background-color: rgb(6 95 70 / 0.95); +} + +.bg-emerald-900 { + --tw-bg-opacity: 1; + background-color: rgb(6 78 59 / var(--tw-bg-opacity)); +} + +.bg-emerald-900\/0 { + background-color: rgb(6 78 59 / 0); +} + +.bg-emerald-900\/10 { + background-color: rgb(6 78 59 / 0.1); +} + +.bg-emerald-900\/100 { + background-color: rgb(6 78 59 / 1); +} + +.bg-emerald-900\/15 { + background-color: rgb(6 78 59 / 0.15); +} + +.bg-emerald-900\/20 { + background-color: rgb(6 78 59 / 0.2); +} + +.bg-emerald-900\/25 { + background-color: rgb(6 78 59 / 0.25); +} + +.bg-emerald-900\/30 { + background-color: rgb(6 78 59 / 0.3); +} + +.bg-emerald-900\/35 { + background-color: rgb(6 78 59 / 0.35); +} + +.bg-emerald-900\/40 { + background-color: rgb(6 78 59 / 0.4); +} + +.bg-emerald-900\/45 { + background-color: rgb(6 78 59 / 0.45); +} + +.bg-emerald-900\/5 { + background-color: rgb(6 78 59 / 0.05); +} + +.bg-emerald-900\/50 { + background-color: rgb(6 78 59 / 0.5); +} + +.bg-emerald-900\/55 { + background-color: rgb(6 78 59 / 0.55); +} + +.bg-emerald-900\/60 { + background-color: rgb(6 78 59 / 0.6); +} + +.bg-emerald-900\/65 { + background-color: rgb(6 78 59 / 0.65); +} + +.bg-emerald-900\/70 { + background-color: rgb(6 78 59 / 0.7); +} + +.bg-emerald-900\/75 { + background-color: rgb(6 78 59 / 0.75); +} + +.bg-emerald-900\/80 { + background-color: rgb(6 78 59 / 0.8); +} + +.bg-emerald-900\/85 { + background-color: rgb(6 78 59 / 0.85); +} + +.bg-emerald-900\/90 { + background-color: rgb(6 78 59 / 0.9); +} + +.bg-emerald-900\/95 { + background-color: rgb(6 78 59 / 0.95); +} + .bg-fuchsia-100 { --tw-bg-opacity: 1; background-color: rgb(250 232 255 / var(--tw-bg-opacity)); @@ -1631,16 +2583,540 @@ video { background-color: rgb(249 250 251 / var(--tw-bg-opacity)); } +.bg-green-100 { + --tw-bg-opacity: 1; + background-color: rgb(220 252 231 / var(--tw-bg-opacity)); +} + +.bg-green-100\/0 { + background-color: rgb(220 252 231 / 0); +} + +.bg-green-100\/10 { + background-color: rgb(220 252 231 / 0.1); +} + +.bg-green-100\/100 { + background-color: rgb(220 252 231 / 1); +} + +.bg-green-100\/15 { + background-color: rgb(220 252 231 / 0.15); +} + +.bg-green-100\/20 { + background-color: rgb(220 252 231 / 0.2); +} + +.bg-green-100\/25 { + background-color: rgb(220 252 231 / 0.25); +} + +.bg-green-100\/30 { + background-color: rgb(220 252 231 / 0.3); +} + +.bg-green-100\/35 { + background-color: rgb(220 252 231 / 0.35); +} + +.bg-green-100\/40 { + background-color: rgb(220 252 231 / 0.4); +} + +.bg-green-100\/45 { + background-color: rgb(220 252 231 / 0.45); +} + +.bg-green-100\/5 { + background-color: rgb(220 252 231 / 0.05); +} + +.bg-green-100\/50 { + background-color: rgb(220 252 231 / 0.5); +} + +.bg-green-100\/55 { + background-color: rgb(220 252 231 / 0.55); +} + +.bg-green-100\/60 { + background-color: rgb(220 252 231 / 0.6); +} + +.bg-green-100\/65 { + background-color: rgb(220 252 231 / 0.65); +} + +.bg-green-100\/70 { + background-color: rgb(220 252 231 / 0.7); +} + +.bg-green-100\/75 { + background-color: rgb(220 252 231 / 0.75); +} + +.bg-green-100\/80 { + background-color: rgb(220 252 231 / 0.8); +} + +.bg-green-100\/85 { + background-color: rgb(220 252 231 / 0.85); +} + +.bg-green-100\/90 { + background-color: rgb(220 252 231 / 0.9); +} + +.bg-green-100\/95 { + background-color: rgb(220 252 231 / 0.95); +} + +.bg-green-50 { + --tw-bg-opacity: 1; + background-color: rgb(240 253 244 / var(--tw-bg-opacity)); +} + +.bg-green-50\/0 { + background-color: rgb(240 253 244 / 0); +} + +.bg-green-50\/10 { + background-color: rgb(240 253 244 / 0.1); +} + +.bg-green-50\/100 { + background-color: rgb(240 253 244 / 1); +} + +.bg-green-50\/15 { + background-color: rgb(240 253 244 / 0.15); +} + +.bg-green-50\/20 { + background-color: rgb(240 253 244 / 0.2); +} + +.bg-green-50\/25 { + background-color: rgb(240 253 244 / 0.25); +} + +.bg-green-50\/30 { + background-color: rgb(240 253 244 / 0.3); +} + +.bg-green-50\/35 { + background-color: rgb(240 253 244 / 0.35); +} + +.bg-green-50\/40 { + background-color: rgb(240 253 244 / 0.4); +} + +.bg-green-50\/45 { + background-color: rgb(240 253 244 / 0.45); +} + +.bg-green-50\/5 { + background-color: rgb(240 253 244 / 0.05); +} + +.bg-green-50\/50 { + background-color: rgb(240 253 244 / 0.5); +} + +.bg-green-50\/55 { + background-color: rgb(240 253 244 / 0.55); +} + +.bg-green-50\/60 { + background-color: rgb(240 253 244 / 0.6); +} + +.bg-green-50\/65 { + background-color: rgb(240 253 244 / 0.65); +} + +.bg-green-50\/70 { + background-color: rgb(240 253 244 / 0.7); +} + +.bg-green-50\/75 { + background-color: rgb(240 253 244 / 0.75); +} + +.bg-green-50\/80 { + background-color: rgb(240 253 244 / 0.8); +} + +.bg-green-50\/85 { + background-color: rgb(240 253 244 / 0.85); +} + +.bg-green-50\/90 { + background-color: rgb(240 253 244 / 0.9); +} + +.bg-green-50\/95 { + background-color: rgb(240 253 244 / 0.95); +} + .bg-green-500 { --tw-bg-opacity: 1; background-color: rgb(34 197 94 / var(--tw-bg-opacity)); } +.bg-green-500\/0 { + background-color: rgb(34 197 94 / 0); +} + +.bg-green-500\/10 { + background-color: rgb(34 197 94 / 0.1); +} + +.bg-green-500\/100 { + background-color: rgb(34 197 94 / 1); +} + +.bg-green-500\/15 { + background-color: rgb(34 197 94 / 0.15); +} + +.bg-green-500\/20 { + background-color: rgb(34 197 94 / 0.2); +} + +.bg-green-500\/25 { + background-color: rgb(34 197 94 / 0.25); +} + +.bg-green-500\/30 { + background-color: rgb(34 197 94 / 0.3); +} + +.bg-green-500\/35 { + background-color: rgb(34 197 94 / 0.35); +} + +.bg-green-500\/40 { + background-color: rgb(34 197 94 / 0.4); +} + +.bg-green-500\/45 { + background-color: rgb(34 197 94 / 0.45); +} + +.bg-green-500\/5 { + background-color: rgb(34 197 94 / 0.05); +} + +.bg-green-500\/50 { + background-color: rgb(34 197 94 / 0.5); +} + +.bg-green-500\/55 { + background-color: rgb(34 197 94 / 0.55); +} + +.bg-green-500\/60 { + background-color: rgb(34 197 94 / 0.6); +} + +.bg-green-500\/65 { + background-color: rgb(34 197 94 / 0.65); +} + +.bg-green-500\/70 { + background-color: rgb(34 197 94 / 0.7); +} + +.bg-green-500\/75 { + background-color: rgb(34 197 94 / 0.75); +} + +.bg-green-500\/80 { + background-color: rgb(34 197 94 / 0.8); +} + +.bg-green-500\/85 { + background-color: rgb(34 197 94 / 0.85); +} + +.bg-green-500\/90 { + background-color: rgb(34 197 94 / 0.9); +} + +.bg-green-500\/95 { + background-color: rgb(34 197 94 / 0.95); +} + +.bg-green-800 { + --tw-bg-opacity: 1; + background-color: rgb(22 101 52 / var(--tw-bg-opacity)); +} + +.bg-green-800\/0 { + background-color: rgb(22 101 52 / 0); +} + +.bg-green-800\/10 { + background-color: rgb(22 101 52 / 0.1); +} + +.bg-green-800\/100 { + background-color: rgb(22 101 52 / 1); +} + +.bg-green-800\/15 { + background-color: rgb(22 101 52 / 0.15); +} + +.bg-green-800\/20 { + background-color: rgb(22 101 52 / 0.2); +} + +.bg-green-800\/25 { + background-color: rgb(22 101 52 / 0.25); +} + +.bg-green-800\/30 { + background-color: rgb(22 101 52 / 0.3); +} + +.bg-green-800\/35 { + background-color: rgb(22 101 52 / 0.35); +} + +.bg-green-800\/40 { + background-color: rgb(22 101 52 / 0.4); +} + +.bg-green-800\/45 { + background-color: rgb(22 101 52 / 0.45); +} + +.bg-green-800\/5 { + background-color: rgb(22 101 52 / 0.05); +} + +.bg-green-800\/50 { + background-color: rgb(22 101 52 / 0.5); +} + +.bg-green-800\/55 { + background-color: rgb(22 101 52 / 0.55); +} + +.bg-green-800\/60 { + background-color: rgb(22 101 52 / 0.6); +} + +.bg-green-800\/65 { + background-color: rgb(22 101 52 / 0.65); +} + +.bg-green-800\/70 { + background-color: rgb(22 101 52 / 0.7); +} + +.bg-green-800\/75 { + background-color: rgb(22 101 52 / 0.75); +} + +.bg-green-800\/80 { + background-color: rgb(22 101 52 / 0.8); +} + +.bg-green-800\/85 { + background-color: rgb(22 101 52 / 0.85); +} + +.bg-green-800\/90 { + background-color: rgb(22 101 52 / 0.9); +} + +.bg-green-800\/95 { + background-color: rgb(22 101 52 / 0.95); +} + +.bg-green-900 { + --tw-bg-opacity: 1; + background-color: rgb(20 83 45 / var(--tw-bg-opacity)); +} + +.bg-green-900\/0 { + background-color: rgb(20 83 45 / 0); +} + +.bg-green-900\/10 { + background-color: rgb(20 83 45 / 0.1); +} + +.bg-green-900\/100 { + background-color: rgb(20 83 45 / 1); +} + +.bg-green-900\/15 { + background-color: rgb(20 83 45 / 0.15); +} + +.bg-green-900\/20 { + background-color: rgb(20 83 45 / 0.2); +} + +.bg-green-900\/25 { + background-color: rgb(20 83 45 / 0.25); +} + +.bg-green-900\/30 { + background-color: rgb(20 83 45 / 0.3); +} + +.bg-green-900\/35 { + background-color: rgb(20 83 45 / 0.35); +} + +.bg-green-900\/40 { + background-color: rgb(20 83 45 / 0.4); +} + +.bg-green-900\/45 { + background-color: rgb(20 83 45 / 0.45); +} + +.bg-green-900\/5 { + background-color: rgb(20 83 45 / 0.05); +} + +.bg-green-900\/50 { + background-color: rgb(20 83 45 / 0.5); +} + +.bg-green-900\/55 { + background-color: rgb(20 83 45 / 0.55); +} + +.bg-green-900\/60 { + background-color: rgb(20 83 45 / 0.6); +} + +.bg-green-900\/65 { + background-color: rgb(20 83 45 / 0.65); +} + +.bg-green-900\/70 { + background-color: rgb(20 83 45 / 0.7); +} + +.bg-green-900\/75 { + background-color: rgb(20 83 45 / 0.75); +} + +.bg-green-900\/80 { + background-color: rgb(20 83 45 / 0.8); +} + +.bg-green-900\/85 { + background-color: rgb(20 83 45 / 0.85); +} + +.bg-green-900\/90 { + background-color: rgb(20 83 45 / 0.9); +} + +.bg-green-900\/95 { + background-color: rgb(20 83 45 / 0.95); +} + .bg-indigo-100 { --tw-bg-opacity: 1; background-color: rgb(224 231 255 / var(--tw-bg-opacity)); } +.bg-indigo-100\/0 { + background-color: rgb(224 231 255 / 0); +} + +.bg-indigo-100\/10 { + background-color: rgb(224 231 255 / 0.1); +} + +.bg-indigo-100\/100 { + background-color: rgb(224 231 255 / 1); +} + +.bg-indigo-100\/15 { + background-color: rgb(224 231 255 / 0.15); +} + +.bg-indigo-100\/20 { + background-color: rgb(224 231 255 / 0.2); +} + +.bg-indigo-100\/25 { + background-color: rgb(224 231 255 / 0.25); +} + +.bg-indigo-100\/30 { + background-color: rgb(224 231 255 / 0.3); +} + +.bg-indigo-100\/35 { + background-color: rgb(224 231 255 / 0.35); +} + +.bg-indigo-100\/40 { + background-color: rgb(224 231 255 / 0.4); +} + +.bg-indigo-100\/45 { + background-color: rgb(224 231 255 / 0.45); +} + +.bg-indigo-100\/5 { + background-color: rgb(224 231 255 / 0.05); +} + +.bg-indigo-100\/50 { + background-color: rgb(224 231 255 / 0.5); +} + +.bg-indigo-100\/55 { + background-color: rgb(224 231 255 / 0.55); +} + +.bg-indigo-100\/60 { + background-color: rgb(224 231 255 / 0.6); +} + +.bg-indigo-100\/65 { + background-color: rgb(224 231 255 / 0.65); +} + +.bg-indigo-100\/70 { + background-color: rgb(224 231 255 / 0.7); +} + +.bg-indigo-100\/75 { + background-color: rgb(224 231 255 / 0.75); +} + +.bg-indigo-100\/80 { + background-color: rgb(224 231 255 / 0.8); +} + +.bg-indigo-100\/85 { + background-color: rgb(224 231 255 / 0.85); +} + +.bg-indigo-100\/90 { + background-color: rgb(224 231 255 / 0.9); +} + +.bg-indigo-100\/95 { + background-color: rgb(224 231 255 / 0.95); +} + .bg-indigo-300 { --tw-bg-opacity: 1; background-color: rgb(165 180 252 / var(--tw-bg-opacity)); @@ -1651,21 +3127,891 @@ video { background-color: rgb(238 242 255 / var(--tw-bg-opacity)); } +.bg-indigo-50\/0 { + background-color: rgb(238 242 255 / 0); +} + +.bg-indigo-50\/10 { + background-color: rgb(238 242 255 / 0.1); +} + +.bg-indigo-50\/100 { + background-color: rgb(238 242 255 / 1); +} + +.bg-indigo-50\/15 { + background-color: rgb(238 242 255 / 0.15); +} + +.bg-indigo-50\/20 { + background-color: rgb(238 242 255 / 0.2); +} + +.bg-indigo-50\/25 { + background-color: rgb(238 242 255 / 0.25); +} + +.bg-indigo-50\/30 { + background-color: rgb(238 242 255 / 0.3); +} + +.bg-indigo-50\/35 { + background-color: rgb(238 242 255 / 0.35); +} + +.bg-indigo-50\/40 { + background-color: rgb(238 242 255 / 0.4); +} + +.bg-indigo-50\/45 { + background-color: rgb(238 242 255 / 0.45); +} + +.bg-indigo-50\/5 { + background-color: rgb(238 242 255 / 0.05); +} + +.bg-indigo-50\/50 { + background-color: rgb(238 242 255 / 0.5); +} + +.bg-indigo-50\/55 { + background-color: rgb(238 242 255 / 0.55); +} + +.bg-indigo-50\/60 { + background-color: rgb(238 242 255 / 0.6); +} + +.bg-indigo-50\/65 { + background-color: rgb(238 242 255 / 0.65); +} + +.bg-indigo-50\/70 { + background-color: rgb(238 242 255 / 0.7); +} + +.bg-indigo-50\/75 { + background-color: rgb(238 242 255 / 0.75); +} + +.bg-indigo-50\/80 { + background-color: rgb(238 242 255 / 0.8); +} + +.bg-indigo-50\/85 { + background-color: rgb(238 242 255 / 0.85); +} + +.bg-indigo-50\/90 { + background-color: rgb(238 242 255 / 0.9); +} + +.bg-indigo-50\/95 { + background-color: rgb(238 242 255 / 0.95); +} + +.bg-indigo-500 { + --tw-bg-opacity: 1; + background-color: rgb(99 102 241 / var(--tw-bg-opacity)); +} + +.bg-indigo-500\/0 { + background-color: rgb(99 102 241 / 0); +} + +.bg-indigo-500\/10 { + background-color: rgb(99 102 241 / 0.1); +} + +.bg-indigo-500\/100 { + background-color: rgb(99 102 241 / 1); +} + +.bg-indigo-500\/15 { + background-color: rgb(99 102 241 / 0.15); +} + +.bg-indigo-500\/20 { + background-color: rgb(99 102 241 / 0.2); +} + +.bg-indigo-500\/25 { + background-color: rgb(99 102 241 / 0.25); +} + +.bg-indigo-500\/30 { + background-color: rgb(99 102 241 / 0.3); +} + +.bg-indigo-500\/35 { + background-color: rgb(99 102 241 / 0.35); +} + +.bg-indigo-500\/40 { + background-color: rgb(99 102 241 / 0.4); +} + +.bg-indigo-500\/45 { + background-color: rgb(99 102 241 / 0.45); +} + +.bg-indigo-500\/5 { + background-color: rgb(99 102 241 / 0.05); +} + +.bg-indigo-500\/50 { + background-color: rgb(99 102 241 / 0.5); +} + +.bg-indigo-500\/55 { + background-color: rgb(99 102 241 / 0.55); +} + +.bg-indigo-500\/60 { + background-color: rgb(99 102 241 / 0.6); +} + +.bg-indigo-500\/65 { + background-color: rgb(99 102 241 / 0.65); +} + +.bg-indigo-500\/70 { + background-color: rgb(99 102 241 / 0.7); +} + +.bg-indigo-500\/75 { + background-color: rgb(99 102 241 / 0.75); +} + +.bg-indigo-500\/80 { + background-color: rgb(99 102 241 / 0.8); +} + +.bg-indigo-500\/85 { + background-color: rgb(99 102 241 / 0.85); +} + +.bg-indigo-500\/90 { + background-color: rgb(99 102 241 / 0.9); +} + +.bg-indigo-500\/95 { + background-color: rgb(99 102 241 / 0.95); +} + +.bg-indigo-800 { + --tw-bg-opacity: 1; + background-color: rgb(55 48 163 / var(--tw-bg-opacity)); +} + +.bg-indigo-800\/0 { + background-color: rgb(55 48 163 / 0); +} + +.bg-indigo-800\/10 { + background-color: rgb(55 48 163 / 0.1); +} + +.bg-indigo-800\/100 { + background-color: rgb(55 48 163 / 1); +} + +.bg-indigo-800\/15 { + background-color: rgb(55 48 163 / 0.15); +} + +.bg-indigo-800\/20 { + background-color: rgb(55 48 163 / 0.2); +} + +.bg-indigo-800\/25 { + background-color: rgb(55 48 163 / 0.25); +} + +.bg-indigo-800\/30 { + background-color: rgb(55 48 163 / 0.3); +} + +.bg-indigo-800\/35 { + background-color: rgb(55 48 163 / 0.35); +} + +.bg-indigo-800\/40 { + background-color: rgb(55 48 163 / 0.4); +} + +.bg-indigo-800\/45 { + background-color: rgb(55 48 163 / 0.45); +} + +.bg-indigo-800\/5 { + background-color: rgb(55 48 163 / 0.05); +} + +.bg-indigo-800\/50 { + background-color: rgb(55 48 163 / 0.5); +} + +.bg-indigo-800\/55 { + background-color: rgb(55 48 163 / 0.55); +} + +.bg-indigo-800\/60 { + background-color: rgb(55 48 163 / 0.6); +} + +.bg-indigo-800\/65 { + background-color: rgb(55 48 163 / 0.65); +} + +.bg-indigo-800\/70 { + background-color: rgb(55 48 163 / 0.7); +} + +.bg-indigo-800\/75 { + background-color: rgb(55 48 163 / 0.75); +} + +.bg-indigo-800\/80 { + background-color: rgb(55 48 163 / 0.8); +} + +.bg-indigo-800\/85 { + background-color: rgb(55 48 163 / 0.85); +} + +.bg-indigo-800\/90 { + background-color: rgb(55 48 163 / 0.9); +} + +.bg-indigo-800\/95 { + background-color: rgb(55 48 163 / 0.95); +} + +.bg-indigo-900 { + --tw-bg-opacity: 1; + background-color: rgb(49 46 129 / var(--tw-bg-opacity)); +} + +.bg-indigo-900\/0 { + background-color: rgb(49 46 129 / 0); +} + +.bg-indigo-900\/10 { + background-color: rgb(49 46 129 / 0.1); +} + +.bg-indigo-900\/100 { + background-color: rgb(49 46 129 / 1); +} + +.bg-indigo-900\/15 { + background-color: rgb(49 46 129 / 0.15); +} + +.bg-indigo-900\/20 { + background-color: rgb(49 46 129 / 0.2); +} + +.bg-indigo-900\/25 { + background-color: rgb(49 46 129 / 0.25); +} + +.bg-indigo-900\/30 { + background-color: rgb(49 46 129 / 0.3); +} + +.bg-indigo-900\/35 { + background-color: rgb(49 46 129 / 0.35); +} + +.bg-indigo-900\/40 { + background-color: rgb(49 46 129 / 0.4); +} + +.bg-indigo-900\/45 { + background-color: rgb(49 46 129 / 0.45); +} + +.bg-indigo-900\/5 { + background-color: rgb(49 46 129 / 0.05); +} + +.bg-indigo-900\/50 { + background-color: rgb(49 46 129 / 0.5); +} + +.bg-indigo-900\/55 { + background-color: rgb(49 46 129 / 0.55); +} + +.bg-indigo-900\/60 { + background-color: rgb(49 46 129 / 0.6); +} + +.bg-indigo-900\/65 { + background-color: rgb(49 46 129 / 0.65); +} + +.bg-indigo-900\/70 { + background-color: rgb(49 46 129 / 0.7); +} + +.bg-indigo-900\/75 { + background-color: rgb(49 46 129 / 0.75); +} + +.bg-indigo-900\/80 { + background-color: rgb(49 46 129 / 0.8); +} + +.bg-indigo-900\/85 { + background-color: rgb(49 46 129 / 0.85); +} + +.bg-indigo-900\/90 { + background-color: rgb(49 46 129 / 0.9); +} + +.bg-indigo-900\/95 { + background-color: rgb(49 46 129 / 0.95); +} + .bg-orange-100 { --tw-bg-opacity: 1; background-color: rgb(255 237 213 / var(--tw-bg-opacity)); } +.bg-orange-100\/0 { + background-color: rgb(255 237 213 / 0); +} + +.bg-orange-100\/10 { + background-color: rgb(255 237 213 / 0.1); +} + +.bg-orange-100\/100 { + background-color: rgb(255 237 213 / 1); +} + +.bg-orange-100\/15 { + background-color: rgb(255 237 213 / 0.15); +} + +.bg-orange-100\/20 { + background-color: rgb(255 237 213 / 0.2); +} + +.bg-orange-100\/25 { + background-color: rgb(255 237 213 / 0.25); +} + +.bg-orange-100\/30 { + background-color: rgb(255 237 213 / 0.3); +} + +.bg-orange-100\/35 { + background-color: rgb(255 237 213 / 0.35); +} + +.bg-orange-100\/40 { + background-color: rgb(255 237 213 / 0.4); +} + +.bg-orange-100\/45 { + background-color: rgb(255 237 213 / 0.45); +} + +.bg-orange-100\/5 { + background-color: rgb(255 237 213 / 0.05); +} + +.bg-orange-100\/50 { + background-color: rgb(255 237 213 / 0.5); +} + +.bg-orange-100\/55 { + background-color: rgb(255 237 213 / 0.55); +} + +.bg-orange-100\/60 { + background-color: rgb(255 237 213 / 0.6); +} + +.bg-orange-100\/65 { + background-color: rgb(255 237 213 / 0.65); +} + +.bg-orange-100\/70 { + background-color: rgb(255 237 213 / 0.7); +} + +.bg-orange-100\/75 { + background-color: rgb(255 237 213 / 0.75); +} + +.bg-orange-100\/80 { + background-color: rgb(255 237 213 / 0.8); +} + +.bg-orange-100\/85 { + background-color: rgb(255 237 213 / 0.85); +} + +.bg-orange-100\/90 { + background-color: rgb(255 237 213 / 0.9); +} + +.bg-orange-100\/95 { + background-color: rgb(255 237 213 / 0.95); +} + +.bg-orange-50 { + --tw-bg-opacity: 1; + background-color: rgb(255 247 237 / var(--tw-bg-opacity)); +} + +.bg-orange-50\/0 { + background-color: rgb(255 247 237 / 0); +} + +.bg-orange-50\/10 { + background-color: rgb(255 247 237 / 0.1); +} + +.bg-orange-50\/100 { + background-color: rgb(255 247 237 / 1); +} + +.bg-orange-50\/15 { + background-color: rgb(255 247 237 / 0.15); +} + +.bg-orange-50\/20 { + background-color: rgb(255 247 237 / 0.2); +} + +.bg-orange-50\/25 { + background-color: rgb(255 247 237 / 0.25); +} + +.bg-orange-50\/30 { + background-color: rgb(255 247 237 / 0.3); +} + +.bg-orange-50\/35 { + background-color: rgb(255 247 237 / 0.35); +} + +.bg-orange-50\/40 { + background-color: rgb(255 247 237 / 0.4); +} + +.bg-orange-50\/45 { + background-color: rgb(255 247 237 / 0.45); +} + +.bg-orange-50\/5 { + background-color: rgb(255 247 237 / 0.05); +} + +.bg-orange-50\/50 { + background-color: rgb(255 247 237 / 0.5); +} + +.bg-orange-50\/55 { + background-color: rgb(255 247 237 / 0.55); +} + +.bg-orange-50\/60 { + background-color: rgb(255 247 237 / 0.6); +} + +.bg-orange-50\/65 { + background-color: rgb(255 247 237 / 0.65); +} + +.bg-orange-50\/70 { + background-color: rgb(255 247 237 / 0.7); +} + +.bg-orange-50\/75 { + background-color: rgb(255 247 237 / 0.75); +} + +.bg-orange-50\/80 { + background-color: rgb(255 247 237 / 0.8); +} + +.bg-orange-50\/85 { + background-color: rgb(255 247 237 / 0.85); +} + +.bg-orange-50\/90 { + background-color: rgb(255 247 237 / 0.9); +} + +.bg-orange-50\/95 { + background-color: rgb(255 247 237 / 0.95); +} + .bg-orange-500 { --tw-bg-opacity: 1; background-color: rgb(249 115 22 / var(--tw-bg-opacity)); } +.bg-orange-500\/0 { + background-color: rgb(249 115 22 / 0); +} + +.bg-orange-500\/10 { + background-color: rgb(249 115 22 / 0.1); +} + +.bg-orange-500\/100 { + background-color: rgb(249 115 22 / 1); +} + +.bg-orange-500\/15 { + background-color: rgb(249 115 22 / 0.15); +} + +.bg-orange-500\/20 { + background-color: rgb(249 115 22 / 0.2); +} + +.bg-orange-500\/25 { + background-color: rgb(249 115 22 / 0.25); +} + +.bg-orange-500\/30 { + background-color: rgb(249 115 22 / 0.3); +} + +.bg-orange-500\/35 { + background-color: rgb(249 115 22 / 0.35); +} + +.bg-orange-500\/40 { + background-color: rgb(249 115 22 / 0.4); +} + +.bg-orange-500\/45 { + background-color: rgb(249 115 22 / 0.45); +} + +.bg-orange-500\/5 { + background-color: rgb(249 115 22 / 0.05); +} + +.bg-orange-500\/50 { + background-color: rgb(249 115 22 / 0.5); +} + +.bg-orange-500\/55 { + background-color: rgb(249 115 22 / 0.55); +} + +.bg-orange-500\/60 { + background-color: rgb(249 115 22 / 0.6); +} + +.bg-orange-500\/65 { + background-color: rgb(249 115 22 / 0.65); +} + +.bg-orange-500\/70 { + background-color: rgb(249 115 22 / 0.7); +} + +.bg-orange-500\/75 { + background-color: rgb(249 115 22 / 0.75); +} + +.bg-orange-500\/80 { + background-color: rgb(249 115 22 / 0.8); +} + +.bg-orange-500\/85 { + background-color: rgb(249 115 22 / 0.85); +} + +.bg-orange-500\/90 { + background-color: rgb(249 115 22 / 0.9); +} + +.bg-orange-500\/95 { + background-color: rgb(249 115 22 / 0.95); +} + +.bg-orange-800 { + --tw-bg-opacity: 1; + background-color: rgb(154 52 18 / var(--tw-bg-opacity)); +} + +.bg-orange-800\/0 { + background-color: rgb(154 52 18 / 0); +} + +.bg-orange-800\/10 { + background-color: rgb(154 52 18 / 0.1); +} + +.bg-orange-800\/100 { + background-color: rgb(154 52 18 / 1); +} + +.bg-orange-800\/15 { + background-color: rgb(154 52 18 / 0.15); +} + +.bg-orange-800\/20 { + background-color: rgb(154 52 18 / 0.2); +} + +.bg-orange-800\/25 { + background-color: rgb(154 52 18 / 0.25); +} + +.bg-orange-800\/30 { + background-color: rgb(154 52 18 / 0.3); +} + +.bg-orange-800\/35 { + background-color: rgb(154 52 18 / 0.35); +} + +.bg-orange-800\/40 { + background-color: rgb(154 52 18 / 0.4); +} + +.bg-orange-800\/45 { + background-color: rgb(154 52 18 / 0.45); +} + +.bg-orange-800\/5 { + background-color: rgb(154 52 18 / 0.05); +} + +.bg-orange-800\/50 { + background-color: rgb(154 52 18 / 0.5); +} + +.bg-orange-800\/55 { + background-color: rgb(154 52 18 / 0.55); +} + +.bg-orange-800\/60 { + background-color: rgb(154 52 18 / 0.6); +} + +.bg-orange-800\/65 { + background-color: rgb(154 52 18 / 0.65); +} + +.bg-orange-800\/70 { + background-color: rgb(154 52 18 / 0.7); +} + +.bg-orange-800\/75 { + background-color: rgb(154 52 18 / 0.75); +} + +.bg-orange-800\/80 { + background-color: rgb(154 52 18 / 0.8); +} + +.bg-orange-800\/85 { + background-color: rgb(154 52 18 / 0.85); +} + +.bg-orange-800\/90 { + background-color: rgb(154 52 18 / 0.9); +} + +.bg-orange-800\/95 { + background-color: rgb(154 52 18 / 0.95); +} + +.bg-orange-900 { + --tw-bg-opacity: 1; + background-color: rgb(124 45 18 / var(--tw-bg-opacity)); +} + +.bg-orange-900\/0 { + background-color: rgb(124 45 18 / 0); +} + +.bg-orange-900\/10 { + background-color: rgb(124 45 18 / 0.1); +} + +.bg-orange-900\/100 { + background-color: rgb(124 45 18 / 1); +} + +.bg-orange-900\/15 { + background-color: rgb(124 45 18 / 0.15); +} + +.bg-orange-900\/20 { + background-color: rgb(124 45 18 / 0.2); +} + +.bg-orange-900\/25 { + background-color: rgb(124 45 18 / 0.25); +} + +.bg-orange-900\/30 { + background-color: rgb(124 45 18 / 0.3); +} + +.bg-orange-900\/35 { + background-color: rgb(124 45 18 / 0.35); +} + +.bg-orange-900\/40 { + background-color: rgb(124 45 18 / 0.4); +} + +.bg-orange-900\/45 { + background-color: rgb(124 45 18 / 0.45); +} + +.bg-orange-900\/5 { + background-color: rgb(124 45 18 / 0.05); +} + +.bg-orange-900\/50 { + background-color: rgb(124 45 18 / 0.5); +} + +.bg-orange-900\/55 { + background-color: rgb(124 45 18 / 0.55); +} + +.bg-orange-900\/60 { + background-color: rgb(124 45 18 / 0.6); +} + +.bg-orange-900\/65 { + background-color: rgb(124 45 18 / 0.65); +} + +.bg-orange-900\/70 { + background-color: rgb(124 45 18 / 0.7); +} + +.bg-orange-900\/75 { + background-color: rgb(124 45 18 / 0.75); +} + +.bg-orange-900\/80 { + background-color: rgb(124 45 18 / 0.8); +} + +.bg-orange-900\/85 { + background-color: rgb(124 45 18 / 0.85); +} + +.bg-orange-900\/90 { + background-color: rgb(124 45 18 / 0.9); +} + +.bg-orange-900\/95 { + background-color: rgb(124 45 18 / 0.95); +} + .bg-pink-100 { --tw-bg-opacity: 1; background-color: rgb(252 231 243 / var(--tw-bg-opacity)); } +.bg-pink-100\/0 { + background-color: rgb(252 231 243 / 0); +} + +.bg-pink-100\/10 { + background-color: rgb(252 231 243 / 0.1); +} + +.bg-pink-100\/100 { + background-color: rgb(252 231 243 / 1); +} + +.bg-pink-100\/15 { + background-color: rgb(252 231 243 / 0.15); +} + +.bg-pink-100\/20 { + background-color: rgb(252 231 243 / 0.2); +} + +.bg-pink-100\/25 { + background-color: rgb(252 231 243 / 0.25); +} + +.bg-pink-100\/30 { + background-color: rgb(252 231 243 / 0.3); +} + +.bg-pink-100\/35 { + background-color: rgb(252 231 243 / 0.35); +} + +.bg-pink-100\/40 { + background-color: rgb(252 231 243 / 0.4); +} + +.bg-pink-100\/45 { + background-color: rgb(252 231 243 / 0.45); +} + +.bg-pink-100\/5 { + background-color: rgb(252 231 243 / 0.05); +} + +.bg-pink-100\/50 { + background-color: rgb(252 231 243 / 0.5); +} + +.bg-pink-100\/55 { + background-color: rgb(252 231 243 / 0.55); +} + +.bg-pink-100\/60 { + background-color: rgb(252 231 243 / 0.6); +} + +.bg-pink-100\/65 { + background-color: rgb(252 231 243 / 0.65); +} + +.bg-pink-100\/70 { + background-color: rgb(252 231 243 / 0.7); +} + +.bg-pink-100\/75 { + background-color: rgb(252 231 243 / 0.75); +} + +.bg-pink-100\/80 { + background-color: rgb(252 231 243 / 0.8); +} + +.bg-pink-100\/85 { + background-color: rgb(252 231 243 / 0.85); +} + +.bg-pink-100\/90 { + background-color: rgb(252 231 243 / 0.9); +} + +.bg-pink-100\/95 { + background-color: rgb(252 231 243 / 0.95); +} + .bg-pink-200 { --tw-bg-opacity: 1; background-color: rgb(251 207 232 / var(--tw-bg-opacity)); @@ -1676,11 +4022,807 @@ video { background-color: rgb(253 242 248 / var(--tw-bg-opacity)); } +.bg-pink-50\/0 { + background-color: rgb(253 242 248 / 0); +} + +.bg-pink-50\/10 { + background-color: rgb(253 242 248 / 0.1); +} + +.bg-pink-50\/100 { + background-color: rgb(253 242 248 / 1); +} + +.bg-pink-50\/15 { + background-color: rgb(253 242 248 / 0.15); +} + +.bg-pink-50\/20 { + background-color: rgb(253 242 248 / 0.2); +} + +.bg-pink-50\/25 { + background-color: rgb(253 242 248 / 0.25); +} + +.bg-pink-50\/30 { + background-color: rgb(253 242 248 / 0.3); +} + +.bg-pink-50\/35 { + background-color: rgb(253 242 248 / 0.35); +} + +.bg-pink-50\/40 { + background-color: rgb(253 242 248 / 0.4); +} + +.bg-pink-50\/45 { + background-color: rgb(253 242 248 / 0.45); +} + +.bg-pink-50\/5 { + background-color: rgb(253 242 248 / 0.05); +} + +.bg-pink-50\/50 { + background-color: rgb(253 242 248 / 0.5); +} + +.bg-pink-50\/55 { + background-color: rgb(253 242 248 / 0.55); +} + +.bg-pink-50\/60 { + background-color: rgb(253 242 248 / 0.6); +} + +.bg-pink-50\/65 { + background-color: rgb(253 242 248 / 0.65); +} + +.bg-pink-50\/70 { + background-color: rgb(253 242 248 / 0.7); +} + +.bg-pink-50\/75 { + background-color: rgb(253 242 248 / 0.75); +} + +.bg-pink-50\/80 { + background-color: rgb(253 242 248 / 0.8); +} + +.bg-pink-50\/85 { + background-color: rgb(253 242 248 / 0.85); +} + +.bg-pink-50\/90 { + background-color: rgb(253 242 248 / 0.9); +} + +.bg-pink-50\/95 { + background-color: rgb(253 242 248 / 0.95); +} + +.bg-pink-500 { + --tw-bg-opacity: 1; + background-color: rgb(236 72 153 / var(--tw-bg-opacity)); +} + +.bg-pink-500\/0 { + background-color: rgb(236 72 153 / 0); +} + +.bg-pink-500\/10 { + background-color: rgb(236 72 153 / 0.1); +} + +.bg-pink-500\/100 { + background-color: rgb(236 72 153 / 1); +} + +.bg-pink-500\/15 { + background-color: rgb(236 72 153 / 0.15); +} + +.bg-pink-500\/20 { + background-color: rgb(236 72 153 / 0.2); +} + +.bg-pink-500\/25 { + background-color: rgb(236 72 153 / 0.25); +} + +.bg-pink-500\/30 { + background-color: rgb(236 72 153 / 0.3); +} + +.bg-pink-500\/35 { + background-color: rgb(236 72 153 / 0.35); +} + +.bg-pink-500\/40 { + background-color: rgb(236 72 153 / 0.4); +} + +.bg-pink-500\/45 { + background-color: rgb(236 72 153 / 0.45); +} + +.bg-pink-500\/5 { + background-color: rgb(236 72 153 / 0.05); +} + +.bg-pink-500\/50 { + background-color: rgb(236 72 153 / 0.5); +} + +.bg-pink-500\/55 { + background-color: rgb(236 72 153 / 0.55); +} + +.bg-pink-500\/60 { + background-color: rgb(236 72 153 / 0.6); +} + +.bg-pink-500\/65 { + background-color: rgb(236 72 153 / 0.65); +} + +.bg-pink-500\/70 { + background-color: rgb(236 72 153 / 0.7); +} + +.bg-pink-500\/75 { + background-color: rgb(236 72 153 / 0.75); +} + +.bg-pink-500\/80 { + background-color: rgb(236 72 153 / 0.8); +} + +.bg-pink-500\/85 { + background-color: rgb(236 72 153 / 0.85); +} + +.bg-pink-500\/90 { + background-color: rgb(236 72 153 / 0.9); +} + +.bg-pink-500\/95 { + background-color: rgb(236 72 153 / 0.95); +} + +.bg-pink-600 { + --tw-bg-opacity: 1; + background-color: rgb(219 39 119 / var(--tw-bg-opacity)); +} + .bg-pink-800 { --tw-bg-opacity: 1; background-color: rgb(157 23 77 / var(--tw-bg-opacity)); } +.bg-pink-800\/0 { + background-color: rgb(157 23 77 / 0); +} + +.bg-pink-800\/10 { + background-color: rgb(157 23 77 / 0.1); +} + +.bg-pink-800\/100 { + background-color: rgb(157 23 77 / 1); +} + +.bg-pink-800\/15 { + background-color: rgb(157 23 77 / 0.15); +} + +.bg-pink-800\/20 { + background-color: rgb(157 23 77 / 0.2); +} + +.bg-pink-800\/25 { + background-color: rgb(157 23 77 / 0.25); +} + +.bg-pink-800\/30 { + background-color: rgb(157 23 77 / 0.3); +} + +.bg-pink-800\/35 { + background-color: rgb(157 23 77 / 0.35); +} + +.bg-pink-800\/40 { + background-color: rgb(157 23 77 / 0.4); +} + +.bg-pink-800\/45 { + background-color: rgb(157 23 77 / 0.45); +} + +.bg-pink-800\/5 { + background-color: rgb(157 23 77 / 0.05); +} + +.bg-pink-800\/50 { + background-color: rgb(157 23 77 / 0.5); +} + +.bg-pink-800\/55 { + background-color: rgb(157 23 77 / 0.55); +} + +.bg-pink-800\/60 { + background-color: rgb(157 23 77 / 0.6); +} + +.bg-pink-800\/65 { + background-color: rgb(157 23 77 / 0.65); +} + +.bg-pink-800\/70 { + background-color: rgb(157 23 77 / 0.7); +} + +.bg-pink-800\/75 { + background-color: rgb(157 23 77 / 0.75); +} + +.bg-pink-800\/80 { + background-color: rgb(157 23 77 / 0.8); +} + +.bg-pink-800\/85 { + background-color: rgb(157 23 77 / 0.85); +} + +.bg-pink-800\/90 { + background-color: rgb(157 23 77 / 0.9); +} + +.bg-pink-800\/95 { + background-color: rgb(157 23 77 / 0.95); +} + +.bg-pink-900 { + --tw-bg-opacity: 1; + background-color: rgb(131 24 67 / var(--tw-bg-opacity)); +} + +.bg-pink-900\/0 { + background-color: rgb(131 24 67 / 0); +} + +.bg-pink-900\/10 { + background-color: rgb(131 24 67 / 0.1); +} + +.bg-pink-900\/100 { + background-color: rgb(131 24 67 / 1); +} + +.bg-pink-900\/15 { + background-color: rgb(131 24 67 / 0.15); +} + +.bg-pink-900\/20 { + background-color: rgb(131 24 67 / 0.2); +} + +.bg-pink-900\/25 { + background-color: rgb(131 24 67 / 0.25); +} + +.bg-pink-900\/30 { + background-color: rgb(131 24 67 / 0.3); +} + +.bg-pink-900\/35 { + background-color: rgb(131 24 67 / 0.35); +} + +.bg-pink-900\/40 { + background-color: rgb(131 24 67 / 0.4); +} + +.bg-pink-900\/45 { + background-color: rgb(131 24 67 / 0.45); +} + +.bg-pink-900\/5 { + background-color: rgb(131 24 67 / 0.05); +} + +.bg-pink-900\/50 { + background-color: rgb(131 24 67 / 0.5); +} + +.bg-pink-900\/55 { + background-color: rgb(131 24 67 / 0.55); +} + +.bg-pink-900\/60 { + background-color: rgb(131 24 67 / 0.6); +} + +.bg-pink-900\/65 { + background-color: rgb(131 24 67 / 0.65); +} + +.bg-pink-900\/70 { + background-color: rgb(131 24 67 / 0.7); +} + +.bg-pink-900\/75 { + background-color: rgb(131 24 67 / 0.75); +} + +.bg-pink-900\/80 { + background-color: rgb(131 24 67 / 0.8); +} + +.bg-pink-900\/85 { + background-color: rgb(131 24 67 / 0.85); +} + +.bg-pink-900\/90 { + background-color: rgb(131 24 67 / 0.9); +} + +.bg-pink-900\/95 { + background-color: rgb(131 24 67 / 0.95); +} + +.bg-purple-100 { + --tw-bg-opacity: 1; + background-color: rgb(243 232 255 / var(--tw-bg-opacity)); +} + +.bg-purple-100\/0 { + background-color: rgb(243 232 255 / 0); +} + +.bg-purple-100\/10 { + background-color: rgb(243 232 255 / 0.1); +} + +.bg-purple-100\/100 { + background-color: rgb(243 232 255 / 1); +} + +.bg-purple-100\/15 { + background-color: rgb(243 232 255 / 0.15); +} + +.bg-purple-100\/20 { + background-color: rgb(243 232 255 / 0.2); +} + +.bg-purple-100\/25 { + background-color: rgb(243 232 255 / 0.25); +} + +.bg-purple-100\/30 { + background-color: rgb(243 232 255 / 0.3); +} + +.bg-purple-100\/35 { + background-color: rgb(243 232 255 / 0.35); +} + +.bg-purple-100\/40 { + background-color: rgb(243 232 255 / 0.4); +} + +.bg-purple-100\/45 { + background-color: rgb(243 232 255 / 0.45); +} + +.bg-purple-100\/5 { + background-color: rgb(243 232 255 / 0.05); +} + +.bg-purple-100\/50 { + background-color: rgb(243 232 255 / 0.5); +} + +.bg-purple-100\/55 { + background-color: rgb(243 232 255 / 0.55); +} + +.bg-purple-100\/60 { + background-color: rgb(243 232 255 / 0.6); +} + +.bg-purple-100\/65 { + background-color: rgb(243 232 255 / 0.65); +} + +.bg-purple-100\/70 { + background-color: rgb(243 232 255 / 0.7); +} + +.bg-purple-100\/75 { + background-color: rgb(243 232 255 / 0.75); +} + +.bg-purple-100\/80 { + background-color: rgb(243 232 255 / 0.8); +} + +.bg-purple-100\/85 { + background-color: rgb(243 232 255 / 0.85); +} + +.bg-purple-100\/90 { + background-color: rgb(243 232 255 / 0.9); +} + +.bg-purple-100\/95 { + background-color: rgb(243 232 255 / 0.95); +} + +.bg-purple-50 { + --tw-bg-opacity: 1; + background-color: rgb(250 245 255 / var(--tw-bg-opacity)); +} + +.bg-purple-50\/0 { + background-color: rgb(250 245 255 / 0); +} + +.bg-purple-50\/10 { + background-color: rgb(250 245 255 / 0.1); +} + +.bg-purple-50\/100 { + background-color: rgb(250 245 255 / 1); +} + +.bg-purple-50\/15 { + background-color: rgb(250 245 255 / 0.15); +} + +.bg-purple-50\/20 { + background-color: rgb(250 245 255 / 0.2); +} + +.bg-purple-50\/25 { + background-color: rgb(250 245 255 / 0.25); +} + +.bg-purple-50\/30 { + background-color: rgb(250 245 255 / 0.3); +} + +.bg-purple-50\/35 { + background-color: rgb(250 245 255 / 0.35); +} + +.bg-purple-50\/40 { + background-color: rgb(250 245 255 / 0.4); +} + +.bg-purple-50\/45 { + background-color: rgb(250 245 255 / 0.45); +} + +.bg-purple-50\/5 { + background-color: rgb(250 245 255 / 0.05); +} + +.bg-purple-50\/50 { + background-color: rgb(250 245 255 / 0.5); +} + +.bg-purple-50\/55 { + background-color: rgb(250 245 255 / 0.55); +} + +.bg-purple-50\/60 { + background-color: rgb(250 245 255 / 0.6); +} + +.bg-purple-50\/65 { + background-color: rgb(250 245 255 / 0.65); +} + +.bg-purple-50\/70 { + background-color: rgb(250 245 255 / 0.7); +} + +.bg-purple-50\/75 { + background-color: rgb(250 245 255 / 0.75); +} + +.bg-purple-50\/80 { + background-color: rgb(250 245 255 / 0.8); +} + +.bg-purple-50\/85 { + background-color: rgb(250 245 255 / 0.85); +} + +.bg-purple-50\/90 { + background-color: rgb(250 245 255 / 0.9); +} + +.bg-purple-50\/95 { + background-color: rgb(250 245 255 / 0.95); +} + +.bg-purple-500 { + --tw-bg-opacity: 1; + background-color: rgb(168 85 247 / var(--tw-bg-opacity)); +} + +.bg-purple-500\/0 { + background-color: rgb(168 85 247 / 0); +} + +.bg-purple-500\/10 { + background-color: rgb(168 85 247 / 0.1); +} + +.bg-purple-500\/100 { + background-color: rgb(168 85 247 / 1); +} + +.bg-purple-500\/15 { + background-color: rgb(168 85 247 / 0.15); +} + +.bg-purple-500\/20 { + background-color: rgb(168 85 247 / 0.2); +} + +.bg-purple-500\/25 { + background-color: rgb(168 85 247 / 0.25); +} + +.bg-purple-500\/30 { + background-color: rgb(168 85 247 / 0.3); +} + +.bg-purple-500\/35 { + background-color: rgb(168 85 247 / 0.35); +} + +.bg-purple-500\/40 { + background-color: rgb(168 85 247 / 0.4); +} + +.bg-purple-500\/45 { + background-color: rgb(168 85 247 / 0.45); +} + +.bg-purple-500\/5 { + background-color: rgb(168 85 247 / 0.05); +} + +.bg-purple-500\/50 { + background-color: rgb(168 85 247 / 0.5); +} + +.bg-purple-500\/55 { + background-color: rgb(168 85 247 / 0.55); +} + +.bg-purple-500\/60 { + background-color: rgb(168 85 247 / 0.6); +} + +.bg-purple-500\/65 { + background-color: rgb(168 85 247 / 0.65); +} + +.bg-purple-500\/70 { + background-color: rgb(168 85 247 / 0.7); +} + +.bg-purple-500\/75 { + background-color: rgb(168 85 247 / 0.75); +} + +.bg-purple-500\/80 { + background-color: rgb(168 85 247 / 0.8); +} + +.bg-purple-500\/85 { + background-color: rgb(168 85 247 / 0.85); +} + +.bg-purple-500\/90 { + background-color: rgb(168 85 247 / 0.9); +} + +.bg-purple-500\/95 { + background-color: rgb(168 85 247 / 0.95); +} + +.bg-purple-800 { + --tw-bg-opacity: 1; + background-color: rgb(107 33 168 / var(--tw-bg-opacity)); +} + +.bg-purple-800\/0 { + background-color: rgb(107 33 168 / 0); +} + +.bg-purple-800\/10 { + background-color: rgb(107 33 168 / 0.1); +} + +.bg-purple-800\/100 { + background-color: rgb(107 33 168 / 1); +} + +.bg-purple-800\/15 { + background-color: rgb(107 33 168 / 0.15); +} + +.bg-purple-800\/20 { + background-color: rgb(107 33 168 / 0.2); +} + +.bg-purple-800\/25 { + background-color: rgb(107 33 168 / 0.25); +} + +.bg-purple-800\/30 { + background-color: rgb(107 33 168 / 0.3); +} + +.bg-purple-800\/35 { + background-color: rgb(107 33 168 / 0.35); +} + +.bg-purple-800\/40 { + background-color: rgb(107 33 168 / 0.4); +} + +.bg-purple-800\/45 { + background-color: rgb(107 33 168 / 0.45); +} + +.bg-purple-800\/5 { + background-color: rgb(107 33 168 / 0.05); +} + +.bg-purple-800\/50 { + background-color: rgb(107 33 168 / 0.5); +} + +.bg-purple-800\/55 { + background-color: rgb(107 33 168 / 0.55); +} + +.bg-purple-800\/60 { + background-color: rgb(107 33 168 / 0.6); +} + +.bg-purple-800\/65 { + background-color: rgb(107 33 168 / 0.65); +} + +.bg-purple-800\/70 { + background-color: rgb(107 33 168 / 0.7); +} + +.bg-purple-800\/75 { + background-color: rgb(107 33 168 / 0.75); +} + +.bg-purple-800\/80 { + background-color: rgb(107 33 168 / 0.8); +} + +.bg-purple-800\/85 { + background-color: rgb(107 33 168 / 0.85); +} + +.bg-purple-800\/90 { + background-color: rgb(107 33 168 / 0.9); +} + +.bg-purple-800\/95 { + background-color: rgb(107 33 168 / 0.95); +} + +.bg-purple-900 { + --tw-bg-opacity: 1; + background-color: rgb(88 28 135 / var(--tw-bg-opacity)); +} + +.bg-purple-900\/0 { + background-color: rgb(88 28 135 / 0); +} + +.bg-purple-900\/10 { + background-color: rgb(88 28 135 / 0.1); +} + +.bg-purple-900\/100 { + background-color: rgb(88 28 135 / 1); +} + +.bg-purple-900\/15 { + background-color: rgb(88 28 135 / 0.15); +} + +.bg-purple-900\/20 { + background-color: rgb(88 28 135 / 0.2); +} + +.bg-purple-900\/25 { + background-color: rgb(88 28 135 / 0.25); +} + +.bg-purple-900\/30 { + background-color: rgb(88 28 135 / 0.3); +} + +.bg-purple-900\/35 { + background-color: rgb(88 28 135 / 0.35); +} + +.bg-purple-900\/40 { + background-color: rgb(88 28 135 / 0.4); +} + +.bg-purple-900\/45 { + background-color: rgb(88 28 135 / 0.45); +} + +.bg-purple-900\/5 { + background-color: rgb(88 28 135 / 0.05); +} + +.bg-purple-900\/50 { + background-color: rgb(88 28 135 / 0.5); +} + +.bg-purple-900\/55 { + background-color: rgb(88 28 135 / 0.55); +} + +.bg-purple-900\/60 { + background-color: rgb(88 28 135 / 0.6); +} + +.bg-purple-900\/65 { + background-color: rgb(88 28 135 / 0.65); +} + +.bg-purple-900\/70 { + background-color: rgb(88 28 135 / 0.7); +} + +.bg-purple-900\/75 { + background-color: rgb(88 28 135 / 0.75); +} + +.bg-purple-900\/80 { + background-color: rgb(88 28 135 / 0.8); +} + +.bg-purple-900\/85 { + background-color: rgb(88 28 135 / 0.85); +} + +.bg-purple-900\/90 { + background-color: rgb(88 28 135 / 0.9); +} + +.bg-purple-900\/95 { + background-color: rgb(88 28 135 / 0.95); +} + .bg-red-400 { --tw-bg-opacity: 1; background-color: rgb(248 113 113 / var(--tw-bg-opacity)); @@ -1696,11 +4838,451 @@ video { background-color: rgb(255 255 255 / var(--tw-bg-opacity)); } +.bg-yellow-100 { + --tw-bg-opacity: 1; + background-color: rgb(254 249 195 / var(--tw-bg-opacity)); +} + +.bg-yellow-100\/0 { + background-color: rgb(254 249 195 / 0); +} + +.bg-yellow-100\/10 { + background-color: rgb(254 249 195 / 0.1); +} + +.bg-yellow-100\/100 { + background-color: rgb(254 249 195 / 1); +} + +.bg-yellow-100\/15 { + background-color: rgb(254 249 195 / 0.15); +} + +.bg-yellow-100\/20 { + background-color: rgb(254 249 195 / 0.2); +} + +.bg-yellow-100\/25 { + background-color: rgb(254 249 195 / 0.25); +} + +.bg-yellow-100\/30 { + background-color: rgb(254 249 195 / 0.3); +} + +.bg-yellow-100\/35 { + background-color: rgb(254 249 195 / 0.35); +} + +.bg-yellow-100\/40 { + background-color: rgb(254 249 195 / 0.4); +} + +.bg-yellow-100\/45 { + background-color: rgb(254 249 195 / 0.45); +} + +.bg-yellow-100\/5 { + background-color: rgb(254 249 195 / 0.05); +} + +.bg-yellow-100\/50 { + background-color: rgb(254 249 195 / 0.5); +} + +.bg-yellow-100\/55 { + background-color: rgb(254 249 195 / 0.55); +} + +.bg-yellow-100\/60 { + background-color: rgb(254 249 195 / 0.6); +} + +.bg-yellow-100\/65 { + background-color: rgb(254 249 195 / 0.65); +} + +.bg-yellow-100\/70 { + background-color: rgb(254 249 195 / 0.7); +} + +.bg-yellow-100\/75 { + background-color: rgb(254 249 195 / 0.75); +} + +.bg-yellow-100\/80 { + background-color: rgb(254 249 195 / 0.8); +} + +.bg-yellow-100\/85 { + background-color: rgb(254 249 195 / 0.85); +} + +.bg-yellow-100\/90 { + background-color: rgb(254 249 195 / 0.9); +} + +.bg-yellow-100\/95 { + background-color: rgb(254 249 195 / 0.95); +} + .bg-yellow-50 { --tw-bg-opacity: 1; background-color: rgb(254 252 232 / var(--tw-bg-opacity)); } +.bg-yellow-50\/0 { + background-color: rgb(254 252 232 / 0); +} + +.bg-yellow-50\/10 { + background-color: rgb(254 252 232 / 0.1); +} + +.bg-yellow-50\/100 { + background-color: rgb(254 252 232 / 1); +} + +.bg-yellow-50\/15 { + background-color: rgb(254 252 232 / 0.15); +} + +.bg-yellow-50\/20 { + background-color: rgb(254 252 232 / 0.2); +} + +.bg-yellow-50\/25 { + background-color: rgb(254 252 232 / 0.25); +} + +.bg-yellow-50\/30 { + background-color: rgb(254 252 232 / 0.3); +} + +.bg-yellow-50\/35 { + background-color: rgb(254 252 232 / 0.35); +} + +.bg-yellow-50\/40 { + background-color: rgb(254 252 232 / 0.4); +} + +.bg-yellow-50\/45 { + background-color: rgb(254 252 232 / 0.45); +} + +.bg-yellow-50\/5 { + background-color: rgb(254 252 232 / 0.05); +} + +.bg-yellow-50\/50 { + background-color: rgb(254 252 232 / 0.5); +} + +.bg-yellow-50\/55 { + background-color: rgb(254 252 232 / 0.55); +} + +.bg-yellow-50\/60 { + background-color: rgb(254 252 232 / 0.6); +} + +.bg-yellow-50\/65 { + background-color: rgb(254 252 232 / 0.65); +} + +.bg-yellow-50\/70 { + background-color: rgb(254 252 232 / 0.7); +} + +.bg-yellow-50\/75 { + background-color: rgb(254 252 232 / 0.75); +} + +.bg-yellow-50\/80 { + background-color: rgb(254 252 232 / 0.8); +} + +.bg-yellow-50\/85 { + background-color: rgb(254 252 232 / 0.85); +} + +.bg-yellow-50\/90 { + background-color: rgb(254 252 232 / 0.9); +} + +.bg-yellow-50\/95 { + background-color: rgb(254 252 232 / 0.95); +} + +.bg-yellow-500 { + --tw-bg-opacity: 1; + background-color: rgb(234 179 8 / var(--tw-bg-opacity)); +} + +.bg-yellow-500\/0 { + background-color: rgb(234 179 8 / 0); +} + +.bg-yellow-500\/10 { + background-color: rgb(234 179 8 / 0.1); +} + +.bg-yellow-500\/100 { + background-color: rgb(234 179 8 / 1); +} + +.bg-yellow-500\/15 { + background-color: rgb(234 179 8 / 0.15); +} + +.bg-yellow-500\/20 { + background-color: rgb(234 179 8 / 0.2); +} + +.bg-yellow-500\/25 { + background-color: rgb(234 179 8 / 0.25); +} + +.bg-yellow-500\/30 { + background-color: rgb(234 179 8 / 0.3); +} + +.bg-yellow-500\/35 { + background-color: rgb(234 179 8 / 0.35); +} + +.bg-yellow-500\/40 { + background-color: rgb(234 179 8 / 0.4); +} + +.bg-yellow-500\/45 { + background-color: rgb(234 179 8 / 0.45); +} + +.bg-yellow-500\/5 { + background-color: rgb(234 179 8 / 0.05); +} + +.bg-yellow-500\/50 { + background-color: rgb(234 179 8 / 0.5); +} + +.bg-yellow-500\/55 { + background-color: rgb(234 179 8 / 0.55); +} + +.bg-yellow-500\/60 { + background-color: rgb(234 179 8 / 0.6); +} + +.bg-yellow-500\/65 { + background-color: rgb(234 179 8 / 0.65); +} + +.bg-yellow-500\/70 { + background-color: rgb(234 179 8 / 0.7); +} + +.bg-yellow-500\/75 { + background-color: rgb(234 179 8 / 0.75); +} + +.bg-yellow-500\/80 { + background-color: rgb(234 179 8 / 0.8); +} + +.bg-yellow-500\/85 { + background-color: rgb(234 179 8 / 0.85); +} + +.bg-yellow-500\/90 { + background-color: rgb(234 179 8 / 0.9); +} + +.bg-yellow-500\/95 { + background-color: rgb(234 179 8 / 0.95); +} + +.bg-yellow-800 { + --tw-bg-opacity: 1; + background-color: rgb(133 77 14 / var(--tw-bg-opacity)); +} + +.bg-yellow-800\/0 { + background-color: rgb(133 77 14 / 0); +} + +.bg-yellow-800\/10 { + background-color: rgb(133 77 14 / 0.1); +} + +.bg-yellow-800\/100 { + background-color: rgb(133 77 14 / 1); +} + +.bg-yellow-800\/15 { + background-color: rgb(133 77 14 / 0.15); +} + +.bg-yellow-800\/20 { + background-color: rgb(133 77 14 / 0.2); +} + +.bg-yellow-800\/25 { + background-color: rgb(133 77 14 / 0.25); +} + +.bg-yellow-800\/30 { + background-color: rgb(133 77 14 / 0.3); +} + +.bg-yellow-800\/35 { + background-color: rgb(133 77 14 / 0.35); +} + +.bg-yellow-800\/40 { + background-color: rgb(133 77 14 / 0.4); +} + +.bg-yellow-800\/45 { + background-color: rgb(133 77 14 / 0.45); +} + +.bg-yellow-800\/5 { + background-color: rgb(133 77 14 / 0.05); +} + +.bg-yellow-800\/50 { + background-color: rgb(133 77 14 / 0.5); +} + +.bg-yellow-800\/55 { + background-color: rgb(133 77 14 / 0.55); +} + +.bg-yellow-800\/60 { + background-color: rgb(133 77 14 / 0.6); +} + +.bg-yellow-800\/65 { + background-color: rgb(133 77 14 / 0.65); +} + +.bg-yellow-800\/70 { + background-color: rgb(133 77 14 / 0.7); +} + +.bg-yellow-800\/75 { + background-color: rgb(133 77 14 / 0.75); +} + +.bg-yellow-800\/80 { + background-color: rgb(133 77 14 / 0.8); +} + +.bg-yellow-800\/85 { + background-color: rgb(133 77 14 / 0.85); +} + +.bg-yellow-800\/90 { + background-color: rgb(133 77 14 / 0.9); +} + +.bg-yellow-800\/95 { + background-color: rgb(133 77 14 / 0.95); +} + +.bg-yellow-900 { + --tw-bg-opacity: 1; + background-color: rgb(113 63 18 / var(--tw-bg-opacity)); +} + +.bg-yellow-900\/0 { + background-color: rgb(113 63 18 / 0); +} + +.bg-yellow-900\/10 { + background-color: rgb(113 63 18 / 0.1); +} + +.bg-yellow-900\/100 { + background-color: rgb(113 63 18 / 1); +} + +.bg-yellow-900\/15 { + background-color: rgb(113 63 18 / 0.15); +} + +.bg-yellow-900\/20 { + background-color: rgb(113 63 18 / 0.2); +} + +.bg-yellow-900\/25 { + background-color: rgb(113 63 18 / 0.25); +} + +.bg-yellow-900\/30 { + background-color: rgb(113 63 18 / 0.3); +} + +.bg-yellow-900\/35 { + background-color: rgb(113 63 18 / 0.35); +} + +.bg-yellow-900\/40 { + background-color: rgb(113 63 18 / 0.4); +} + +.bg-yellow-900\/45 { + background-color: rgb(113 63 18 / 0.45); +} + +.bg-yellow-900\/5 { + background-color: rgb(113 63 18 / 0.05); +} + +.bg-yellow-900\/50 { + background-color: rgb(113 63 18 / 0.5); +} + +.bg-yellow-900\/55 { + background-color: rgb(113 63 18 / 0.55); +} + +.bg-yellow-900\/60 { + background-color: rgb(113 63 18 / 0.6); +} + +.bg-yellow-900\/65 { + background-color: rgb(113 63 18 / 0.65); +} + +.bg-yellow-900\/70 { + background-color: rgb(113 63 18 / 0.7); +} + +.bg-yellow-900\/75 { + background-color: rgb(113 63 18 / 0.75); +} + +.bg-yellow-900\/80 { + background-color: rgb(113 63 18 / 0.8); +} + +.bg-yellow-900\/85 { + background-color: rgb(113 63 18 / 0.85); +} + +.bg-yellow-900\/90 { + background-color: rgb(113 63 18 / 0.9); +} + +.bg-yellow-900\/95 { + background-color: rgb(113 63 18 / 0.95); +} + .bg-opacity-75 { --tw-bg-opacity: 0.75; } @@ -1751,6 +5333,10 @@ video { padding: 1rem; } +.p-8 { + padding: 2rem; +} + .px-1 { padding-left: 0.25rem; padding-right: 0.25rem; @@ -1771,6 +5357,16 @@ video { padding-right: 2rem; } +.py-1 { + padding-top: 0.25rem; + padding-bottom: 0.25rem; +} + +.py-1\.5 { + padding-top: 0.375rem; + padding-bottom: 0.375rem; +} + .py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; @@ -1788,6 +5384,10 @@ video { padding-bottom: 2rem; } +.pl-2 { + padding-left: 0.5rem; +} + .pl-6 { padding-left: 1.5rem; } @@ -1872,6 +5472,11 @@ video { line-height: 1.625; } +.text-amber-600 { + --tw-text-opacity: 1; + color: rgb(217 119 6 / var(--tw-text-opacity)); +} + .text-blue-100 { --tw-text-opacity: 1; color: rgb(219 234 254 / var(--tw-text-opacity)); @@ -1887,6 +5492,90 @@ video { color: rgb(96 165 250 / var(--tw-text-opacity)); } +.text-blue-400\/0 { + color: rgb(96 165 250 / 0); +} + +.text-blue-400\/10 { + color: rgb(96 165 250 / 0.1); +} + +.text-blue-400\/100 { + color: rgb(96 165 250 / 1); +} + +.text-blue-400\/15 { + color: rgb(96 165 250 / 0.15); +} + +.text-blue-400\/20 { + color: rgb(96 165 250 / 0.2); +} + +.text-blue-400\/25 { + color: rgb(96 165 250 / 0.25); +} + +.text-blue-400\/30 { + color: rgb(96 165 250 / 0.3); +} + +.text-blue-400\/35 { + color: rgb(96 165 250 / 0.35); +} + +.text-blue-400\/40 { + color: rgb(96 165 250 / 0.4); +} + +.text-blue-400\/45 { + color: rgb(96 165 250 / 0.45); +} + +.text-blue-400\/5 { + color: rgb(96 165 250 / 0.05); +} + +.text-blue-400\/50 { + color: rgb(96 165 250 / 0.5); +} + +.text-blue-400\/55 { + color: rgb(96 165 250 / 0.55); +} + +.text-blue-400\/60 { + color: rgb(96 165 250 / 0.6); +} + +.text-blue-400\/65 { + color: rgb(96 165 250 / 0.65); +} + +.text-blue-400\/70 { + color: rgb(96 165 250 / 0.7); +} + +.text-blue-400\/75 { + color: rgb(96 165 250 / 0.75); +} + +.text-blue-400\/80 { + color: rgb(96 165 250 / 0.8); +} + +.text-blue-400\/85 { + color: rgb(96 165 250 / 0.85); +} + +.text-blue-400\/90 { + color: rgb(96 165 250 / 0.9); +} + +.text-blue-400\/95 { + color: rgb(96 165 250 / 0.95); +} + .text-blue-500 { --tw-text-opacity: 1; color: rgb(59 130 246 / var(--tw-text-opacity)); @@ -1907,6 +5596,90 @@ video { color: rgb(52 211 153 / var(--tw-text-opacity)); } +.text-emerald-400\/0 { + color: rgb(52 211 153 / 0); +} + +.text-emerald-400\/10 { + color: rgb(52 211 153 / 0.1); +} + +.text-emerald-400\/100 { + color: rgb(52 211 153 / 1); +} + +.text-emerald-400\/15 { + color: rgb(52 211 153 / 0.15); +} + +.text-emerald-400\/20 { + color: rgb(52 211 153 / 0.2); +} + +.text-emerald-400\/25 { + color: rgb(52 211 153 / 0.25); +} + +.text-emerald-400\/30 { + color: rgb(52 211 153 / 0.3); +} + +.text-emerald-400\/35 { + color: rgb(52 211 153 / 0.35); +} + +.text-emerald-400\/40 { + color: rgb(52 211 153 / 0.4); +} + +.text-emerald-400\/45 { + color: rgb(52 211 153 / 0.45); +} + +.text-emerald-400\/5 { + color: rgb(52 211 153 / 0.05); +} + +.text-emerald-400\/50 { + color: rgb(52 211 153 / 0.5); +} + +.text-emerald-400\/55 { + color: rgb(52 211 153 / 0.55); +} + +.text-emerald-400\/60 { + color: rgb(52 211 153 / 0.6); +} + +.text-emerald-400\/65 { + color: rgb(52 211 153 / 0.65); +} + +.text-emerald-400\/70 { + color: rgb(52 211 153 / 0.7); +} + +.text-emerald-400\/75 { + color: rgb(52 211 153 / 0.75); +} + +.text-emerald-400\/80 { + color: rgb(52 211 153 / 0.8); +} + +.text-emerald-400\/85 { + color: rgb(52 211 153 / 0.85); +} + +.text-emerald-400\/90 { + color: rgb(52 211 153 / 0.9); +} + +.text-emerald-400\/95 { + color: rgb(52 211 153 / 0.95); +} + .text-fuchsia-200 { --tw-text-opacity: 1; color: rgb(245 208 254 / var(--tw-text-opacity)); @@ -1937,16 +5710,194 @@ video { color: rgb(31 41 55 / var(--tw-text-opacity)); } +.text-gray-900 { + --tw-text-opacity: 1; + color: rgb(17 24 39 / var(--tw-text-opacity)); +} + .text-green-100 { --tw-text-opacity: 1; color: rgb(220 252 231 / var(--tw-text-opacity)); } +.text-green-400 { + --tw-text-opacity: 1; + color: rgb(74 222 128 / var(--tw-text-opacity)); +} + +.text-green-400\/0 { + color: rgb(74 222 128 / 0); +} + +.text-green-400\/10 { + color: rgb(74 222 128 / 0.1); +} + +.text-green-400\/100 { + color: rgb(74 222 128 / 1); +} + +.text-green-400\/15 { + color: rgb(74 222 128 / 0.15); +} + +.text-green-400\/20 { + color: rgb(74 222 128 / 0.2); +} + +.text-green-400\/25 { + color: rgb(74 222 128 / 0.25); +} + +.text-green-400\/30 { + color: rgb(74 222 128 / 0.3); +} + +.text-green-400\/35 { + color: rgb(74 222 128 / 0.35); +} + +.text-green-400\/40 { + color: rgb(74 222 128 / 0.4); +} + +.text-green-400\/45 { + color: rgb(74 222 128 / 0.45); +} + +.text-green-400\/5 { + color: rgb(74 222 128 / 0.05); +} + +.text-green-400\/50 { + color: rgb(74 222 128 / 0.5); +} + +.text-green-400\/55 { + color: rgb(74 222 128 / 0.55); +} + +.text-green-400\/60 { + color: rgb(74 222 128 / 0.6); +} + +.text-green-400\/65 { + color: rgb(74 222 128 / 0.65); +} + +.text-green-400\/70 { + color: rgb(74 222 128 / 0.7); +} + +.text-green-400\/75 { + color: rgb(74 222 128 / 0.75); +} + +.text-green-400\/80 { + color: rgb(74 222 128 / 0.8); +} + +.text-green-400\/85 { + color: rgb(74 222 128 / 0.85); +} + +.text-green-400\/90 { + color: rgb(74 222 128 / 0.9); +} + +.text-green-400\/95 { + color: rgb(74 222 128 / 0.95); +} + .text-indigo-400 { --tw-text-opacity: 1; color: rgb(129 140 248 / var(--tw-text-opacity)); } +.text-indigo-400\/0 { + color: rgb(129 140 248 / 0); +} + +.text-indigo-400\/10 { + color: rgb(129 140 248 / 0.1); +} + +.text-indigo-400\/100 { + color: rgb(129 140 248 / 1); +} + +.text-indigo-400\/15 { + color: rgb(129 140 248 / 0.15); +} + +.text-indigo-400\/20 { + color: rgb(129 140 248 / 0.2); +} + +.text-indigo-400\/25 { + color: rgb(129 140 248 / 0.25); +} + +.text-indigo-400\/30 { + color: rgb(129 140 248 / 0.3); +} + +.text-indigo-400\/35 { + color: rgb(129 140 248 / 0.35); +} + +.text-indigo-400\/40 { + color: rgb(129 140 248 / 0.4); +} + +.text-indigo-400\/45 { + color: rgb(129 140 248 / 0.45); +} + +.text-indigo-400\/5 { + color: rgb(129 140 248 / 0.05); +} + +.text-indigo-400\/50 { + color: rgb(129 140 248 / 0.5); +} + +.text-indigo-400\/55 { + color: rgb(129 140 248 / 0.55); +} + +.text-indigo-400\/60 { + color: rgb(129 140 248 / 0.6); +} + +.text-indigo-400\/65 { + color: rgb(129 140 248 / 0.65); +} + +.text-indigo-400\/70 { + color: rgb(129 140 248 / 0.7); +} + +.text-indigo-400\/75 { + color: rgb(129 140 248 / 0.75); +} + +.text-indigo-400\/80 { + color: rgb(129 140 248 / 0.8); +} + +.text-indigo-400\/85 { + color: rgb(129 140 248 / 0.85); +} + +.text-indigo-400\/90 { + color: rgb(129 140 248 / 0.9); +} + +.text-indigo-400\/95 { + color: rgb(129 140 248 / 0.95); +} + .text-indigo-900 { --tw-text-opacity: 1; color: rgb(49 46 129 / var(--tw-text-opacity)); @@ -1957,14 +5908,192 @@ video { color: rgb(255 237 213 / var(--tw-text-opacity)); } +.text-orange-400 { + --tw-text-opacity: 1; + color: rgb(251 146 60 / var(--tw-text-opacity)); +} + +.text-orange-400\/0 { + color: rgb(251 146 60 / 0); +} + +.text-orange-400\/10 { + color: rgb(251 146 60 / 0.1); +} + +.text-orange-400\/100 { + color: rgb(251 146 60 / 1); +} + +.text-orange-400\/15 { + color: rgb(251 146 60 / 0.15); +} + +.text-orange-400\/20 { + color: rgb(251 146 60 / 0.2); +} + +.text-orange-400\/25 { + color: rgb(251 146 60 / 0.25); +} + +.text-orange-400\/30 { + color: rgb(251 146 60 / 0.3); +} + +.text-orange-400\/35 { + color: rgb(251 146 60 / 0.35); +} + +.text-orange-400\/40 { + color: rgb(251 146 60 / 0.4); +} + +.text-orange-400\/45 { + color: rgb(251 146 60 / 0.45); +} + +.text-orange-400\/5 { + color: rgb(251 146 60 / 0.05); +} + +.text-orange-400\/50 { + color: rgb(251 146 60 / 0.5); +} + +.text-orange-400\/55 { + color: rgb(251 146 60 / 0.55); +} + +.text-orange-400\/60 { + color: rgb(251 146 60 / 0.6); +} + +.text-orange-400\/65 { + color: rgb(251 146 60 / 0.65); +} + +.text-orange-400\/70 { + color: rgb(251 146 60 / 0.7); +} + +.text-orange-400\/75 { + color: rgb(251 146 60 / 0.75); +} + +.text-orange-400\/80 { + color: rgb(251 146 60 / 0.8); +} + +.text-orange-400\/85 { + color: rgb(251 146 60 / 0.85); +} + +.text-orange-400\/90 { + color: rgb(251 146 60 / 0.9); +} + +.text-orange-400\/95 { + color: rgb(251 146 60 / 0.95); +} + +.text-orange-700 { + --tw-text-opacity: 1; + color: rgb(194 65 12 / var(--tw-text-opacity)); +} + +.text-orange-900 { + --tw-text-opacity: 1; + color: rgb(124 45 18 / var(--tw-text-opacity)); +} + .text-pink-400 { --tw-text-opacity: 1; color: rgb(244 114 182 / var(--tw-text-opacity)); } -.text-pink-600 { - --tw-text-opacity: 1; - color: rgb(219 39 119 / var(--tw-text-opacity)); +.text-pink-400\/0 { + color: rgb(244 114 182 / 0); +} + +.text-pink-400\/10 { + color: rgb(244 114 182 / 0.1); +} + +.text-pink-400\/100 { + color: rgb(244 114 182 / 1); +} + +.text-pink-400\/15 { + color: rgb(244 114 182 / 0.15); +} + +.text-pink-400\/20 { + color: rgb(244 114 182 / 0.2); +} + +.text-pink-400\/25 { + color: rgb(244 114 182 / 0.25); +} + +.text-pink-400\/30 { + color: rgb(244 114 182 / 0.3); +} + +.text-pink-400\/35 { + color: rgb(244 114 182 / 0.35); +} + +.text-pink-400\/40 { + color: rgb(244 114 182 / 0.4); +} + +.text-pink-400\/45 { + color: rgb(244 114 182 / 0.45); +} + +.text-pink-400\/5 { + color: rgb(244 114 182 / 0.05); +} + +.text-pink-400\/50 { + color: rgb(244 114 182 / 0.5); +} + +.text-pink-400\/55 { + color: rgb(244 114 182 / 0.55); +} + +.text-pink-400\/60 { + color: rgb(244 114 182 / 0.6); +} + +.text-pink-400\/65 { + color: rgb(244 114 182 / 0.65); +} + +.text-pink-400\/70 { + color: rgb(244 114 182 / 0.7); +} + +.text-pink-400\/75 { + color: rgb(244 114 182 / 0.75); +} + +.text-pink-400\/80 { + color: rgb(244 114 182 / 0.8); +} + +.text-pink-400\/85 { + color: rgb(244 114 182 / 0.85); +} + +.text-pink-400\/90 { + color: rgb(244 114 182 / 0.9); +} + +.text-pink-400\/95 { + color: rgb(244 114 182 / 0.95); } .text-pink-800 { @@ -1977,6 +6106,95 @@ video { color: rgb(131 24 67 / var(--tw-text-opacity)); } +.text-purple-400 { + --tw-text-opacity: 1; + color: rgb(192 132 252 / var(--tw-text-opacity)); +} + +.text-purple-400\/0 { + color: rgb(192 132 252 / 0); +} + +.text-purple-400\/10 { + color: rgb(192 132 252 / 0.1); +} + +.text-purple-400\/100 { + color: rgb(192 132 252 / 1); +} + +.text-purple-400\/15 { + color: rgb(192 132 252 / 0.15); +} + +.text-purple-400\/20 { + color: rgb(192 132 252 / 0.2); +} + +.text-purple-400\/25 { + color: rgb(192 132 252 / 0.25); +} + +.text-purple-400\/30 { + color: rgb(192 132 252 / 0.3); +} + +.text-purple-400\/35 { + color: rgb(192 132 252 / 0.35); +} + +.text-purple-400\/40 { + color: rgb(192 132 252 / 0.4); +} + +.text-purple-400\/45 { + color: rgb(192 132 252 / 0.45); +} + +.text-purple-400\/5 { + color: rgb(192 132 252 / 0.05); +} + +.text-purple-400\/50 { + color: rgb(192 132 252 / 0.5); +} + +.text-purple-400\/55 { + color: rgb(192 132 252 / 0.55); +} + +.text-purple-400\/60 { + color: rgb(192 132 252 / 0.6); +} + +.text-purple-400\/65 { + color: rgb(192 132 252 / 0.65); +} + +.text-purple-400\/70 { + color: rgb(192 132 252 / 0.7); +} + +.text-purple-400\/75 { + color: rgb(192 132 252 / 0.75); +} + +.text-purple-400\/80 { + color: rgb(192 132 252 / 0.8); +} + +.text-purple-400\/85 { + color: rgb(192 132 252 / 0.85); +} + +.text-purple-400\/90 { + color: rgb(192 132 252 / 0.9); +} + +.text-purple-400\/95 { + color: rgb(192 132 252 / 0.95); +} + .text-red-200 { --tw-text-opacity: 1; color: rgb(254 202 202 / var(--tw-text-opacity)); @@ -1997,6 +6215,90 @@ video { color: rgb(250 204 21 / var(--tw-text-opacity)); } +.text-yellow-400\/0 { + color: rgb(250 204 21 / 0); +} + +.text-yellow-400\/10 { + color: rgb(250 204 21 / 0.1); +} + +.text-yellow-400\/100 { + color: rgb(250 204 21 / 1); +} + +.text-yellow-400\/15 { + color: rgb(250 204 21 / 0.15); +} + +.text-yellow-400\/20 { + color: rgb(250 204 21 / 0.2); +} + +.text-yellow-400\/25 { + color: rgb(250 204 21 / 0.25); +} + +.text-yellow-400\/30 { + color: rgb(250 204 21 / 0.3); +} + +.text-yellow-400\/35 { + color: rgb(250 204 21 / 0.35); +} + +.text-yellow-400\/40 { + color: rgb(250 204 21 / 0.4); +} + +.text-yellow-400\/45 { + color: rgb(250 204 21 / 0.45); +} + +.text-yellow-400\/5 { + color: rgb(250 204 21 / 0.05); +} + +.text-yellow-400\/50 { + color: rgb(250 204 21 / 0.5); +} + +.text-yellow-400\/55 { + color: rgb(250 204 21 / 0.55); +} + +.text-yellow-400\/60 { + color: rgb(250 204 21 / 0.6); +} + +.text-yellow-400\/65 { + color: rgb(250 204 21 / 0.65); +} + +.text-yellow-400\/70 { + color: rgb(250 204 21 / 0.7); +} + +.text-yellow-400\/75 { + color: rgb(250 204 21 / 0.75); +} + +.text-yellow-400\/80 { + color: rgb(250 204 21 / 0.8); +} + +.text-yellow-400\/85 { + color: rgb(250 204 21 / 0.85); +} + +.text-yellow-400\/90 { + color: rgb(250 204 21 / 0.9); +} + +.text-yellow-400\/95 { + color: rgb(250 204 21 / 0.95); +} + .underline { text-decoration-line: underline; } @@ -2009,6 +6311,10 @@ video { text-decoration-style: wavy; } +.opacity-80 { + opacity: 0.8; +} + .shadow-solid { --tw-shadow: 10px 10px 1px 2px; --tw-shadow-colored: 10px 10px 1px 2px var(--tw-shadow-color); @@ -2151,25 +6457,34 @@ h1, h2, h3, h4, h5, h6, h1 a, h2 a, h3 a, h4 a, h5 a, h6 a { border-radius: 8px; } -@media (prefers-color-scheme: dark) { - .dark\:prose-invert { - --tw-prose-body: var(--tw-prose-invert-body); - --tw-prose-headings: var(--tw-prose-invert-headings); - --tw-prose-lead: var(--tw-prose-invert-lead); - --tw-prose-links: var(--tw-prose-invert-links); - --tw-prose-bold: var(--tw-prose-invert-bold); - --tw-prose-counters: var(--tw-prose-invert-counters); - --tw-prose-bullets: var(--tw-prose-invert-bullets); - --tw-prose-hr: var(--tw-prose-invert-hr); - --tw-prose-quotes: var(--tw-prose-invert-quotes); - --tw-prose-quote-borders: var(--tw-prose-invert-quote-borders); - --tw-prose-captions: var(--tw-prose-invert-captions); - --tw-prose-code: var(--tw-prose-invert-code); - --tw-prose-pre-code: var(--tw-prose-invert-pre-code); - --tw-prose-pre-bg: var(--tw-prose-invert-pre-bg); - --tw-prose-th-borders: var(--tw-prose-invert-th-borders); - --tw-prose-td-borders: var(--tw-prose-invert-td-borders); - } +.squircle { + -webkit-clip-path: url(#squircleClip); + clip-path: url(#squircleClip); +} + +.status-body img { + max-width: 8rem; + border-radius: 0.25rem; + margin-top: 1rem; +} + +:is(:where(.dark) .dark\:prose-invert) { + --tw-prose-body: var(--tw-prose-invert-body); + --tw-prose-headings: var(--tw-prose-invert-headings); + --tw-prose-lead: var(--tw-prose-invert-lead); + --tw-prose-links: var(--tw-prose-invert-links); + --tw-prose-bold: var(--tw-prose-invert-bold); + --tw-prose-counters: var(--tw-prose-invert-counters); + --tw-prose-bullets: var(--tw-prose-invert-bullets); + --tw-prose-hr: var(--tw-prose-invert-hr); + --tw-prose-quotes: var(--tw-prose-invert-quotes); + --tw-prose-quote-borders: var(--tw-prose-invert-quote-borders); + --tw-prose-captions: var(--tw-prose-invert-captions); + --tw-prose-code: var(--tw-prose-invert-code); + --tw-prose-pre-code: var(--tw-prose-invert-pre-code); + --tw-prose-pre-bg: var(--tw-prose-invert-pre-bg); + --tw-prose-th-borders: var(--tw-prose-invert-th-borders); + --tw-prose-td-borders: var(--tw-prose-invert-td-borders); } .selection\:bg-blue-100 *::-moz-selection { @@ -2231,11 +6546,105 @@ h1, h2, h3, h4, h5, h6, h1 a, h2 a, h3 a, h4 a, h5 a, h6 a { border-color: rgb(37 99 235 / var(--tw-border-opacity)); } +.hover\:bg-amber-100:hover { + --tw-bg-opacity: 1; + background-color: rgb(254 243 199 / var(--tw-bg-opacity)); +} + +.hover\:bg-amber-200:hover { + --tw-bg-opacity: 1; + background-color: rgb(253 230 138 / var(--tw-bg-opacity)); +} + .hover\:bg-blue-100:hover { --tw-bg-opacity: 1; background-color: rgb(219 234 254 / var(--tw-bg-opacity)); } +.hover\:bg-blue-100\/0:hover { + background-color: rgb(219 234 254 / 0); +} + +.hover\:bg-blue-100\/10:hover { + background-color: rgb(219 234 254 / 0.1); +} + +.hover\:bg-blue-100\/100:hover { + background-color: rgb(219 234 254 / 1); +} + +.hover\:bg-blue-100\/15:hover { + background-color: rgb(219 234 254 / 0.15); +} + +.hover\:bg-blue-100\/20:hover { + background-color: rgb(219 234 254 / 0.2); +} + +.hover\:bg-blue-100\/25:hover { + background-color: rgb(219 234 254 / 0.25); +} + +.hover\:bg-blue-100\/30:hover { + background-color: rgb(219 234 254 / 0.3); +} + +.hover\:bg-blue-100\/35:hover { + background-color: rgb(219 234 254 / 0.35); +} + +.hover\:bg-blue-100\/40:hover { + background-color: rgb(219 234 254 / 0.4); +} + +.hover\:bg-blue-100\/45:hover { + background-color: rgb(219 234 254 / 0.45); +} + +.hover\:bg-blue-100\/5:hover { + background-color: rgb(219 234 254 / 0.05); +} + +.hover\:bg-blue-100\/50:hover { + background-color: rgb(219 234 254 / 0.5); +} + +.hover\:bg-blue-100\/55:hover { + background-color: rgb(219 234 254 / 0.55); +} + +.hover\:bg-blue-100\/60:hover { + background-color: rgb(219 234 254 / 0.6); +} + +.hover\:bg-blue-100\/65:hover { + background-color: rgb(219 234 254 / 0.65); +} + +.hover\:bg-blue-100\/70:hover { + background-color: rgb(219 234 254 / 0.7); +} + +.hover\:bg-blue-100\/75:hover { + background-color: rgb(219 234 254 / 0.75); +} + +.hover\:bg-blue-100\/80:hover { + background-color: rgb(219 234 254 / 0.8); +} + +.hover\:bg-blue-100\/85:hover { + background-color: rgb(219 234 254 / 0.85); +} + +.hover\:bg-blue-100\/90:hover { + background-color: rgb(219 234 254 / 0.9); +} + +.hover\:bg-blue-100\/95:hover { + background-color: rgb(219 234 254 / 0.95); +} + .hover\:bg-blue-200:hover { --tw-bg-opacity: 1; background-color: rgb(191 219 254 / var(--tw-bg-opacity)); @@ -2246,11 +6655,807 @@ h1, h2, h3, h4, h5, h6, h1 a, h2 a, h3 a, h4 a, h5 a, h6 a { background-color: rgb(147 197 253 / var(--tw-bg-opacity)); } +.hover\:bg-blue-50:hover { + --tw-bg-opacity: 1; + background-color: rgb(239 246 255 / var(--tw-bg-opacity)); +} + +.hover\:bg-blue-50\/0:hover { + background-color: rgb(239 246 255 / 0); +} + +.hover\:bg-blue-50\/10:hover { + background-color: rgb(239 246 255 / 0.1); +} + +.hover\:bg-blue-50\/100:hover { + background-color: rgb(239 246 255 / 1); +} + +.hover\:bg-blue-50\/15:hover { + background-color: rgb(239 246 255 / 0.15); +} + +.hover\:bg-blue-50\/20:hover { + background-color: rgb(239 246 255 / 0.2); +} + +.hover\:bg-blue-50\/25:hover { + background-color: rgb(239 246 255 / 0.25); +} + +.hover\:bg-blue-50\/30:hover { + background-color: rgb(239 246 255 / 0.3); +} + +.hover\:bg-blue-50\/35:hover { + background-color: rgb(239 246 255 / 0.35); +} + +.hover\:bg-blue-50\/40:hover { + background-color: rgb(239 246 255 / 0.4); +} + +.hover\:bg-blue-50\/45:hover { + background-color: rgb(239 246 255 / 0.45); +} + +.hover\:bg-blue-50\/5:hover { + background-color: rgb(239 246 255 / 0.05); +} + +.hover\:bg-blue-50\/50:hover { + background-color: rgb(239 246 255 / 0.5); +} + +.hover\:bg-blue-50\/55:hover { + background-color: rgb(239 246 255 / 0.55); +} + +.hover\:bg-blue-50\/60:hover { + background-color: rgb(239 246 255 / 0.6); +} + +.hover\:bg-blue-50\/65:hover { + background-color: rgb(239 246 255 / 0.65); +} + +.hover\:bg-blue-50\/70:hover { + background-color: rgb(239 246 255 / 0.7); +} + +.hover\:bg-blue-50\/75:hover { + background-color: rgb(239 246 255 / 0.75); +} + +.hover\:bg-blue-50\/80:hover { + background-color: rgb(239 246 255 / 0.8); +} + +.hover\:bg-blue-50\/85:hover { + background-color: rgb(239 246 255 / 0.85); +} + +.hover\:bg-blue-50\/90:hover { + background-color: rgb(239 246 255 / 0.9); +} + +.hover\:bg-blue-50\/95:hover { + background-color: rgb(239 246 255 / 0.95); +} + +.hover\:bg-blue-500:hover { + --tw-bg-opacity: 1; + background-color: rgb(59 130 246 / var(--tw-bg-opacity)); +} + +.hover\:bg-blue-500\/0:hover { + background-color: rgb(59 130 246 / 0); +} + +.hover\:bg-blue-500\/10:hover { + background-color: rgb(59 130 246 / 0.1); +} + +.hover\:bg-blue-500\/100:hover { + background-color: rgb(59 130 246 / 1); +} + +.hover\:bg-blue-500\/15:hover { + background-color: rgb(59 130 246 / 0.15); +} + +.hover\:bg-blue-500\/20:hover { + background-color: rgb(59 130 246 / 0.2); +} + +.hover\:bg-blue-500\/25:hover { + background-color: rgb(59 130 246 / 0.25); +} + +.hover\:bg-blue-500\/30:hover { + background-color: rgb(59 130 246 / 0.3); +} + +.hover\:bg-blue-500\/35:hover { + background-color: rgb(59 130 246 / 0.35); +} + +.hover\:bg-blue-500\/40:hover { + background-color: rgb(59 130 246 / 0.4); +} + +.hover\:bg-blue-500\/45:hover { + background-color: rgb(59 130 246 / 0.45); +} + +.hover\:bg-blue-500\/5:hover { + background-color: rgb(59 130 246 / 0.05); +} + +.hover\:bg-blue-500\/50:hover { + background-color: rgb(59 130 246 / 0.5); +} + +.hover\:bg-blue-500\/55:hover { + background-color: rgb(59 130 246 / 0.55); +} + +.hover\:bg-blue-500\/60:hover { + background-color: rgb(59 130 246 / 0.6); +} + +.hover\:bg-blue-500\/65:hover { + background-color: rgb(59 130 246 / 0.65); +} + +.hover\:bg-blue-500\/70:hover { + background-color: rgb(59 130 246 / 0.7); +} + +.hover\:bg-blue-500\/75:hover { + background-color: rgb(59 130 246 / 0.75); +} + +.hover\:bg-blue-500\/80:hover { + background-color: rgb(59 130 246 / 0.8); +} + +.hover\:bg-blue-500\/85:hover { + background-color: rgb(59 130 246 / 0.85); +} + +.hover\:bg-blue-500\/90:hover { + background-color: rgb(59 130 246 / 0.9); +} + +.hover\:bg-blue-500\/95:hover { + background-color: rgb(59 130 246 / 0.95); +} + +.hover\:bg-blue-800:hover { + --tw-bg-opacity: 1; + background-color: rgb(30 64 175 / var(--tw-bg-opacity)); +} + +.hover\:bg-blue-800\/0:hover { + background-color: rgb(30 64 175 / 0); +} + +.hover\:bg-blue-800\/10:hover { + background-color: rgb(30 64 175 / 0.1); +} + +.hover\:bg-blue-800\/100:hover { + background-color: rgb(30 64 175 / 1); +} + +.hover\:bg-blue-800\/15:hover { + background-color: rgb(30 64 175 / 0.15); +} + +.hover\:bg-blue-800\/20:hover { + background-color: rgb(30 64 175 / 0.2); +} + +.hover\:bg-blue-800\/25:hover { + background-color: rgb(30 64 175 / 0.25); +} + +.hover\:bg-blue-800\/30:hover { + background-color: rgb(30 64 175 / 0.3); +} + +.hover\:bg-blue-800\/35:hover { + background-color: rgb(30 64 175 / 0.35); +} + +.hover\:bg-blue-800\/40:hover { + background-color: rgb(30 64 175 / 0.4); +} + +.hover\:bg-blue-800\/45:hover { + background-color: rgb(30 64 175 / 0.45); +} + +.hover\:bg-blue-800\/5:hover { + background-color: rgb(30 64 175 / 0.05); +} + +.hover\:bg-blue-800\/50:hover { + background-color: rgb(30 64 175 / 0.5); +} + +.hover\:bg-blue-800\/55:hover { + background-color: rgb(30 64 175 / 0.55); +} + +.hover\:bg-blue-800\/60:hover { + background-color: rgb(30 64 175 / 0.6); +} + +.hover\:bg-blue-800\/65:hover { + background-color: rgb(30 64 175 / 0.65); +} + +.hover\:bg-blue-800\/70:hover { + background-color: rgb(30 64 175 / 0.7); +} + +.hover\:bg-blue-800\/75:hover { + background-color: rgb(30 64 175 / 0.75); +} + +.hover\:bg-blue-800\/80:hover { + background-color: rgb(30 64 175 / 0.8); +} + +.hover\:bg-blue-800\/85:hover { + background-color: rgb(30 64 175 / 0.85); +} + +.hover\:bg-blue-800\/90:hover { + background-color: rgb(30 64 175 / 0.9); +} + +.hover\:bg-blue-800\/95:hover { + background-color: rgb(30 64 175 / 0.95); +} + +.hover\:bg-blue-900:hover { + --tw-bg-opacity: 1; + background-color: rgb(30 58 138 / var(--tw-bg-opacity)); +} + +.hover\:bg-blue-900\/0:hover { + background-color: rgb(30 58 138 / 0); +} + +.hover\:bg-blue-900\/10:hover { + background-color: rgb(30 58 138 / 0.1); +} + +.hover\:bg-blue-900\/100:hover { + background-color: rgb(30 58 138 / 1); +} + +.hover\:bg-blue-900\/15:hover { + background-color: rgb(30 58 138 / 0.15); +} + +.hover\:bg-blue-900\/20:hover { + background-color: rgb(30 58 138 / 0.2); +} + +.hover\:bg-blue-900\/25:hover { + background-color: rgb(30 58 138 / 0.25); +} + +.hover\:bg-blue-900\/30:hover { + background-color: rgb(30 58 138 / 0.3); +} + +.hover\:bg-blue-900\/35:hover { + background-color: rgb(30 58 138 / 0.35); +} + +.hover\:bg-blue-900\/40:hover { + background-color: rgb(30 58 138 / 0.4); +} + +.hover\:bg-blue-900\/45:hover { + background-color: rgb(30 58 138 / 0.45); +} + +.hover\:bg-blue-900\/5:hover { + background-color: rgb(30 58 138 / 0.05); +} + +.hover\:bg-blue-900\/50:hover { + background-color: rgb(30 58 138 / 0.5); +} + +.hover\:bg-blue-900\/55:hover { + background-color: rgb(30 58 138 / 0.55); +} + +.hover\:bg-blue-900\/60:hover { + background-color: rgb(30 58 138 / 0.6); +} + +.hover\:bg-blue-900\/65:hover { + background-color: rgb(30 58 138 / 0.65); +} + +.hover\:bg-blue-900\/70:hover { + background-color: rgb(30 58 138 / 0.7); +} + +.hover\:bg-blue-900\/75:hover { + background-color: rgb(30 58 138 / 0.75); +} + +.hover\:bg-blue-900\/80:hover { + background-color: rgb(30 58 138 / 0.8); +} + +.hover\:bg-blue-900\/85:hover { + background-color: rgb(30 58 138 / 0.85); +} + +.hover\:bg-blue-900\/90:hover { + background-color: rgb(30 58 138 / 0.9); +} + +.hover\:bg-blue-900\/95:hover { + background-color: rgb(30 58 138 / 0.95); +} + .hover\:bg-emerald-100:hover { --tw-bg-opacity: 1; background-color: rgb(209 250 229 / var(--tw-bg-opacity)); } +.hover\:bg-emerald-100\/0:hover { + background-color: rgb(209 250 229 / 0); +} + +.hover\:bg-emerald-100\/10:hover { + background-color: rgb(209 250 229 / 0.1); +} + +.hover\:bg-emerald-100\/100:hover { + background-color: rgb(209 250 229 / 1); +} + +.hover\:bg-emerald-100\/15:hover { + background-color: rgb(209 250 229 / 0.15); +} + +.hover\:bg-emerald-100\/20:hover { + background-color: rgb(209 250 229 / 0.2); +} + +.hover\:bg-emerald-100\/25:hover { + background-color: rgb(209 250 229 / 0.25); +} + +.hover\:bg-emerald-100\/30:hover { + background-color: rgb(209 250 229 / 0.3); +} + +.hover\:bg-emerald-100\/35:hover { + background-color: rgb(209 250 229 / 0.35); +} + +.hover\:bg-emerald-100\/40:hover { + background-color: rgb(209 250 229 / 0.4); +} + +.hover\:bg-emerald-100\/45:hover { + background-color: rgb(209 250 229 / 0.45); +} + +.hover\:bg-emerald-100\/5:hover { + background-color: rgb(209 250 229 / 0.05); +} + +.hover\:bg-emerald-100\/50:hover { + background-color: rgb(209 250 229 / 0.5); +} + +.hover\:bg-emerald-100\/55:hover { + background-color: rgb(209 250 229 / 0.55); +} + +.hover\:bg-emerald-100\/60:hover { + background-color: rgb(209 250 229 / 0.6); +} + +.hover\:bg-emerald-100\/65:hover { + background-color: rgb(209 250 229 / 0.65); +} + +.hover\:bg-emerald-100\/70:hover { + background-color: rgb(209 250 229 / 0.7); +} + +.hover\:bg-emerald-100\/75:hover { + background-color: rgb(209 250 229 / 0.75); +} + +.hover\:bg-emerald-100\/80:hover { + background-color: rgb(209 250 229 / 0.8); +} + +.hover\:bg-emerald-100\/85:hover { + background-color: rgb(209 250 229 / 0.85); +} + +.hover\:bg-emerald-100\/90:hover { + background-color: rgb(209 250 229 / 0.9); +} + +.hover\:bg-emerald-100\/95:hover { + background-color: rgb(209 250 229 / 0.95); +} + +.hover\:bg-emerald-50:hover { + --tw-bg-opacity: 1; + background-color: rgb(236 253 245 / var(--tw-bg-opacity)); +} + +.hover\:bg-emerald-50\/0:hover { + background-color: rgb(236 253 245 / 0); +} + +.hover\:bg-emerald-50\/10:hover { + background-color: rgb(236 253 245 / 0.1); +} + +.hover\:bg-emerald-50\/100:hover { + background-color: rgb(236 253 245 / 1); +} + +.hover\:bg-emerald-50\/15:hover { + background-color: rgb(236 253 245 / 0.15); +} + +.hover\:bg-emerald-50\/20:hover { + background-color: rgb(236 253 245 / 0.2); +} + +.hover\:bg-emerald-50\/25:hover { + background-color: rgb(236 253 245 / 0.25); +} + +.hover\:bg-emerald-50\/30:hover { + background-color: rgb(236 253 245 / 0.3); +} + +.hover\:bg-emerald-50\/35:hover { + background-color: rgb(236 253 245 / 0.35); +} + +.hover\:bg-emerald-50\/40:hover { + background-color: rgb(236 253 245 / 0.4); +} + +.hover\:bg-emerald-50\/45:hover { + background-color: rgb(236 253 245 / 0.45); +} + +.hover\:bg-emerald-50\/5:hover { + background-color: rgb(236 253 245 / 0.05); +} + +.hover\:bg-emerald-50\/50:hover { + background-color: rgb(236 253 245 / 0.5); +} + +.hover\:bg-emerald-50\/55:hover { + background-color: rgb(236 253 245 / 0.55); +} + +.hover\:bg-emerald-50\/60:hover { + background-color: rgb(236 253 245 / 0.6); +} + +.hover\:bg-emerald-50\/65:hover { + background-color: rgb(236 253 245 / 0.65); +} + +.hover\:bg-emerald-50\/70:hover { + background-color: rgb(236 253 245 / 0.7); +} + +.hover\:bg-emerald-50\/75:hover { + background-color: rgb(236 253 245 / 0.75); +} + +.hover\:bg-emerald-50\/80:hover { + background-color: rgb(236 253 245 / 0.8); +} + +.hover\:bg-emerald-50\/85:hover { + background-color: rgb(236 253 245 / 0.85); +} + +.hover\:bg-emerald-50\/90:hover { + background-color: rgb(236 253 245 / 0.9); +} + +.hover\:bg-emerald-50\/95:hover { + background-color: rgb(236 253 245 / 0.95); +} + +.hover\:bg-emerald-500:hover { + --tw-bg-opacity: 1; + background-color: rgb(16 185 129 / var(--tw-bg-opacity)); +} + +.hover\:bg-emerald-500\/0:hover { + background-color: rgb(16 185 129 / 0); +} + +.hover\:bg-emerald-500\/10:hover { + background-color: rgb(16 185 129 / 0.1); +} + +.hover\:bg-emerald-500\/100:hover { + background-color: rgb(16 185 129 / 1); +} + +.hover\:bg-emerald-500\/15:hover { + background-color: rgb(16 185 129 / 0.15); +} + +.hover\:bg-emerald-500\/20:hover { + background-color: rgb(16 185 129 / 0.2); +} + +.hover\:bg-emerald-500\/25:hover { + background-color: rgb(16 185 129 / 0.25); +} + +.hover\:bg-emerald-500\/30:hover { + background-color: rgb(16 185 129 / 0.3); +} + +.hover\:bg-emerald-500\/35:hover { + background-color: rgb(16 185 129 / 0.35); +} + +.hover\:bg-emerald-500\/40:hover { + background-color: rgb(16 185 129 / 0.4); +} + +.hover\:bg-emerald-500\/45:hover { + background-color: rgb(16 185 129 / 0.45); +} + +.hover\:bg-emerald-500\/5:hover { + background-color: rgb(16 185 129 / 0.05); +} + +.hover\:bg-emerald-500\/50:hover { + background-color: rgb(16 185 129 / 0.5); +} + +.hover\:bg-emerald-500\/55:hover { + background-color: rgb(16 185 129 / 0.55); +} + +.hover\:bg-emerald-500\/60:hover { + background-color: rgb(16 185 129 / 0.6); +} + +.hover\:bg-emerald-500\/65:hover { + background-color: rgb(16 185 129 / 0.65); +} + +.hover\:bg-emerald-500\/70:hover { + background-color: rgb(16 185 129 / 0.7); +} + +.hover\:bg-emerald-500\/75:hover { + background-color: rgb(16 185 129 / 0.75); +} + +.hover\:bg-emerald-500\/80:hover { + background-color: rgb(16 185 129 / 0.8); +} + +.hover\:bg-emerald-500\/85:hover { + background-color: rgb(16 185 129 / 0.85); +} + +.hover\:bg-emerald-500\/90:hover { + background-color: rgb(16 185 129 / 0.9); +} + +.hover\:bg-emerald-500\/95:hover { + background-color: rgb(16 185 129 / 0.95); +} + +.hover\:bg-emerald-800:hover { + --tw-bg-opacity: 1; + background-color: rgb(6 95 70 / var(--tw-bg-opacity)); +} + +.hover\:bg-emerald-800\/0:hover { + background-color: rgb(6 95 70 / 0); +} + +.hover\:bg-emerald-800\/10:hover { + background-color: rgb(6 95 70 / 0.1); +} + +.hover\:bg-emerald-800\/100:hover { + background-color: rgb(6 95 70 / 1); +} + +.hover\:bg-emerald-800\/15:hover { + background-color: rgb(6 95 70 / 0.15); +} + +.hover\:bg-emerald-800\/20:hover { + background-color: rgb(6 95 70 / 0.2); +} + +.hover\:bg-emerald-800\/25:hover { + background-color: rgb(6 95 70 / 0.25); +} + +.hover\:bg-emerald-800\/30:hover { + background-color: rgb(6 95 70 / 0.3); +} + +.hover\:bg-emerald-800\/35:hover { + background-color: rgb(6 95 70 / 0.35); +} + +.hover\:bg-emerald-800\/40:hover { + background-color: rgb(6 95 70 / 0.4); +} + +.hover\:bg-emerald-800\/45:hover { + background-color: rgb(6 95 70 / 0.45); +} + +.hover\:bg-emerald-800\/5:hover { + background-color: rgb(6 95 70 / 0.05); +} + +.hover\:bg-emerald-800\/50:hover { + background-color: rgb(6 95 70 / 0.5); +} + +.hover\:bg-emerald-800\/55:hover { + background-color: rgb(6 95 70 / 0.55); +} + +.hover\:bg-emerald-800\/60:hover { + background-color: rgb(6 95 70 / 0.6); +} + +.hover\:bg-emerald-800\/65:hover { + background-color: rgb(6 95 70 / 0.65); +} + +.hover\:bg-emerald-800\/70:hover { + background-color: rgb(6 95 70 / 0.7); +} + +.hover\:bg-emerald-800\/75:hover { + background-color: rgb(6 95 70 / 0.75); +} + +.hover\:bg-emerald-800\/80:hover { + background-color: rgb(6 95 70 / 0.8); +} + +.hover\:bg-emerald-800\/85:hover { + background-color: rgb(6 95 70 / 0.85); +} + +.hover\:bg-emerald-800\/90:hover { + background-color: rgb(6 95 70 / 0.9); +} + +.hover\:bg-emerald-800\/95:hover { + background-color: rgb(6 95 70 / 0.95); +} + +.hover\:bg-emerald-900:hover { + --tw-bg-opacity: 1; + background-color: rgb(6 78 59 / var(--tw-bg-opacity)); +} + +.hover\:bg-emerald-900\/0:hover { + background-color: rgb(6 78 59 / 0); +} + +.hover\:bg-emerald-900\/10:hover { + background-color: rgb(6 78 59 / 0.1); +} + +.hover\:bg-emerald-900\/100:hover { + background-color: rgb(6 78 59 / 1); +} + +.hover\:bg-emerald-900\/15:hover { + background-color: rgb(6 78 59 / 0.15); +} + +.hover\:bg-emerald-900\/20:hover { + background-color: rgb(6 78 59 / 0.2); +} + +.hover\:bg-emerald-900\/25:hover { + background-color: rgb(6 78 59 / 0.25); +} + +.hover\:bg-emerald-900\/30:hover { + background-color: rgb(6 78 59 / 0.3); +} + +.hover\:bg-emerald-900\/35:hover { + background-color: rgb(6 78 59 / 0.35); +} + +.hover\:bg-emerald-900\/40:hover { + background-color: rgb(6 78 59 / 0.4); +} + +.hover\:bg-emerald-900\/45:hover { + background-color: rgb(6 78 59 / 0.45); +} + +.hover\:bg-emerald-900\/5:hover { + background-color: rgb(6 78 59 / 0.05); +} + +.hover\:bg-emerald-900\/50:hover { + background-color: rgb(6 78 59 / 0.5); +} + +.hover\:bg-emerald-900\/55:hover { + background-color: rgb(6 78 59 / 0.55); +} + +.hover\:bg-emerald-900\/60:hover { + background-color: rgb(6 78 59 / 0.6); +} + +.hover\:bg-emerald-900\/65:hover { + background-color: rgb(6 78 59 / 0.65); +} + +.hover\:bg-emerald-900\/70:hover { + background-color: rgb(6 78 59 / 0.7); +} + +.hover\:bg-emerald-900\/75:hover { + background-color: rgb(6 78 59 / 0.75); +} + +.hover\:bg-emerald-900\/80:hover { + background-color: rgb(6 78 59 / 0.8); +} + +.hover\:bg-emerald-900\/85:hover { + background-color: rgb(6 78 59 / 0.85); +} + +.hover\:bg-emerald-900\/90:hover { + background-color: rgb(6 78 59 / 0.9); +} + +.hover\:bg-emerald-900\/95:hover { + background-color: rgb(6 78 59 / 0.95); +} + .hover\:bg-fuchsia-200:hover { --tw-bg-opacity: 1; background-color: rgb(245 208 254 / var(--tw-bg-opacity)); @@ -2261,26 +7466,2241 @@ h1, h2, h3, h4, h5, h6, h1 a, h2 a, h3 a, h4 a, h5 a, h6 a { background-color: rgb(243 244 246 / var(--tw-bg-opacity)); } +.hover\:bg-green-100:hover { + --tw-bg-opacity: 1; + background-color: rgb(220 252 231 / var(--tw-bg-opacity)); +} + +.hover\:bg-green-100\/0:hover { + background-color: rgb(220 252 231 / 0); +} + +.hover\:bg-green-100\/10:hover { + background-color: rgb(220 252 231 / 0.1); +} + +.hover\:bg-green-100\/100:hover { + background-color: rgb(220 252 231 / 1); +} + +.hover\:bg-green-100\/15:hover { + background-color: rgb(220 252 231 / 0.15); +} + +.hover\:bg-green-100\/20:hover { + background-color: rgb(220 252 231 / 0.2); +} + +.hover\:bg-green-100\/25:hover { + background-color: rgb(220 252 231 / 0.25); +} + +.hover\:bg-green-100\/30:hover { + background-color: rgb(220 252 231 / 0.3); +} + +.hover\:bg-green-100\/35:hover { + background-color: rgb(220 252 231 / 0.35); +} + +.hover\:bg-green-100\/40:hover { + background-color: rgb(220 252 231 / 0.4); +} + +.hover\:bg-green-100\/45:hover { + background-color: rgb(220 252 231 / 0.45); +} + +.hover\:bg-green-100\/5:hover { + background-color: rgb(220 252 231 / 0.05); +} + +.hover\:bg-green-100\/50:hover { + background-color: rgb(220 252 231 / 0.5); +} + +.hover\:bg-green-100\/55:hover { + background-color: rgb(220 252 231 / 0.55); +} + +.hover\:bg-green-100\/60:hover { + background-color: rgb(220 252 231 / 0.6); +} + +.hover\:bg-green-100\/65:hover { + background-color: rgb(220 252 231 / 0.65); +} + +.hover\:bg-green-100\/70:hover { + background-color: rgb(220 252 231 / 0.7); +} + +.hover\:bg-green-100\/75:hover { + background-color: rgb(220 252 231 / 0.75); +} + +.hover\:bg-green-100\/80:hover { + background-color: rgb(220 252 231 / 0.8); +} + +.hover\:bg-green-100\/85:hover { + background-color: rgb(220 252 231 / 0.85); +} + +.hover\:bg-green-100\/90:hover { + background-color: rgb(220 252 231 / 0.9); +} + +.hover\:bg-green-100\/95:hover { + background-color: rgb(220 252 231 / 0.95); +} + +.hover\:bg-green-50:hover { + --tw-bg-opacity: 1; + background-color: rgb(240 253 244 / var(--tw-bg-opacity)); +} + +.hover\:bg-green-50\/0:hover { + background-color: rgb(240 253 244 / 0); +} + +.hover\:bg-green-50\/10:hover { + background-color: rgb(240 253 244 / 0.1); +} + +.hover\:bg-green-50\/100:hover { + background-color: rgb(240 253 244 / 1); +} + +.hover\:bg-green-50\/15:hover { + background-color: rgb(240 253 244 / 0.15); +} + +.hover\:bg-green-50\/20:hover { + background-color: rgb(240 253 244 / 0.2); +} + +.hover\:bg-green-50\/25:hover { + background-color: rgb(240 253 244 / 0.25); +} + +.hover\:bg-green-50\/30:hover { + background-color: rgb(240 253 244 / 0.3); +} + +.hover\:bg-green-50\/35:hover { + background-color: rgb(240 253 244 / 0.35); +} + +.hover\:bg-green-50\/40:hover { + background-color: rgb(240 253 244 / 0.4); +} + +.hover\:bg-green-50\/45:hover { + background-color: rgb(240 253 244 / 0.45); +} + +.hover\:bg-green-50\/5:hover { + background-color: rgb(240 253 244 / 0.05); +} + +.hover\:bg-green-50\/50:hover { + background-color: rgb(240 253 244 / 0.5); +} + +.hover\:bg-green-50\/55:hover { + background-color: rgb(240 253 244 / 0.55); +} + +.hover\:bg-green-50\/60:hover { + background-color: rgb(240 253 244 / 0.6); +} + +.hover\:bg-green-50\/65:hover { + background-color: rgb(240 253 244 / 0.65); +} + +.hover\:bg-green-50\/70:hover { + background-color: rgb(240 253 244 / 0.7); +} + +.hover\:bg-green-50\/75:hover { + background-color: rgb(240 253 244 / 0.75); +} + +.hover\:bg-green-50\/80:hover { + background-color: rgb(240 253 244 / 0.8); +} + +.hover\:bg-green-50\/85:hover { + background-color: rgb(240 253 244 / 0.85); +} + +.hover\:bg-green-50\/90:hover { + background-color: rgb(240 253 244 / 0.9); +} + +.hover\:bg-green-50\/95:hover { + background-color: rgb(240 253 244 / 0.95); +} + +.hover\:bg-green-500:hover { + --tw-bg-opacity: 1; + background-color: rgb(34 197 94 / var(--tw-bg-opacity)); +} + +.hover\:bg-green-500\/0:hover { + background-color: rgb(34 197 94 / 0); +} + +.hover\:bg-green-500\/10:hover { + background-color: rgb(34 197 94 / 0.1); +} + +.hover\:bg-green-500\/100:hover { + background-color: rgb(34 197 94 / 1); +} + +.hover\:bg-green-500\/15:hover { + background-color: rgb(34 197 94 / 0.15); +} + +.hover\:bg-green-500\/20:hover { + background-color: rgb(34 197 94 / 0.2); +} + +.hover\:bg-green-500\/25:hover { + background-color: rgb(34 197 94 / 0.25); +} + +.hover\:bg-green-500\/30:hover { + background-color: rgb(34 197 94 / 0.3); +} + +.hover\:bg-green-500\/35:hover { + background-color: rgb(34 197 94 / 0.35); +} + +.hover\:bg-green-500\/40:hover { + background-color: rgb(34 197 94 / 0.4); +} + +.hover\:bg-green-500\/45:hover { + background-color: rgb(34 197 94 / 0.45); +} + +.hover\:bg-green-500\/5:hover { + background-color: rgb(34 197 94 / 0.05); +} + +.hover\:bg-green-500\/50:hover { + background-color: rgb(34 197 94 / 0.5); +} + +.hover\:bg-green-500\/55:hover { + background-color: rgb(34 197 94 / 0.55); +} + +.hover\:bg-green-500\/60:hover { + background-color: rgb(34 197 94 / 0.6); +} + +.hover\:bg-green-500\/65:hover { + background-color: rgb(34 197 94 / 0.65); +} + +.hover\:bg-green-500\/70:hover { + background-color: rgb(34 197 94 / 0.7); +} + +.hover\:bg-green-500\/75:hover { + background-color: rgb(34 197 94 / 0.75); +} + +.hover\:bg-green-500\/80:hover { + background-color: rgb(34 197 94 / 0.8); +} + +.hover\:bg-green-500\/85:hover { + background-color: rgb(34 197 94 / 0.85); +} + +.hover\:bg-green-500\/90:hover { + background-color: rgb(34 197 94 / 0.9); +} + +.hover\:bg-green-500\/95:hover { + background-color: rgb(34 197 94 / 0.95); +} + +.hover\:bg-green-800:hover { + --tw-bg-opacity: 1; + background-color: rgb(22 101 52 / var(--tw-bg-opacity)); +} + +.hover\:bg-green-800\/0:hover { + background-color: rgb(22 101 52 / 0); +} + +.hover\:bg-green-800\/10:hover { + background-color: rgb(22 101 52 / 0.1); +} + +.hover\:bg-green-800\/100:hover { + background-color: rgb(22 101 52 / 1); +} + +.hover\:bg-green-800\/15:hover { + background-color: rgb(22 101 52 / 0.15); +} + +.hover\:bg-green-800\/20:hover { + background-color: rgb(22 101 52 / 0.2); +} + +.hover\:bg-green-800\/25:hover { + background-color: rgb(22 101 52 / 0.25); +} + +.hover\:bg-green-800\/30:hover { + background-color: rgb(22 101 52 / 0.3); +} + +.hover\:bg-green-800\/35:hover { + background-color: rgb(22 101 52 / 0.35); +} + +.hover\:bg-green-800\/40:hover { + background-color: rgb(22 101 52 / 0.4); +} + +.hover\:bg-green-800\/45:hover { + background-color: rgb(22 101 52 / 0.45); +} + +.hover\:bg-green-800\/5:hover { + background-color: rgb(22 101 52 / 0.05); +} + +.hover\:bg-green-800\/50:hover { + background-color: rgb(22 101 52 / 0.5); +} + +.hover\:bg-green-800\/55:hover { + background-color: rgb(22 101 52 / 0.55); +} + +.hover\:bg-green-800\/60:hover { + background-color: rgb(22 101 52 / 0.6); +} + +.hover\:bg-green-800\/65:hover { + background-color: rgb(22 101 52 / 0.65); +} + +.hover\:bg-green-800\/70:hover { + background-color: rgb(22 101 52 / 0.7); +} + +.hover\:bg-green-800\/75:hover { + background-color: rgb(22 101 52 / 0.75); +} + +.hover\:bg-green-800\/80:hover { + background-color: rgb(22 101 52 / 0.8); +} + +.hover\:bg-green-800\/85:hover { + background-color: rgb(22 101 52 / 0.85); +} + +.hover\:bg-green-800\/90:hover { + background-color: rgb(22 101 52 / 0.9); +} + +.hover\:bg-green-800\/95:hover { + background-color: rgb(22 101 52 / 0.95); +} + +.hover\:bg-green-900:hover { + --tw-bg-opacity: 1; + background-color: rgb(20 83 45 / var(--tw-bg-opacity)); +} + +.hover\:bg-green-900\/0:hover { + background-color: rgb(20 83 45 / 0); +} + +.hover\:bg-green-900\/10:hover { + background-color: rgb(20 83 45 / 0.1); +} + +.hover\:bg-green-900\/100:hover { + background-color: rgb(20 83 45 / 1); +} + +.hover\:bg-green-900\/15:hover { + background-color: rgb(20 83 45 / 0.15); +} + +.hover\:bg-green-900\/20:hover { + background-color: rgb(20 83 45 / 0.2); +} + +.hover\:bg-green-900\/25:hover { + background-color: rgb(20 83 45 / 0.25); +} + +.hover\:bg-green-900\/30:hover { + background-color: rgb(20 83 45 / 0.3); +} + +.hover\:bg-green-900\/35:hover { + background-color: rgb(20 83 45 / 0.35); +} + +.hover\:bg-green-900\/40:hover { + background-color: rgb(20 83 45 / 0.4); +} + +.hover\:bg-green-900\/45:hover { + background-color: rgb(20 83 45 / 0.45); +} + +.hover\:bg-green-900\/5:hover { + background-color: rgb(20 83 45 / 0.05); +} + +.hover\:bg-green-900\/50:hover { + background-color: rgb(20 83 45 / 0.5); +} + +.hover\:bg-green-900\/55:hover { + background-color: rgb(20 83 45 / 0.55); +} + +.hover\:bg-green-900\/60:hover { + background-color: rgb(20 83 45 / 0.6); +} + +.hover\:bg-green-900\/65:hover { + background-color: rgb(20 83 45 / 0.65); +} + +.hover\:bg-green-900\/70:hover { + background-color: rgb(20 83 45 / 0.7); +} + +.hover\:bg-green-900\/75:hover { + background-color: rgb(20 83 45 / 0.75); +} + +.hover\:bg-green-900\/80:hover { + background-color: rgb(20 83 45 / 0.8); +} + +.hover\:bg-green-900\/85:hover { + background-color: rgb(20 83 45 / 0.85); +} + +.hover\:bg-green-900\/90:hover { + background-color: rgb(20 83 45 / 0.9); +} + +.hover\:bg-green-900\/95:hover { + background-color: rgb(20 83 45 / 0.95); +} + +.hover\:bg-indigo-100:hover { + --tw-bg-opacity: 1; + background-color: rgb(224 231 255 / var(--tw-bg-opacity)); +} + +.hover\:bg-indigo-100\/0:hover { + background-color: rgb(224 231 255 / 0); +} + +.hover\:bg-indigo-100\/10:hover { + background-color: rgb(224 231 255 / 0.1); +} + +.hover\:bg-indigo-100\/100:hover { + background-color: rgb(224 231 255 / 1); +} + +.hover\:bg-indigo-100\/15:hover { + background-color: rgb(224 231 255 / 0.15); +} + +.hover\:bg-indigo-100\/20:hover { + background-color: rgb(224 231 255 / 0.2); +} + +.hover\:bg-indigo-100\/25:hover { + background-color: rgb(224 231 255 / 0.25); +} + +.hover\:bg-indigo-100\/30:hover { + background-color: rgb(224 231 255 / 0.3); +} + +.hover\:bg-indigo-100\/35:hover { + background-color: rgb(224 231 255 / 0.35); +} + +.hover\:bg-indigo-100\/40:hover { + background-color: rgb(224 231 255 / 0.4); +} + +.hover\:bg-indigo-100\/45:hover { + background-color: rgb(224 231 255 / 0.45); +} + +.hover\:bg-indigo-100\/5:hover { + background-color: rgb(224 231 255 / 0.05); +} + +.hover\:bg-indigo-100\/50:hover { + background-color: rgb(224 231 255 / 0.5); +} + +.hover\:bg-indigo-100\/55:hover { + background-color: rgb(224 231 255 / 0.55); +} + +.hover\:bg-indigo-100\/60:hover { + background-color: rgb(224 231 255 / 0.6); +} + +.hover\:bg-indigo-100\/65:hover { + background-color: rgb(224 231 255 / 0.65); +} + +.hover\:bg-indigo-100\/70:hover { + background-color: rgb(224 231 255 / 0.7); +} + +.hover\:bg-indigo-100\/75:hover { + background-color: rgb(224 231 255 / 0.75); +} + +.hover\:bg-indigo-100\/80:hover { + background-color: rgb(224 231 255 / 0.8); +} + +.hover\:bg-indigo-100\/85:hover { + background-color: rgb(224 231 255 / 0.85); +} + +.hover\:bg-indigo-100\/90:hover { + background-color: rgb(224 231 255 / 0.9); +} + +.hover\:bg-indigo-100\/95:hover { + background-color: rgb(224 231 255 / 0.95); +} + +.hover\:bg-indigo-50:hover { + --tw-bg-opacity: 1; + background-color: rgb(238 242 255 / var(--tw-bg-opacity)); +} + +.hover\:bg-indigo-50\/0:hover { + background-color: rgb(238 242 255 / 0); +} + +.hover\:bg-indigo-50\/10:hover { + background-color: rgb(238 242 255 / 0.1); +} + +.hover\:bg-indigo-50\/100:hover { + background-color: rgb(238 242 255 / 1); +} + +.hover\:bg-indigo-50\/15:hover { + background-color: rgb(238 242 255 / 0.15); +} + +.hover\:bg-indigo-50\/20:hover { + background-color: rgb(238 242 255 / 0.2); +} + +.hover\:bg-indigo-50\/25:hover { + background-color: rgb(238 242 255 / 0.25); +} + +.hover\:bg-indigo-50\/30:hover { + background-color: rgb(238 242 255 / 0.3); +} + +.hover\:bg-indigo-50\/35:hover { + background-color: rgb(238 242 255 / 0.35); +} + +.hover\:bg-indigo-50\/40:hover { + background-color: rgb(238 242 255 / 0.4); +} + +.hover\:bg-indigo-50\/45:hover { + background-color: rgb(238 242 255 / 0.45); +} + +.hover\:bg-indigo-50\/5:hover { + background-color: rgb(238 242 255 / 0.05); +} + +.hover\:bg-indigo-50\/50:hover { + background-color: rgb(238 242 255 / 0.5); +} + +.hover\:bg-indigo-50\/55:hover { + background-color: rgb(238 242 255 / 0.55); +} + +.hover\:bg-indigo-50\/60:hover { + background-color: rgb(238 242 255 / 0.6); +} + +.hover\:bg-indigo-50\/65:hover { + background-color: rgb(238 242 255 / 0.65); +} + +.hover\:bg-indigo-50\/70:hover { + background-color: rgb(238 242 255 / 0.7); +} + +.hover\:bg-indigo-50\/75:hover { + background-color: rgb(238 242 255 / 0.75); +} + +.hover\:bg-indigo-50\/80:hover { + background-color: rgb(238 242 255 / 0.8); +} + +.hover\:bg-indigo-50\/85:hover { + background-color: rgb(238 242 255 / 0.85); +} + +.hover\:bg-indigo-50\/90:hover { + background-color: rgb(238 242 255 / 0.9); +} + +.hover\:bg-indigo-50\/95:hover { + background-color: rgb(238 242 255 / 0.95); +} + +.hover\:bg-indigo-500:hover { + --tw-bg-opacity: 1; + background-color: rgb(99 102 241 / var(--tw-bg-opacity)); +} + +.hover\:bg-indigo-500\/0:hover { + background-color: rgb(99 102 241 / 0); +} + +.hover\:bg-indigo-500\/10:hover { + background-color: rgb(99 102 241 / 0.1); +} + +.hover\:bg-indigo-500\/100:hover { + background-color: rgb(99 102 241 / 1); +} + +.hover\:bg-indigo-500\/15:hover { + background-color: rgb(99 102 241 / 0.15); +} + +.hover\:bg-indigo-500\/20:hover { + background-color: rgb(99 102 241 / 0.2); +} + +.hover\:bg-indigo-500\/25:hover { + background-color: rgb(99 102 241 / 0.25); +} + +.hover\:bg-indigo-500\/30:hover { + background-color: rgb(99 102 241 / 0.3); +} + +.hover\:bg-indigo-500\/35:hover { + background-color: rgb(99 102 241 / 0.35); +} + +.hover\:bg-indigo-500\/40:hover { + background-color: rgb(99 102 241 / 0.4); +} + +.hover\:bg-indigo-500\/45:hover { + background-color: rgb(99 102 241 / 0.45); +} + +.hover\:bg-indigo-500\/5:hover { + background-color: rgb(99 102 241 / 0.05); +} + +.hover\:bg-indigo-500\/50:hover { + background-color: rgb(99 102 241 / 0.5); +} + +.hover\:bg-indigo-500\/55:hover { + background-color: rgb(99 102 241 / 0.55); +} + +.hover\:bg-indigo-500\/60:hover { + background-color: rgb(99 102 241 / 0.6); +} + +.hover\:bg-indigo-500\/65:hover { + background-color: rgb(99 102 241 / 0.65); +} + +.hover\:bg-indigo-500\/70:hover { + background-color: rgb(99 102 241 / 0.7); +} + +.hover\:bg-indigo-500\/75:hover { + background-color: rgb(99 102 241 / 0.75); +} + +.hover\:bg-indigo-500\/80:hover { + background-color: rgb(99 102 241 / 0.8); +} + +.hover\:bg-indigo-500\/85:hover { + background-color: rgb(99 102 241 / 0.85); +} + +.hover\:bg-indigo-500\/90:hover { + background-color: rgb(99 102 241 / 0.9); +} + +.hover\:bg-indigo-500\/95:hover { + background-color: rgb(99 102 241 / 0.95); +} + +.hover\:bg-indigo-800:hover { + --tw-bg-opacity: 1; + background-color: rgb(55 48 163 / var(--tw-bg-opacity)); +} + +.hover\:bg-indigo-800\/0:hover { + background-color: rgb(55 48 163 / 0); +} + +.hover\:bg-indigo-800\/10:hover { + background-color: rgb(55 48 163 / 0.1); +} + +.hover\:bg-indigo-800\/100:hover { + background-color: rgb(55 48 163 / 1); +} + +.hover\:bg-indigo-800\/15:hover { + background-color: rgb(55 48 163 / 0.15); +} + +.hover\:bg-indigo-800\/20:hover { + background-color: rgb(55 48 163 / 0.2); +} + +.hover\:bg-indigo-800\/25:hover { + background-color: rgb(55 48 163 / 0.25); +} + +.hover\:bg-indigo-800\/30:hover { + background-color: rgb(55 48 163 / 0.3); +} + +.hover\:bg-indigo-800\/35:hover { + background-color: rgb(55 48 163 / 0.35); +} + +.hover\:bg-indigo-800\/40:hover { + background-color: rgb(55 48 163 / 0.4); +} + +.hover\:bg-indigo-800\/45:hover { + background-color: rgb(55 48 163 / 0.45); +} + +.hover\:bg-indigo-800\/5:hover { + background-color: rgb(55 48 163 / 0.05); +} + +.hover\:bg-indigo-800\/50:hover { + background-color: rgb(55 48 163 / 0.5); +} + +.hover\:bg-indigo-800\/55:hover { + background-color: rgb(55 48 163 / 0.55); +} + +.hover\:bg-indigo-800\/60:hover { + background-color: rgb(55 48 163 / 0.6); +} + +.hover\:bg-indigo-800\/65:hover { + background-color: rgb(55 48 163 / 0.65); +} + +.hover\:bg-indigo-800\/70:hover { + background-color: rgb(55 48 163 / 0.7); +} + +.hover\:bg-indigo-800\/75:hover { + background-color: rgb(55 48 163 / 0.75); +} + +.hover\:bg-indigo-800\/80:hover { + background-color: rgb(55 48 163 / 0.8); +} + +.hover\:bg-indigo-800\/85:hover { + background-color: rgb(55 48 163 / 0.85); +} + +.hover\:bg-indigo-800\/90:hover { + background-color: rgb(55 48 163 / 0.9); +} + +.hover\:bg-indigo-800\/95:hover { + background-color: rgb(55 48 163 / 0.95); +} + +.hover\:bg-indigo-900:hover { + --tw-bg-opacity: 1; + background-color: rgb(49 46 129 / var(--tw-bg-opacity)); +} + +.hover\:bg-indigo-900\/0:hover { + background-color: rgb(49 46 129 / 0); +} + +.hover\:bg-indigo-900\/10:hover { + background-color: rgb(49 46 129 / 0.1); +} + +.hover\:bg-indigo-900\/100:hover { + background-color: rgb(49 46 129 / 1); +} + +.hover\:bg-indigo-900\/15:hover { + background-color: rgb(49 46 129 / 0.15); +} + +.hover\:bg-indigo-900\/20:hover { + background-color: rgb(49 46 129 / 0.2); +} + +.hover\:bg-indigo-900\/25:hover { + background-color: rgb(49 46 129 / 0.25); +} + +.hover\:bg-indigo-900\/30:hover { + background-color: rgb(49 46 129 / 0.3); +} + +.hover\:bg-indigo-900\/35:hover { + background-color: rgb(49 46 129 / 0.35); +} + +.hover\:bg-indigo-900\/40:hover { + background-color: rgb(49 46 129 / 0.4); +} + +.hover\:bg-indigo-900\/45:hover { + background-color: rgb(49 46 129 / 0.45); +} + +.hover\:bg-indigo-900\/5:hover { + background-color: rgb(49 46 129 / 0.05); +} + +.hover\:bg-indigo-900\/50:hover { + background-color: rgb(49 46 129 / 0.5); +} + +.hover\:bg-indigo-900\/55:hover { + background-color: rgb(49 46 129 / 0.55); +} + +.hover\:bg-indigo-900\/60:hover { + background-color: rgb(49 46 129 / 0.6); +} + +.hover\:bg-indigo-900\/65:hover { + background-color: rgb(49 46 129 / 0.65); +} + +.hover\:bg-indigo-900\/70:hover { + background-color: rgb(49 46 129 / 0.7); +} + +.hover\:bg-indigo-900\/75:hover { + background-color: rgb(49 46 129 / 0.75); +} + +.hover\:bg-indigo-900\/80:hover { + background-color: rgb(49 46 129 / 0.8); +} + +.hover\:bg-indigo-900\/85:hover { + background-color: rgb(49 46 129 / 0.85); +} + +.hover\:bg-indigo-900\/90:hover { + background-color: rgb(49 46 129 / 0.9); +} + +.hover\:bg-indigo-900\/95:hover { + background-color: rgb(49 46 129 / 0.95); +} + .hover\:bg-orange-100:hover { --tw-bg-opacity: 1; background-color: rgb(255 237 213 / var(--tw-bg-opacity)); } +.hover\:bg-orange-100\/0:hover { + background-color: rgb(255 237 213 / 0); +} + +.hover\:bg-orange-100\/10:hover { + background-color: rgb(255 237 213 / 0.1); +} + +.hover\:bg-orange-100\/100:hover { + background-color: rgb(255 237 213 / 1); +} + +.hover\:bg-orange-100\/15:hover { + background-color: rgb(255 237 213 / 0.15); +} + +.hover\:bg-orange-100\/20:hover { + background-color: rgb(255 237 213 / 0.2); +} + +.hover\:bg-orange-100\/25:hover { + background-color: rgb(255 237 213 / 0.25); +} + +.hover\:bg-orange-100\/30:hover { + background-color: rgb(255 237 213 / 0.3); +} + +.hover\:bg-orange-100\/35:hover { + background-color: rgb(255 237 213 / 0.35); +} + +.hover\:bg-orange-100\/40:hover { + background-color: rgb(255 237 213 / 0.4); +} + +.hover\:bg-orange-100\/45:hover { + background-color: rgb(255 237 213 / 0.45); +} + +.hover\:bg-orange-100\/5:hover { + background-color: rgb(255 237 213 / 0.05); +} + +.hover\:bg-orange-100\/50:hover { + background-color: rgb(255 237 213 / 0.5); +} + +.hover\:bg-orange-100\/55:hover { + background-color: rgb(255 237 213 / 0.55); +} + +.hover\:bg-orange-100\/60:hover { + background-color: rgb(255 237 213 / 0.6); +} + +.hover\:bg-orange-100\/65:hover { + background-color: rgb(255 237 213 / 0.65); +} + +.hover\:bg-orange-100\/70:hover { + background-color: rgb(255 237 213 / 0.7); +} + +.hover\:bg-orange-100\/75:hover { + background-color: rgb(255 237 213 / 0.75); +} + +.hover\:bg-orange-100\/80:hover { + background-color: rgb(255 237 213 / 0.8); +} + +.hover\:bg-orange-100\/85:hover { + background-color: rgb(255 237 213 / 0.85); +} + +.hover\:bg-orange-100\/90:hover { + background-color: rgb(255 237 213 / 0.9); +} + +.hover\:bg-orange-100\/95:hover { + background-color: rgb(255 237 213 / 0.95); +} + .hover\:bg-orange-200:hover { --tw-bg-opacity: 1; background-color: rgb(254 215 170 / var(--tw-bg-opacity)); } +.hover\:bg-orange-50:hover { + --tw-bg-opacity: 1; + background-color: rgb(255 247 237 / var(--tw-bg-opacity)); +} + +.hover\:bg-orange-50\/0:hover { + background-color: rgb(255 247 237 / 0); +} + +.hover\:bg-orange-50\/10:hover { + background-color: rgb(255 247 237 / 0.1); +} + +.hover\:bg-orange-50\/100:hover { + background-color: rgb(255 247 237 / 1); +} + +.hover\:bg-orange-50\/15:hover { + background-color: rgb(255 247 237 / 0.15); +} + +.hover\:bg-orange-50\/20:hover { + background-color: rgb(255 247 237 / 0.2); +} + +.hover\:bg-orange-50\/25:hover { + background-color: rgb(255 247 237 / 0.25); +} + +.hover\:bg-orange-50\/30:hover { + background-color: rgb(255 247 237 / 0.3); +} + +.hover\:bg-orange-50\/35:hover { + background-color: rgb(255 247 237 / 0.35); +} + +.hover\:bg-orange-50\/40:hover { + background-color: rgb(255 247 237 / 0.4); +} + +.hover\:bg-orange-50\/45:hover { + background-color: rgb(255 247 237 / 0.45); +} + +.hover\:bg-orange-50\/5:hover { + background-color: rgb(255 247 237 / 0.05); +} + +.hover\:bg-orange-50\/50:hover { + background-color: rgb(255 247 237 / 0.5); +} + +.hover\:bg-orange-50\/55:hover { + background-color: rgb(255 247 237 / 0.55); +} + +.hover\:bg-orange-50\/60:hover { + background-color: rgb(255 247 237 / 0.6); +} + +.hover\:bg-orange-50\/65:hover { + background-color: rgb(255 247 237 / 0.65); +} + +.hover\:bg-orange-50\/70:hover { + background-color: rgb(255 247 237 / 0.7); +} + +.hover\:bg-orange-50\/75:hover { + background-color: rgb(255 247 237 / 0.75); +} + +.hover\:bg-orange-50\/80:hover { + background-color: rgb(255 247 237 / 0.8); +} + +.hover\:bg-orange-50\/85:hover { + background-color: rgb(255 247 237 / 0.85); +} + +.hover\:bg-orange-50\/90:hover { + background-color: rgb(255 247 237 / 0.9); +} + +.hover\:bg-orange-50\/95:hover { + background-color: rgb(255 247 237 / 0.95); +} + +.hover\:bg-orange-500:hover { + --tw-bg-opacity: 1; + background-color: rgb(249 115 22 / var(--tw-bg-opacity)); +} + +.hover\:bg-orange-500\/0:hover { + background-color: rgb(249 115 22 / 0); +} + +.hover\:bg-orange-500\/10:hover { + background-color: rgb(249 115 22 / 0.1); +} + +.hover\:bg-orange-500\/100:hover { + background-color: rgb(249 115 22 / 1); +} + +.hover\:bg-orange-500\/15:hover { + background-color: rgb(249 115 22 / 0.15); +} + +.hover\:bg-orange-500\/20:hover { + background-color: rgb(249 115 22 / 0.2); +} + +.hover\:bg-orange-500\/25:hover { + background-color: rgb(249 115 22 / 0.25); +} + +.hover\:bg-orange-500\/30:hover { + background-color: rgb(249 115 22 / 0.3); +} + +.hover\:bg-orange-500\/35:hover { + background-color: rgb(249 115 22 / 0.35); +} + +.hover\:bg-orange-500\/40:hover { + background-color: rgb(249 115 22 / 0.4); +} + +.hover\:bg-orange-500\/45:hover { + background-color: rgb(249 115 22 / 0.45); +} + +.hover\:bg-orange-500\/5:hover { + background-color: rgb(249 115 22 / 0.05); +} + +.hover\:bg-orange-500\/50:hover { + background-color: rgb(249 115 22 / 0.5); +} + +.hover\:bg-orange-500\/55:hover { + background-color: rgb(249 115 22 / 0.55); +} + +.hover\:bg-orange-500\/60:hover { + background-color: rgb(249 115 22 / 0.6); +} + +.hover\:bg-orange-500\/65:hover { + background-color: rgb(249 115 22 / 0.65); +} + +.hover\:bg-orange-500\/70:hover { + background-color: rgb(249 115 22 / 0.7); +} + +.hover\:bg-orange-500\/75:hover { + background-color: rgb(249 115 22 / 0.75); +} + +.hover\:bg-orange-500\/80:hover { + background-color: rgb(249 115 22 / 0.8); +} + +.hover\:bg-orange-500\/85:hover { + background-color: rgb(249 115 22 / 0.85); +} + +.hover\:bg-orange-500\/90:hover { + background-color: rgb(249 115 22 / 0.9); +} + +.hover\:bg-orange-500\/95:hover { + background-color: rgb(249 115 22 / 0.95); +} + +.hover\:bg-orange-800:hover { + --tw-bg-opacity: 1; + background-color: rgb(154 52 18 / var(--tw-bg-opacity)); +} + +.hover\:bg-orange-800\/0:hover { + background-color: rgb(154 52 18 / 0); +} + +.hover\:bg-orange-800\/10:hover { + background-color: rgb(154 52 18 / 0.1); +} + +.hover\:bg-orange-800\/100:hover { + background-color: rgb(154 52 18 / 1); +} + +.hover\:bg-orange-800\/15:hover { + background-color: rgb(154 52 18 / 0.15); +} + +.hover\:bg-orange-800\/20:hover { + background-color: rgb(154 52 18 / 0.2); +} + +.hover\:bg-orange-800\/25:hover { + background-color: rgb(154 52 18 / 0.25); +} + +.hover\:bg-orange-800\/30:hover { + background-color: rgb(154 52 18 / 0.3); +} + +.hover\:bg-orange-800\/35:hover { + background-color: rgb(154 52 18 / 0.35); +} + +.hover\:bg-orange-800\/40:hover { + background-color: rgb(154 52 18 / 0.4); +} + +.hover\:bg-orange-800\/45:hover { + background-color: rgb(154 52 18 / 0.45); +} + +.hover\:bg-orange-800\/5:hover { + background-color: rgb(154 52 18 / 0.05); +} + +.hover\:bg-orange-800\/50:hover { + background-color: rgb(154 52 18 / 0.5); +} + +.hover\:bg-orange-800\/55:hover { + background-color: rgb(154 52 18 / 0.55); +} + +.hover\:bg-orange-800\/60:hover { + background-color: rgb(154 52 18 / 0.6); +} + +.hover\:bg-orange-800\/65:hover { + background-color: rgb(154 52 18 / 0.65); +} + +.hover\:bg-orange-800\/70:hover { + background-color: rgb(154 52 18 / 0.7); +} + +.hover\:bg-orange-800\/75:hover { + background-color: rgb(154 52 18 / 0.75); +} + +.hover\:bg-orange-800\/80:hover { + background-color: rgb(154 52 18 / 0.8); +} + +.hover\:bg-orange-800\/85:hover { + background-color: rgb(154 52 18 / 0.85); +} + +.hover\:bg-orange-800\/90:hover { + background-color: rgb(154 52 18 / 0.9); +} + +.hover\:bg-orange-800\/95:hover { + background-color: rgb(154 52 18 / 0.95); +} + +.hover\:bg-orange-900:hover { + --tw-bg-opacity: 1; + background-color: rgb(124 45 18 / var(--tw-bg-opacity)); +} + +.hover\:bg-orange-900\/0:hover { + background-color: rgb(124 45 18 / 0); +} + +.hover\:bg-orange-900\/10:hover { + background-color: rgb(124 45 18 / 0.1); +} + +.hover\:bg-orange-900\/100:hover { + background-color: rgb(124 45 18 / 1); +} + +.hover\:bg-orange-900\/15:hover { + background-color: rgb(124 45 18 / 0.15); +} + +.hover\:bg-orange-900\/20:hover { + background-color: rgb(124 45 18 / 0.2); +} + +.hover\:bg-orange-900\/25:hover { + background-color: rgb(124 45 18 / 0.25); +} + +.hover\:bg-orange-900\/30:hover { + background-color: rgb(124 45 18 / 0.3); +} + +.hover\:bg-orange-900\/35:hover { + background-color: rgb(124 45 18 / 0.35); +} + +.hover\:bg-orange-900\/40:hover { + background-color: rgb(124 45 18 / 0.4); +} + +.hover\:bg-orange-900\/45:hover { + background-color: rgb(124 45 18 / 0.45); +} + +.hover\:bg-orange-900\/5:hover { + background-color: rgb(124 45 18 / 0.05); +} + +.hover\:bg-orange-900\/50:hover { + background-color: rgb(124 45 18 / 0.5); +} + +.hover\:bg-orange-900\/55:hover { + background-color: rgb(124 45 18 / 0.55); +} + +.hover\:bg-orange-900\/60:hover { + background-color: rgb(124 45 18 / 0.6); +} + +.hover\:bg-orange-900\/65:hover { + background-color: rgb(124 45 18 / 0.65); +} + +.hover\:bg-orange-900\/70:hover { + background-color: rgb(124 45 18 / 0.7); +} + +.hover\:bg-orange-900\/75:hover { + background-color: rgb(124 45 18 / 0.75); +} + +.hover\:bg-orange-900\/80:hover { + background-color: rgb(124 45 18 / 0.8); +} + +.hover\:bg-orange-900\/85:hover { + background-color: rgb(124 45 18 / 0.85); +} + +.hover\:bg-orange-900\/90:hover { + background-color: rgb(124 45 18 / 0.9); +} + +.hover\:bg-orange-900\/95:hover { + background-color: rgb(124 45 18 / 0.95); +} + .hover\:bg-pink-100:hover { --tw-bg-opacity: 1; background-color: rgb(252 231 243 / var(--tw-bg-opacity)); } +.hover\:bg-pink-100\/0:hover { + background-color: rgb(252 231 243 / 0); +} + +.hover\:bg-pink-100\/10:hover { + background-color: rgb(252 231 243 / 0.1); +} + +.hover\:bg-pink-100\/100:hover { + background-color: rgb(252 231 243 / 1); +} + +.hover\:bg-pink-100\/15:hover { + background-color: rgb(252 231 243 / 0.15); +} + +.hover\:bg-pink-100\/20:hover { + background-color: rgb(252 231 243 / 0.2); +} + +.hover\:bg-pink-100\/25:hover { + background-color: rgb(252 231 243 / 0.25); +} + +.hover\:bg-pink-100\/30:hover { + background-color: rgb(252 231 243 / 0.3); +} + +.hover\:bg-pink-100\/35:hover { + background-color: rgb(252 231 243 / 0.35); +} + +.hover\:bg-pink-100\/40:hover { + background-color: rgb(252 231 243 / 0.4); +} + +.hover\:bg-pink-100\/45:hover { + background-color: rgb(252 231 243 / 0.45); +} + +.hover\:bg-pink-100\/5:hover { + background-color: rgb(252 231 243 / 0.05); +} + +.hover\:bg-pink-100\/50:hover { + background-color: rgb(252 231 243 / 0.5); +} + +.hover\:bg-pink-100\/55:hover { + background-color: rgb(252 231 243 / 0.55); +} + +.hover\:bg-pink-100\/60:hover { + background-color: rgb(252 231 243 / 0.6); +} + +.hover\:bg-pink-100\/65:hover { + background-color: rgb(252 231 243 / 0.65); +} + +.hover\:bg-pink-100\/70:hover { + background-color: rgb(252 231 243 / 0.7); +} + +.hover\:bg-pink-100\/75:hover { + background-color: rgb(252 231 243 / 0.75); +} + +.hover\:bg-pink-100\/80:hover { + background-color: rgb(252 231 243 / 0.8); +} + +.hover\:bg-pink-100\/85:hover { + background-color: rgb(252 231 243 / 0.85); +} + +.hover\:bg-pink-100\/90:hover { + background-color: rgb(252 231 243 / 0.9); +} + +.hover\:bg-pink-100\/95:hover { + background-color: rgb(252 231 243 / 0.95); +} + .hover\:bg-pink-200:hover { --tw-bg-opacity: 1; background-color: rgb(251 207 232 / var(--tw-bg-opacity)); } +.hover\:bg-pink-50:hover { + --tw-bg-opacity: 1; + background-color: rgb(253 242 248 / var(--tw-bg-opacity)); +} + +.hover\:bg-pink-50\/0:hover { + background-color: rgb(253 242 248 / 0); +} + +.hover\:bg-pink-50\/10:hover { + background-color: rgb(253 242 248 / 0.1); +} + +.hover\:bg-pink-50\/100:hover { + background-color: rgb(253 242 248 / 1); +} + +.hover\:bg-pink-50\/15:hover { + background-color: rgb(253 242 248 / 0.15); +} + +.hover\:bg-pink-50\/20:hover { + background-color: rgb(253 242 248 / 0.2); +} + +.hover\:bg-pink-50\/25:hover { + background-color: rgb(253 242 248 / 0.25); +} + +.hover\:bg-pink-50\/30:hover { + background-color: rgb(253 242 248 / 0.3); +} + +.hover\:bg-pink-50\/35:hover { + background-color: rgb(253 242 248 / 0.35); +} + +.hover\:bg-pink-50\/40:hover { + background-color: rgb(253 242 248 / 0.4); +} + +.hover\:bg-pink-50\/45:hover { + background-color: rgb(253 242 248 / 0.45); +} + +.hover\:bg-pink-50\/5:hover { + background-color: rgb(253 242 248 / 0.05); +} + +.hover\:bg-pink-50\/50:hover { + background-color: rgb(253 242 248 / 0.5); +} + +.hover\:bg-pink-50\/55:hover { + background-color: rgb(253 242 248 / 0.55); +} + +.hover\:bg-pink-50\/60:hover { + background-color: rgb(253 242 248 / 0.6); +} + +.hover\:bg-pink-50\/65:hover { + background-color: rgb(253 242 248 / 0.65); +} + +.hover\:bg-pink-50\/70:hover { + background-color: rgb(253 242 248 / 0.7); +} + +.hover\:bg-pink-50\/75:hover { + background-color: rgb(253 242 248 / 0.75); +} + +.hover\:bg-pink-50\/80:hover { + background-color: rgb(253 242 248 / 0.8); +} + +.hover\:bg-pink-50\/85:hover { + background-color: rgb(253 242 248 / 0.85); +} + +.hover\:bg-pink-50\/90:hover { + background-color: rgb(253 242 248 / 0.9); +} + +.hover\:bg-pink-50\/95:hover { + background-color: rgb(253 242 248 / 0.95); +} + +.hover\:bg-pink-500:hover { + --tw-bg-opacity: 1; + background-color: rgb(236 72 153 / var(--tw-bg-opacity)); +} + +.hover\:bg-pink-500\/0:hover { + background-color: rgb(236 72 153 / 0); +} + +.hover\:bg-pink-500\/10:hover { + background-color: rgb(236 72 153 / 0.1); +} + +.hover\:bg-pink-500\/100:hover { + background-color: rgb(236 72 153 / 1); +} + +.hover\:bg-pink-500\/15:hover { + background-color: rgb(236 72 153 / 0.15); +} + +.hover\:bg-pink-500\/20:hover { + background-color: rgb(236 72 153 / 0.2); +} + +.hover\:bg-pink-500\/25:hover { + background-color: rgb(236 72 153 / 0.25); +} + +.hover\:bg-pink-500\/30:hover { + background-color: rgb(236 72 153 / 0.3); +} + +.hover\:bg-pink-500\/35:hover { + background-color: rgb(236 72 153 / 0.35); +} + +.hover\:bg-pink-500\/40:hover { + background-color: rgb(236 72 153 / 0.4); +} + +.hover\:bg-pink-500\/45:hover { + background-color: rgb(236 72 153 / 0.45); +} + +.hover\:bg-pink-500\/5:hover { + background-color: rgb(236 72 153 / 0.05); +} + +.hover\:bg-pink-500\/50:hover { + background-color: rgb(236 72 153 / 0.5); +} + +.hover\:bg-pink-500\/55:hover { + background-color: rgb(236 72 153 / 0.55); +} + +.hover\:bg-pink-500\/60:hover { + background-color: rgb(236 72 153 / 0.6); +} + +.hover\:bg-pink-500\/65:hover { + background-color: rgb(236 72 153 / 0.65); +} + +.hover\:bg-pink-500\/70:hover { + background-color: rgb(236 72 153 / 0.7); +} + +.hover\:bg-pink-500\/75:hover { + background-color: rgb(236 72 153 / 0.75); +} + +.hover\:bg-pink-500\/80:hover { + background-color: rgb(236 72 153 / 0.8); +} + +.hover\:bg-pink-500\/85:hover { + background-color: rgb(236 72 153 / 0.85); +} + +.hover\:bg-pink-500\/90:hover { + background-color: rgb(236 72 153 / 0.9); +} + +.hover\:bg-pink-500\/95:hover { + background-color: rgb(236 72 153 / 0.95); +} + +.hover\:bg-pink-800:hover { + --tw-bg-opacity: 1; + background-color: rgb(157 23 77 / var(--tw-bg-opacity)); +} + +.hover\:bg-pink-800\/0:hover { + background-color: rgb(157 23 77 / 0); +} + +.hover\:bg-pink-800\/10:hover { + background-color: rgb(157 23 77 / 0.1); +} + +.hover\:bg-pink-800\/100:hover { + background-color: rgb(157 23 77 / 1); +} + +.hover\:bg-pink-800\/15:hover { + background-color: rgb(157 23 77 / 0.15); +} + +.hover\:bg-pink-800\/20:hover { + background-color: rgb(157 23 77 / 0.2); +} + +.hover\:bg-pink-800\/25:hover { + background-color: rgb(157 23 77 / 0.25); +} + +.hover\:bg-pink-800\/30:hover { + background-color: rgb(157 23 77 / 0.3); +} + +.hover\:bg-pink-800\/35:hover { + background-color: rgb(157 23 77 / 0.35); +} + +.hover\:bg-pink-800\/40:hover { + background-color: rgb(157 23 77 / 0.4); +} + +.hover\:bg-pink-800\/45:hover { + background-color: rgb(157 23 77 / 0.45); +} + +.hover\:bg-pink-800\/5:hover { + background-color: rgb(157 23 77 / 0.05); +} + +.hover\:bg-pink-800\/50:hover { + background-color: rgb(157 23 77 / 0.5); +} + +.hover\:bg-pink-800\/55:hover { + background-color: rgb(157 23 77 / 0.55); +} + +.hover\:bg-pink-800\/60:hover { + background-color: rgb(157 23 77 / 0.6); +} + +.hover\:bg-pink-800\/65:hover { + background-color: rgb(157 23 77 / 0.65); +} + +.hover\:bg-pink-800\/70:hover { + background-color: rgb(157 23 77 / 0.7); +} + +.hover\:bg-pink-800\/75:hover { + background-color: rgb(157 23 77 / 0.75); +} + +.hover\:bg-pink-800\/80:hover { + background-color: rgb(157 23 77 / 0.8); +} + +.hover\:bg-pink-800\/85:hover { + background-color: rgb(157 23 77 / 0.85); +} + +.hover\:bg-pink-800\/90:hover { + background-color: rgb(157 23 77 / 0.9); +} + +.hover\:bg-pink-800\/95:hover { + background-color: rgb(157 23 77 / 0.95); +} + +.hover\:bg-pink-900:hover { + --tw-bg-opacity: 1; + background-color: rgb(131 24 67 / var(--tw-bg-opacity)); +} + +.hover\:bg-pink-900\/0:hover { + background-color: rgb(131 24 67 / 0); +} + +.hover\:bg-pink-900\/10:hover { + background-color: rgb(131 24 67 / 0.1); +} + +.hover\:bg-pink-900\/100:hover { + background-color: rgb(131 24 67 / 1); +} + +.hover\:bg-pink-900\/15:hover { + background-color: rgb(131 24 67 / 0.15); +} + +.hover\:bg-pink-900\/20:hover { + background-color: rgb(131 24 67 / 0.2); +} + +.hover\:bg-pink-900\/25:hover { + background-color: rgb(131 24 67 / 0.25); +} + +.hover\:bg-pink-900\/30:hover { + background-color: rgb(131 24 67 / 0.3); +} + +.hover\:bg-pink-900\/35:hover { + background-color: rgb(131 24 67 / 0.35); +} + +.hover\:bg-pink-900\/40:hover { + background-color: rgb(131 24 67 / 0.4); +} + +.hover\:bg-pink-900\/45:hover { + background-color: rgb(131 24 67 / 0.45); +} + +.hover\:bg-pink-900\/5:hover { + background-color: rgb(131 24 67 / 0.05); +} + +.hover\:bg-pink-900\/50:hover { + background-color: rgb(131 24 67 / 0.5); +} + +.hover\:bg-pink-900\/55:hover { + background-color: rgb(131 24 67 / 0.55); +} + +.hover\:bg-pink-900\/60:hover { + background-color: rgb(131 24 67 / 0.6); +} + +.hover\:bg-pink-900\/65:hover { + background-color: rgb(131 24 67 / 0.65); +} + +.hover\:bg-pink-900\/70:hover { + background-color: rgb(131 24 67 / 0.7); +} + +.hover\:bg-pink-900\/75:hover { + background-color: rgb(131 24 67 / 0.75); +} + +.hover\:bg-pink-900\/80:hover { + background-color: rgb(131 24 67 / 0.8); +} + +.hover\:bg-pink-900\/85:hover { + background-color: rgb(131 24 67 / 0.85); +} + +.hover\:bg-pink-900\/90:hover { + background-color: rgb(131 24 67 / 0.9); +} + +.hover\:bg-pink-900\/95:hover { + background-color: rgb(131 24 67 / 0.95); +} + +.hover\:bg-purple-100:hover { + --tw-bg-opacity: 1; + background-color: rgb(243 232 255 / var(--tw-bg-opacity)); +} + +.hover\:bg-purple-100\/0:hover { + background-color: rgb(243 232 255 / 0); +} + +.hover\:bg-purple-100\/10:hover { + background-color: rgb(243 232 255 / 0.1); +} + +.hover\:bg-purple-100\/100:hover { + background-color: rgb(243 232 255 / 1); +} + +.hover\:bg-purple-100\/15:hover { + background-color: rgb(243 232 255 / 0.15); +} + +.hover\:bg-purple-100\/20:hover { + background-color: rgb(243 232 255 / 0.2); +} + +.hover\:bg-purple-100\/25:hover { + background-color: rgb(243 232 255 / 0.25); +} + +.hover\:bg-purple-100\/30:hover { + background-color: rgb(243 232 255 / 0.3); +} + +.hover\:bg-purple-100\/35:hover { + background-color: rgb(243 232 255 / 0.35); +} + +.hover\:bg-purple-100\/40:hover { + background-color: rgb(243 232 255 / 0.4); +} + +.hover\:bg-purple-100\/45:hover { + background-color: rgb(243 232 255 / 0.45); +} + +.hover\:bg-purple-100\/5:hover { + background-color: rgb(243 232 255 / 0.05); +} + +.hover\:bg-purple-100\/50:hover { + background-color: rgb(243 232 255 / 0.5); +} + +.hover\:bg-purple-100\/55:hover { + background-color: rgb(243 232 255 / 0.55); +} + +.hover\:bg-purple-100\/60:hover { + background-color: rgb(243 232 255 / 0.6); +} + +.hover\:bg-purple-100\/65:hover { + background-color: rgb(243 232 255 / 0.65); +} + +.hover\:bg-purple-100\/70:hover { + background-color: rgb(243 232 255 / 0.7); +} + +.hover\:bg-purple-100\/75:hover { + background-color: rgb(243 232 255 / 0.75); +} + +.hover\:bg-purple-100\/80:hover { + background-color: rgb(243 232 255 / 0.8); +} + +.hover\:bg-purple-100\/85:hover { + background-color: rgb(243 232 255 / 0.85); +} + +.hover\:bg-purple-100\/90:hover { + background-color: rgb(243 232 255 / 0.9); +} + +.hover\:bg-purple-100\/95:hover { + background-color: rgb(243 232 255 / 0.95); +} + +.hover\:bg-purple-50:hover { + --tw-bg-opacity: 1; + background-color: rgb(250 245 255 / var(--tw-bg-opacity)); +} + +.hover\:bg-purple-50\/0:hover { + background-color: rgb(250 245 255 / 0); +} + +.hover\:bg-purple-50\/10:hover { + background-color: rgb(250 245 255 / 0.1); +} + +.hover\:bg-purple-50\/100:hover { + background-color: rgb(250 245 255 / 1); +} + +.hover\:bg-purple-50\/15:hover { + background-color: rgb(250 245 255 / 0.15); +} + +.hover\:bg-purple-50\/20:hover { + background-color: rgb(250 245 255 / 0.2); +} + +.hover\:bg-purple-50\/25:hover { + background-color: rgb(250 245 255 / 0.25); +} + +.hover\:bg-purple-50\/30:hover { + background-color: rgb(250 245 255 / 0.3); +} + +.hover\:bg-purple-50\/35:hover { + background-color: rgb(250 245 255 / 0.35); +} + +.hover\:bg-purple-50\/40:hover { + background-color: rgb(250 245 255 / 0.4); +} + +.hover\:bg-purple-50\/45:hover { + background-color: rgb(250 245 255 / 0.45); +} + +.hover\:bg-purple-50\/5:hover { + background-color: rgb(250 245 255 / 0.05); +} + +.hover\:bg-purple-50\/50:hover { + background-color: rgb(250 245 255 / 0.5); +} + +.hover\:bg-purple-50\/55:hover { + background-color: rgb(250 245 255 / 0.55); +} + +.hover\:bg-purple-50\/60:hover { + background-color: rgb(250 245 255 / 0.6); +} + +.hover\:bg-purple-50\/65:hover { + background-color: rgb(250 245 255 / 0.65); +} + +.hover\:bg-purple-50\/70:hover { + background-color: rgb(250 245 255 / 0.7); +} + +.hover\:bg-purple-50\/75:hover { + background-color: rgb(250 245 255 / 0.75); +} + +.hover\:bg-purple-50\/80:hover { + background-color: rgb(250 245 255 / 0.8); +} + +.hover\:bg-purple-50\/85:hover { + background-color: rgb(250 245 255 / 0.85); +} + +.hover\:bg-purple-50\/90:hover { + background-color: rgb(250 245 255 / 0.9); +} + +.hover\:bg-purple-50\/95:hover { + background-color: rgb(250 245 255 / 0.95); +} + +.hover\:bg-purple-500:hover { + --tw-bg-opacity: 1; + background-color: rgb(168 85 247 / var(--tw-bg-opacity)); +} + +.hover\:bg-purple-500\/0:hover { + background-color: rgb(168 85 247 / 0); +} + +.hover\:bg-purple-500\/10:hover { + background-color: rgb(168 85 247 / 0.1); +} + +.hover\:bg-purple-500\/100:hover { + background-color: rgb(168 85 247 / 1); +} + +.hover\:bg-purple-500\/15:hover { + background-color: rgb(168 85 247 / 0.15); +} + +.hover\:bg-purple-500\/20:hover { + background-color: rgb(168 85 247 / 0.2); +} + +.hover\:bg-purple-500\/25:hover { + background-color: rgb(168 85 247 / 0.25); +} + +.hover\:bg-purple-500\/30:hover { + background-color: rgb(168 85 247 / 0.3); +} + +.hover\:bg-purple-500\/35:hover { + background-color: rgb(168 85 247 / 0.35); +} + +.hover\:bg-purple-500\/40:hover { + background-color: rgb(168 85 247 / 0.4); +} + +.hover\:bg-purple-500\/45:hover { + background-color: rgb(168 85 247 / 0.45); +} + +.hover\:bg-purple-500\/5:hover { + background-color: rgb(168 85 247 / 0.05); +} + +.hover\:bg-purple-500\/50:hover { + background-color: rgb(168 85 247 / 0.5); +} + +.hover\:bg-purple-500\/55:hover { + background-color: rgb(168 85 247 / 0.55); +} + +.hover\:bg-purple-500\/60:hover { + background-color: rgb(168 85 247 / 0.6); +} + +.hover\:bg-purple-500\/65:hover { + background-color: rgb(168 85 247 / 0.65); +} + +.hover\:bg-purple-500\/70:hover { + background-color: rgb(168 85 247 / 0.7); +} + +.hover\:bg-purple-500\/75:hover { + background-color: rgb(168 85 247 / 0.75); +} + +.hover\:bg-purple-500\/80:hover { + background-color: rgb(168 85 247 / 0.8); +} + +.hover\:bg-purple-500\/85:hover { + background-color: rgb(168 85 247 / 0.85); +} + +.hover\:bg-purple-500\/90:hover { + background-color: rgb(168 85 247 / 0.9); +} + +.hover\:bg-purple-500\/95:hover { + background-color: rgb(168 85 247 / 0.95); +} + +.hover\:bg-purple-800:hover { + --tw-bg-opacity: 1; + background-color: rgb(107 33 168 / var(--tw-bg-opacity)); +} + +.hover\:bg-purple-800\/0:hover { + background-color: rgb(107 33 168 / 0); +} + +.hover\:bg-purple-800\/10:hover { + background-color: rgb(107 33 168 / 0.1); +} + +.hover\:bg-purple-800\/100:hover { + background-color: rgb(107 33 168 / 1); +} + +.hover\:bg-purple-800\/15:hover { + background-color: rgb(107 33 168 / 0.15); +} + +.hover\:bg-purple-800\/20:hover { + background-color: rgb(107 33 168 / 0.2); +} + +.hover\:bg-purple-800\/25:hover { + background-color: rgb(107 33 168 / 0.25); +} + +.hover\:bg-purple-800\/30:hover { + background-color: rgb(107 33 168 / 0.3); +} + +.hover\:bg-purple-800\/35:hover { + background-color: rgb(107 33 168 / 0.35); +} + +.hover\:bg-purple-800\/40:hover { + background-color: rgb(107 33 168 / 0.4); +} + +.hover\:bg-purple-800\/45:hover { + background-color: rgb(107 33 168 / 0.45); +} + +.hover\:bg-purple-800\/5:hover { + background-color: rgb(107 33 168 / 0.05); +} + +.hover\:bg-purple-800\/50:hover { + background-color: rgb(107 33 168 / 0.5); +} + +.hover\:bg-purple-800\/55:hover { + background-color: rgb(107 33 168 / 0.55); +} + +.hover\:bg-purple-800\/60:hover { + background-color: rgb(107 33 168 / 0.6); +} + +.hover\:bg-purple-800\/65:hover { + background-color: rgb(107 33 168 / 0.65); +} + +.hover\:bg-purple-800\/70:hover { + background-color: rgb(107 33 168 / 0.7); +} + +.hover\:bg-purple-800\/75:hover { + background-color: rgb(107 33 168 / 0.75); +} + +.hover\:bg-purple-800\/80:hover { + background-color: rgb(107 33 168 / 0.8); +} + +.hover\:bg-purple-800\/85:hover { + background-color: rgb(107 33 168 / 0.85); +} + +.hover\:bg-purple-800\/90:hover { + background-color: rgb(107 33 168 / 0.9); +} + +.hover\:bg-purple-800\/95:hover { + background-color: rgb(107 33 168 / 0.95); +} + +.hover\:bg-purple-900:hover { + --tw-bg-opacity: 1; + background-color: rgb(88 28 135 / var(--tw-bg-opacity)); +} + +.hover\:bg-purple-900\/0:hover { + background-color: rgb(88 28 135 / 0); +} + +.hover\:bg-purple-900\/10:hover { + background-color: rgb(88 28 135 / 0.1); +} + +.hover\:bg-purple-900\/100:hover { + background-color: rgb(88 28 135 / 1); +} + +.hover\:bg-purple-900\/15:hover { + background-color: rgb(88 28 135 / 0.15); +} + +.hover\:bg-purple-900\/20:hover { + background-color: rgb(88 28 135 / 0.2); +} + +.hover\:bg-purple-900\/25:hover { + background-color: rgb(88 28 135 / 0.25); +} + +.hover\:bg-purple-900\/30:hover { + background-color: rgb(88 28 135 / 0.3); +} + +.hover\:bg-purple-900\/35:hover { + background-color: rgb(88 28 135 / 0.35); +} + +.hover\:bg-purple-900\/40:hover { + background-color: rgb(88 28 135 / 0.4); +} + +.hover\:bg-purple-900\/45:hover { + background-color: rgb(88 28 135 / 0.45); +} + +.hover\:bg-purple-900\/5:hover { + background-color: rgb(88 28 135 / 0.05); +} + +.hover\:bg-purple-900\/50:hover { + background-color: rgb(88 28 135 / 0.5); +} + +.hover\:bg-purple-900\/55:hover { + background-color: rgb(88 28 135 / 0.55); +} + +.hover\:bg-purple-900\/60:hover { + background-color: rgb(88 28 135 / 0.6); +} + +.hover\:bg-purple-900\/65:hover { + background-color: rgb(88 28 135 / 0.65); +} + +.hover\:bg-purple-900\/70:hover { + background-color: rgb(88 28 135 / 0.7); +} + +.hover\:bg-purple-900\/75:hover { + background-color: rgb(88 28 135 / 0.75); +} + +.hover\:bg-purple-900\/80:hover { + background-color: rgb(88 28 135 / 0.8); +} + +.hover\:bg-purple-900\/85:hover { + background-color: rgb(88 28 135 / 0.85); +} + +.hover\:bg-purple-900\/90:hover { + background-color: rgb(88 28 135 / 0.9); +} + +.hover\:bg-purple-900\/95:hover { + background-color: rgb(88 28 135 / 0.95); +} + .hover\:bg-red-100:hover { --tw-bg-opacity: 1; background-color: rgb(254 226 226 / var(--tw-bg-opacity)); @@ -2291,6 +9711,446 @@ h1, h2, h3, h4, h5, h6, h1 a, h2 a, h3 a, h4 a, h5 a, h6 a { background-color: rgb(254 249 195 / var(--tw-bg-opacity)); } +.hover\:bg-yellow-100\/0:hover { + background-color: rgb(254 249 195 / 0); +} + +.hover\:bg-yellow-100\/10:hover { + background-color: rgb(254 249 195 / 0.1); +} + +.hover\:bg-yellow-100\/100:hover { + background-color: rgb(254 249 195 / 1); +} + +.hover\:bg-yellow-100\/15:hover { + background-color: rgb(254 249 195 / 0.15); +} + +.hover\:bg-yellow-100\/20:hover { + background-color: rgb(254 249 195 / 0.2); +} + +.hover\:bg-yellow-100\/25:hover { + background-color: rgb(254 249 195 / 0.25); +} + +.hover\:bg-yellow-100\/30:hover { + background-color: rgb(254 249 195 / 0.3); +} + +.hover\:bg-yellow-100\/35:hover { + background-color: rgb(254 249 195 / 0.35); +} + +.hover\:bg-yellow-100\/40:hover { + background-color: rgb(254 249 195 / 0.4); +} + +.hover\:bg-yellow-100\/45:hover { + background-color: rgb(254 249 195 / 0.45); +} + +.hover\:bg-yellow-100\/5:hover { + background-color: rgb(254 249 195 / 0.05); +} + +.hover\:bg-yellow-100\/50:hover { + background-color: rgb(254 249 195 / 0.5); +} + +.hover\:bg-yellow-100\/55:hover { + background-color: rgb(254 249 195 / 0.55); +} + +.hover\:bg-yellow-100\/60:hover { + background-color: rgb(254 249 195 / 0.6); +} + +.hover\:bg-yellow-100\/65:hover { + background-color: rgb(254 249 195 / 0.65); +} + +.hover\:bg-yellow-100\/70:hover { + background-color: rgb(254 249 195 / 0.7); +} + +.hover\:bg-yellow-100\/75:hover { + background-color: rgb(254 249 195 / 0.75); +} + +.hover\:bg-yellow-100\/80:hover { + background-color: rgb(254 249 195 / 0.8); +} + +.hover\:bg-yellow-100\/85:hover { + background-color: rgb(254 249 195 / 0.85); +} + +.hover\:bg-yellow-100\/90:hover { + background-color: rgb(254 249 195 / 0.9); +} + +.hover\:bg-yellow-100\/95:hover { + background-color: rgb(254 249 195 / 0.95); +} + +.hover\:bg-yellow-50:hover { + --tw-bg-opacity: 1; + background-color: rgb(254 252 232 / var(--tw-bg-opacity)); +} + +.hover\:bg-yellow-50\/0:hover { + background-color: rgb(254 252 232 / 0); +} + +.hover\:bg-yellow-50\/10:hover { + background-color: rgb(254 252 232 / 0.1); +} + +.hover\:bg-yellow-50\/100:hover { + background-color: rgb(254 252 232 / 1); +} + +.hover\:bg-yellow-50\/15:hover { + background-color: rgb(254 252 232 / 0.15); +} + +.hover\:bg-yellow-50\/20:hover { + background-color: rgb(254 252 232 / 0.2); +} + +.hover\:bg-yellow-50\/25:hover { + background-color: rgb(254 252 232 / 0.25); +} + +.hover\:bg-yellow-50\/30:hover { + background-color: rgb(254 252 232 / 0.3); +} + +.hover\:bg-yellow-50\/35:hover { + background-color: rgb(254 252 232 / 0.35); +} + +.hover\:bg-yellow-50\/40:hover { + background-color: rgb(254 252 232 / 0.4); +} + +.hover\:bg-yellow-50\/45:hover { + background-color: rgb(254 252 232 / 0.45); +} + +.hover\:bg-yellow-50\/5:hover { + background-color: rgb(254 252 232 / 0.05); +} + +.hover\:bg-yellow-50\/50:hover { + background-color: rgb(254 252 232 / 0.5); +} + +.hover\:bg-yellow-50\/55:hover { + background-color: rgb(254 252 232 / 0.55); +} + +.hover\:bg-yellow-50\/60:hover { + background-color: rgb(254 252 232 / 0.6); +} + +.hover\:bg-yellow-50\/65:hover { + background-color: rgb(254 252 232 / 0.65); +} + +.hover\:bg-yellow-50\/70:hover { + background-color: rgb(254 252 232 / 0.7); +} + +.hover\:bg-yellow-50\/75:hover { + background-color: rgb(254 252 232 / 0.75); +} + +.hover\:bg-yellow-50\/80:hover { + background-color: rgb(254 252 232 / 0.8); +} + +.hover\:bg-yellow-50\/85:hover { + background-color: rgb(254 252 232 / 0.85); +} + +.hover\:bg-yellow-50\/90:hover { + background-color: rgb(254 252 232 / 0.9); +} + +.hover\:bg-yellow-50\/95:hover { + background-color: rgb(254 252 232 / 0.95); +} + +.hover\:bg-yellow-500:hover { + --tw-bg-opacity: 1; + background-color: rgb(234 179 8 / var(--tw-bg-opacity)); +} + +.hover\:bg-yellow-500\/0:hover { + background-color: rgb(234 179 8 / 0); +} + +.hover\:bg-yellow-500\/10:hover { + background-color: rgb(234 179 8 / 0.1); +} + +.hover\:bg-yellow-500\/100:hover { + background-color: rgb(234 179 8 / 1); +} + +.hover\:bg-yellow-500\/15:hover { + background-color: rgb(234 179 8 / 0.15); +} + +.hover\:bg-yellow-500\/20:hover { + background-color: rgb(234 179 8 / 0.2); +} + +.hover\:bg-yellow-500\/25:hover { + background-color: rgb(234 179 8 / 0.25); +} + +.hover\:bg-yellow-500\/30:hover { + background-color: rgb(234 179 8 / 0.3); +} + +.hover\:bg-yellow-500\/35:hover { + background-color: rgb(234 179 8 / 0.35); +} + +.hover\:bg-yellow-500\/40:hover { + background-color: rgb(234 179 8 / 0.4); +} + +.hover\:bg-yellow-500\/45:hover { + background-color: rgb(234 179 8 / 0.45); +} + +.hover\:bg-yellow-500\/5:hover { + background-color: rgb(234 179 8 / 0.05); +} + +.hover\:bg-yellow-500\/50:hover { + background-color: rgb(234 179 8 / 0.5); +} + +.hover\:bg-yellow-500\/55:hover { + background-color: rgb(234 179 8 / 0.55); +} + +.hover\:bg-yellow-500\/60:hover { + background-color: rgb(234 179 8 / 0.6); +} + +.hover\:bg-yellow-500\/65:hover { + background-color: rgb(234 179 8 / 0.65); +} + +.hover\:bg-yellow-500\/70:hover { + background-color: rgb(234 179 8 / 0.7); +} + +.hover\:bg-yellow-500\/75:hover { + background-color: rgb(234 179 8 / 0.75); +} + +.hover\:bg-yellow-500\/80:hover { + background-color: rgb(234 179 8 / 0.8); +} + +.hover\:bg-yellow-500\/85:hover { + background-color: rgb(234 179 8 / 0.85); +} + +.hover\:bg-yellow-500\/90:hover { + background-color: rgb(234 179 8 / 0.9); +} + +.hover\:bg-yellow-500\/95:hover { + background-color: rgb(234 179 8 / 0.95); +} + +.hover\:bg-yellow-800:hover { + --tw-bg-opacity: 1; + background-color: rgb(133 77 14 / var(--tw-bg-opacity)); +} + +.hover\:bg-yellow-800\/0:hover { + background-color: rgb(133 77 14 / 0); +} + +.hover\:bg-yellow-800\/10:hover { + background-color: rgb(133 77 14 / 0.1); +} + +.hover\:bg-yellow-800\/100:hover { + background-color: rgb(133 77 14 / 1); +} + +.hover\:bg-yellow-800\/15:hover { + background-color: rgb(133 77 14 / 0.15); +} + +.hover\:bg-yellow-800\/20:hover { + background-color: rgb(133 77 14 / 0.2); +} + +.hover\:bg-yellow-800\/25:hover { + background-color: rgb(133 77 14 / 0.25); +} + +.hover\:bg-yellow-800\/30:hover { + background-color: rgb(133 77 14 / 0.3); +} + +.hover\:bg-yellow-800\/35:hover { + background-color: rgb(133 77 14 / 0.35); +} + +.hover\:bg-yellow-800\/40:hover { + background-color: rgb(133 77 14 / 0.4); +} + +.hover\:bg-yellow-800\/45:hover { + background-color: rgb(133 77 14 / 0.45); +} + +.hover\:bg-yellow-800\/5:hover { + background-color: rgb(133 77 14 / 0.05); +} + +.hover\:bg-yellow-800\/50:hover { + background-color: rgb(133 77 14 / 0.5); +} + +.hover\:bg-yellow-800\/55:hover { + background-color: rgb(133 77 14 / 0.55); +} + +.hover\:bg-yellow-800\/60:hover { + background-color: rgb(133 77 14 / 0.6); +} + +.hover\:bg-yellow-800\/65:hover { + background-color: rgb(133 77 14 / 0.65); +} + +.hover\:bg-yellow-800\/70:hover { + background-color: rgb(133 77 14 / 0.7); +} + +.hover\:bg-yellow-800\/75:hover { + background-color: rgb(133 77 14 / 0.75); +} + +.hover\:bg-yellow-800\/80:hover { + background-color: rgb(133 77 14 / 0.8); +} + +.hover\:bg-yellow-800\/85:hover { + background-color: rgb(133 77 14 / 0.85); +} + +.hover\:bg-yellow-800\/90:hover { + background-color: rgb(133 77 14 / 0.9); +} + +.hover\:bg-yellow-800\/95:hover { + background-color: rgb(133 77 14 / 0.95); +} + +.hover\:bg-yellow-900:hover { + --tw-bg-opacity: 1; + background-color: rgb(113 63 18 / var(--tw-bg-opacity)); +} + +.hover\:bg-yellow-900\/0:hover { + background-color: rgb(113 63 18 / 0); +} + +.hover\:bg-yellow-900\/10:hover { + background-color: rgb(113 63 18 / 0.1); +} + +.hover\:bg-yellow-900\/100:hover { + background-color: rgb(113 63 18 / 1); +} + +.hover\:bg-yellow-900\/15:hover { + background-color: rgb(113 63 18 / 0.15); +} + +.hover\:bg-yellow-900\/20:hover { + background-color: rgb(113 63 18 / 0.2); +} + +.hover\:bg-yellow-900\/25:hover { + background-color: rgb(113 63 18 / 0.25); +} + +.hover\:bg-yellow-900\/30:hover { + background-color: rgb(113 63 18 / 0.3); +} + +.hover\:bg-yellow-900\/35:hover { + background-color: rgb(113 63 18 / 0.35); +} + +.hover\:bg-yellow-900\/40:hover { + background-color: rgb(113 63 18 / 0.4); +} + +.hover\:bg-yellow-900\/45:hover { + background-color: rgb(113 63 18 / 0.45); +} + +.hover\:bg-yellow-900\/5:hover { + background-color: rgb(113 63 18 / 0.05); +} + +.hover\:bg-yellow-900\/50:hover { + background-color: rgb(113 63 18 / 0.5); +} + +.hover\:bg-yellow-900\/55:hover { + background-color: rgb(113 63 18 / 0.55); +} + +.hover\:bg-yellow-900\/60:hover { + background-color: rgb(113 63 18 / 0.6); +} + +.hover\:bg-yellow-900\/65:hover { + background-color: rgb(113 63 18 / 0.65); +} + +.hover\:bg-yellow-900\/70:hover { + background-color: rgb(113 63 18 / 0.7); +} + +.hover\:bg-yellow-900\/75:hover { + background-color: rgb(113 63 18 / 0.75); +} + +.hover\:bg-yellow-900\/80:hover { + background-color: rgb(113 63 18 / 0.8); +} + +.hover\:bg-yellow-900\/85:hover { + background-color: rgb(113 63 18 / 0.85); +} + +.hover\:bg-yellow-900\/90:hover { + background-color: rgb(113 63 18 / 0.9); +} + +.hover\:bg-yellow-900\/95:hover { + background-color: rgb(113 63 18 / 0.95); +} + .hover\:fill-blue-400:hover { fill: #60a5fa; } @@ -2307,11 +10167,100 @@ h1, h2, h3, h4, h5, h6, h1 a, h2 a, h3 a, h4 a, h5 a, h6 a { fill: #c084fc; } +.hover\:text-amber-600:hover { + --tw-text-opacity: 1; + color: rgb(217 119 6 / var(--tw-text-opacity)); +} + .hover\:text-blue-400:hover { --tw-text-opacity: 1; color: rgb(96 165 250 / var(--tw-text-opacity)); } +.hover\:text-blue-400\/0:hover { + color: rgb(96 165 250 / 0); +} + +.hover\:text-blue-400\/10:hover { + color: rgb(96 165 250 / 0.1); +} + +.hover\:text-blue-400\/100:hover { + color: rgb(96 165 250 / 1); +} + +.hover\:text-blue-400\/15:hover { + color: rgb(96 165 250 / 0.15); +} + +.hover\:text-blue-400\/20:hover { + color: rgb(96 165 250 / 0.2); +} + +.hover\:text-blue-400\/25:hover { + color: rgb(96 165 250 / 0.25); +} + +.hover\:text-blue-400\/30:hover { + color: rgb(96 165 250 / 0.3); +} + +.hover\:text-blue-400\/35:hover { + color: rgb(96 165 250 / 0.35); +} + +.hover\:text-blue-400\/40:hover { + color: rgb(96 165 250 / 0.4); +} + +.hover\:text-blue-400\/45:hover { + color: rgb(96 165 250 / 0.45); +} + +.hover\:text-blue-400\/5:hover { + color: rgb(96 165 250 / 0.05); +} + +.hover\:text-blue-400\/50:hover { + color: rgb(96 165 250 / 0.5); +} + +.hover\:text-blue-400\/55:hover { + color: rgb(96 165 250 / 0.55); +} + +.hover\:text-blue-400\/60:hover { + color: rgb(96 165 250 / 0.6); +} + +.hover\:text-blue-400\/65:hover { + color: rgb(96 165 250 / 0.65); +} + +.hover\:text-blue-400\/70:hover { + color: rgb(96 165 250 / 0.7); +} + +.hover\:text-blue-400\/75:hover { + color: rgb(96 165 250 / 0.75); +} + +.hover\:text-blue-400\/80:hover { + color: rgb(96 165 250 / 0.8); +} + +.hover\:text-blue-400\/85:hover { + color: rgb(96 165 250 / 0.85); +} + +.hover\:text-blue-400\/90:hover { + color: rgb(96 165 250 / 0.9); +} + +.hover\:text-blue-400\/95:hover { + color: rgb(96 165 250 / 0.95); +} + .hover\:text-blue-600:hover { --tw-text-opacity: 1; color: rgb(37 99 235 / var(--tw-text-opacity)); @@ -2327,6 +10276,90 @@ h1, h2, h3, h4, h5, h6, h1 a, h2 a, h3 a, h4 a, h5 a, h6 a { color: rgb(52 211 153 / var(--tw-text-opacity)); } +.hover\:text-emerald-400\/0:hover { + color: rgb(52 211 153 / 0); +} + +.hover\:text-emerald-400\/10:hover { + color: rgb(52 211 153 / 0.1); +} + +.hover\:text-emerald-400\/100:hover { + color: rgb(52 211 153 / 1); +} + +.hover\:text-emerald-400\/15:hover { + color: rgb(52 211 153 / 0.15); +} + +.hover\:text-emerald-400\/20:hover { + color: rgb(52 211 153 / 0.2); +} + +.hover\:text-emerald-400\/25:hover { + color: rgb(52 211 153 / 0.25); +} + +.hover\:text-emerald-400\/30:hover { + color: rgb(52 211 153 / 0.3); +} + +.hover\:text-emerald-400\/35:hover { + color: rgb(52 211 153 / 0.35); +} + +.hover\:text-emerald-400\/40:hover { + color: rgb(52 211 153 / 0.4); +} + +.hover\:text-emerald-400\/45:hover { + color: rgb(52 211 153 / 0.45); +} + +.hover\:text-emerald-400\/5:hover { + color: rgb(52 211 153 / 0.05); +} + +.hover\:text-emerald-400\/50:hover { + color: rgb(52 211 153 / 0.5); +} + +.hover\:text-emerald-400\/55:hover { + color: rgb(52 211 153 / 0.55); +} + +.hover\:text-emerald-400\/60:hover { + color: rgb(52 211 153 / 0.6); +} + +.hover\:text-emerald-400\/65:hover { + color: rgb(52 211 153 / 0.65); +} + +.hover\:text-emerald-400\/70:hover { + color: rgb(52 211 153 / 0.7); +} + +.hover\:text-emerald-400\/75:hover { + color: rgb(52 211 153 / 0.75); +} + +.hover\:text-emerald-400\/80:hover { + color: rgb(52 211 153 / 0.8); +} + +.hover\:text-emerald-400\/85:hover { + color: rgb(52 211 153 / 0.85); +} + +.hover\:text-emerald-400\/90:hover { + color: rgb(52 211 153 / 0.9); +} + +.hover\:text-emerald-400\/95:hover { + color: rgb(52 211 153 / 0.95); +} + .hover\:text-gray-400:hover { --tw-text-opacity: 1; color: rgb(156 163 175 / var(--tw-text-opacity)); @@ -2337,26 +10370,461 @@ h1, h2, h3, h4, h5, h6, h1 a, h2 a, h3 a, h4 a, h5 a, h6 a { color: rgb(75 85 99 / var(--tw-text-opacity)); } +.hover\:text-green-400:hover { + --tw-text-opacity: 1; + color: rgb(74 222 128 / var(--tw-text-opacity)); +} + +.hover\:text-green-400\/0:hover { + color: rgb(74 222 128 / 0); +} + +.hover\:text-green-400\/10:hover { + color: rgb(74 222 128 / 0.1); +} + +.hover\:text-green-400\/100:hover { + color: rgb(74 222 128 / 1); +} + +.hover\:text-green-400\/15:hover { + color: rgb(74 222 128 / 0.15); +} + +.hover\:text-green-400\/20:hover { + color: rgb(74 222 128 / 0.2); +} + +.hover\:text-green-400\/25:hover { + color: rgb(74 222 128 / 0.25); +} + +.hover\:text-green-400\/30:hover { + color: rgb(74 222 128 / 0.3); +} + +.hover\:text-green-400\/35:hover { + color: rgb(74 222 128 / 0.35); +} + +.hover\:text-green-400\/40:hover { + color: rgb(74 222 128 / 0.4); +} + +.hover\:text-green-400\/45:hover { + color: rgb(74 222 128 / 0.45); +} + +.hover\:text-green-400\/5:hover { + color: rgb(74 222 128 / 0.05); +} + +.hover\:text-green-400\/50:hover { + color: rgb(74 222 128 / 0.5); +} + +.hover\:text-green-400\/55:hover { + color: rgb(74 222 128 / 0.55); +} + +.hover\:text-green-400\/60:hover { + color: rgb(74 222 128 / 0.6); +} + +.hover\:text-green-400\/65:hover { + color: rgb(74 222 128 / 0.65); +} + +.hover\:text-green-400\/70:hover { + color: rgb(74 222 128 / 0.7); +} + +.hover\:text-green-400\/75:hover { + color: rgb(74 222 128 / 0.75); +} + +.hover\:text-green-400\/80:hover { + color: rgb(74 222 128 / 0.8); +} + +.hover\:text-green-400\/85:hover { + color: rgb(74 222 128 / 0.85); +} + +.hover\:text-green-400\/90:hover { + color: rgb(74 222 128 / 0.9); +} + +.hover\:text-green-400\/95:hover { + color: rgb(74 222 128 / 0.95); +} + .hover\:text-indigo-200:hover { --tw-text-opacity: 1; color: rgb(199 210 254 / var(--tw-text-opacity)); } +.hover\:text-indigo-400:hover { + --tw-text-opacity: 1; + color: rgb(129 140 248 / var(--tw-text-opacity)); +} + +.hover\:text-indigo-400\/0:hover { + color: rgb(129 140 248 / 0); +} + +.hover\:text-indigo-400\/10:hover { + color: rgb(129 140 248 / 0.1); +} + +.hover\:text-indigo-400\/100:hover { + color: rgb(129 140 248 / 1); +} + +.hover\:text-indigo-400\/15:hover { + color: rgb(129 140 248 / 0.15); +} + +.hover\:text-indigo-400\/20:hover { + color: rgb(129 140 248 / 0.2); +} + +.hover\:text-indigo-400\/25:hover { + color: rgb(129 140 248 / 0.25); +} + +.hover\:text-indigo-400\/30:hover { + color: rgb(129 140 248 / 0.3); +} + +.hover\:text-indigo-400\/35:hover { + color: rgb(129 140 248 / 0.35); +} + +.hover\:text-indigo-400\/40:hover { + color: rgb(129 140 248 / 0.4); +} + +.hover\:text-indigo-400\/45:hover { + color: rgb(129 140 248 / 0.45); +} + +.hover\:text-indigo-400\/5:hover { + color: rgb(129 140 248 / 0.05); +} + +.hover\:text-indigo-400\/50:hover { + color: rgb(129 140 248 / 0.5); +} + +.hover\:text-indigo-400\/55:hover { + color: rgb(129 140 248 / 0.55); +} + +.hover\:text-indigo-400\/60:hover { + color: rgb(129 140 248 / 0.6); +} + +.hover\:text-indigo-400\/65:hover { + color: rgb(129 140 248 / 0.65); +} + +.hover\:text-indigo-400\/70:hover { + color: rgb(129 140 248 / 0.7); +} + +.hover\:text-indigo-400\/75:hover { + color: rgb(129 140 248 / 0.75); +} + +.hover\:text-indigo-400\/80:hover { + color: rgb(129 140 248 / 0.8); +} + +.hover\:text-indigo-400\/85:hover { + color: rgb(129 140 248 / 0.85); +} + +.hover\:text-indigo-400\/90:hover { + color: rgb(129 140 248 / 0.9); +} + +.hover\:text-indigo-400\/95:hover { + color: rgb(129 140 248 / 0.95); +} + .hover\:text-orange-400:hover { --tw-text-opacity: 1; color: rgb(251 146 60 / var(--tw-text-opacity)); } +.hover\:text-orange-400\/0:hover { + color: rgb(251 146 60 / 0); +} + +.hover\:text-orange-400\/10:hover { + color: rgb(251 146 60 / 0.1); +} + +.hover\:text-orange-400\/100:hover { + color: rgb(251 146 60 / 1); +} + +.hover\:text-orange-400\/15:hover { + color: rgb(251 146 60 / 0.15); +} + +.hover\:text-orange-400\/20:hover { + color: rgb(251 146 60 / 0.2); +} + +.hover\:text-orange-400\/25:hover { + color: rgb(251 146 60 / 0.25); +} + +.hover\:text-orange-400\/30:hover { + color: rgb(251 146 60 / 0.3); +} + +.hover\:text-orange-400\/35:hover { + color: rgb(251 146 60 / 0.35); +} + +.hover\:text-orange-400\/40:hover { + color: rgb(251 146 60 / 0.4); +} + +.hover\:text-orange-400\/45:hover { + color: rgb(251 146 60 / 0.45); +} + +.hover\:text-orange-400\/5:hover { + color: rgb(251 146 60 / 0.05); +} + +.hover\:text-orange-400\/50:hover { + color: rgb(251 146 60 / 0.5); +} + +.hover\:text-orange-400\/55:hover { + color: rgb(251 146 60 / 0.55); +} + +.hover\:text-orange-400\/60:hover { + color: rgb(251 146 60 / 0.6); +} + +.hover\:text-orange-400\/65:hover { + color: rgb(251 146 60 / 0.65); +} + +.hover\:text-orange-400\/70:hover { + color: rgb(251 146 60 / 0.7); +} + +.hover\:text-orange-400\/75:hover { + color: rgb(251 146 60 / 0.75); +} + +.hover\:text-orange-400\/80:hover { + color: rgb(251 146 60 / 0.8); +} + +.hover\:text-orange-400\/85:hover { + color: rgb(251 146 60 / 0.85); +} + +.hover\:text-orange-400\/90:hover { + color: rgb(251 146 60 / 0.9); +} + +.hover\:text-orange-400\/95:hover { + color: rgb(251 146 60 / 0.95); +} + .hover\:text-pink-400:hover { --tw-text-opacity: 1; color: rgb(244 114 182 / var(--tw-text-opacity)); } +.hover\:text-pink-400\/0:hover { + color: rgb(244 114 182 / 0); +} + +.hover\:text-pink-400\/10:hover { + color: rgb(244 114 182 / 0.1); +} + +.hover\:text-pink-400\/100:hover { + color: rgb(244 114 182 / 1); +} + +.hover\:text-pink-400\/15:hover { + color: rgb(244 114 182 / 0.15); +} + +.hover\:text-pink-400\/20:hover { + color: rgb(244 114 182 / 0.2); +} + +.hover\:text-pink-400\/25:hover { + color: rgb(244 114 182 / 0.25); +} + +.hover\:text-pink-400\/30:hover { + color: rgb(244 114 182 / 0.3); +} + +.hover\:text-pink-400\/35:hover { + color: rgb(244 114 182 / 0.35); +} + +.hover\:text-pink-400\/40:hover { + color: rgb(244 114 182 / 0.4); +} + +.hover\:text-pink-400\/45:hover { + color: rgb(244 114 182 / 0.45); +} + +.hover\:text-pink-400\/5:hover { + color: rgb(244 114 182 / 0.05); +} + +.hover\:text-pink-400\/50:hover { + color: rgb(244 114 182 / 0.5); +} + +.hover\:text-pink-400\/55:hover { + color: rgb(244 114 182 / 0.55); +} + +.hover\:text-pink-400\/60:hover { + color: rgb(244 114 182 / 0.6); +} + +.hover\:text-pink-400\/65:hover { + color: rgb(244 114 182 / 0.65); +} + +.hover\:text-pink-400\/70:hover { + color: rgb(244 114 182 / 0.7); +} + +.hover\:text-pink-400\/75:hover { + color: rgb(244 114 182 / 0.75); +} + +.hover\:text-pink-400\/80:hover { + color: rgb(244 114 182 / 0.8); +} + +.hover\:text-pink-400\/85:hover { + color: rgb(244 114 182 / 0.85); +} + +.hover\:text-pink-400\/90:hover { + color: rgb(244 114 182 / 0.9); +} + +.hover\:text-pink-400\/95:hover { + color: rgb(244 114 182 / 0.95); +} + .hover\:text-pink-600:hover { --tw-text-opacity: 1; color: rgb(219 39 119 / var(--tw-text-opacity)); } +.hover\:text-purple-400:hover { + --tw-text-opacity: 1; + color: rgb(192 132 252 / var(--tw-text-opacity)); +} + +.hover\:text-purple-400\/0:hover { + color: rgb(192 132 252 / 0); +} + +.hover\:text-purple-400\/10:hover { + color: rgb(192 132 252 / 0.1); +} + +.hover\:text-purple-400\/100:hover { + color: rgb(192 132 252 / 1); +} + +.hover\:text-purple-400\/15:hover { + color: rgb(192 132 252 / 0.15); +} + +.hover\:text-purple-400\/20:hover { + color: rgb(192 132 252 / 0.2); +} + +.hover\:text-purple-400\/25:hover { + color: rgb(192 132 252 / 0.25); +} + +.hover\:text-purple-400\/30:hover { + color: rgb(192 132 252 / 0.3); +} + +.hover\:text-purple-400\/35:hover { + color: rgb(192 132 252 / 0.35); +} + +.hover\:text-purple-400\/40:hover { + color: rgb(192 132 252 / 0.4); +} + +.hover\:text-purple-400\/45:hover { + color: rgb(192 132 252 / 0.45); +} + +.hover\:text-purple-400\/5:hover { + color: rgb(192 132 252 / 0.05); +} + +.hover\:text-purple-400\/50:hover { + color: rgb(192 132 252 / 0.5); +} + +.hover\:text-purple-400\/55:hover { + color: rgb(192 132 252 / 0.55); +} + +.hover\:text-purple-400\/60:hover { + color: rgb(192 132 252 / 0.6); +} + +.hover\:text-purple-400\/65:hover { + color: rgb(192 132 252 / 0.65); +} + +.hover\:text-purple-400\/70:hover { + color: rgb(192 132 252 / 0.7); +} + +.hover\:text-purple-400\/75:hover { + color: rgb(192 132 252 / 0.75); +} + +.hover\:text-purple-400\/80:hover { + color: rgb(192 132 252 / 0.8); +} + +.hover\:text-purple-400\/85:hover { + color: rgb(192 132 252 / 0.85); +} + +.hover\:text-purple-400\/90:hover { + color: rgb(192 132 252 / 0.9); +} + +.hover\:text-purple-400\/95:hover { + color: rgb(192 132 252 / 0.95); +} + .hover\:text-red-400:hover { --tw-text-opacity: 1; color: rgb(248 113 113 / var(--tw-text-opacity)); @@ -2367,6 +10835,90 @@ h1, h2, h3, h4, h5, h6, h1 a, h2 a, h3 a, h4 a, h5 a, h6 a { color: rgb(250 204 21 / var(--tw-text-opacity)); } +.hover\:text-yellow-400\/0:hover { + color: rgb(250 204 21 / 0); +} + +.hover\:text-yellow-400\/10:hover { + color: rgb(250 204 21 / 0.1); +} + +.hover\:text-yellow-400\/100:hover { + color: rgb(250 204 21 / 1); +} + +.hover\:text-yellow-400\/15:hover { + color: rgb(250 204 21 / 0.15); +} + +.hover\:text-yellow-400\/20:hover { + color: rgb(250 204 21 / 0.2); +} + +.hover\:text-yellow-400\/25:hover { + color: rgb(250 204 21 / 0.25); +} + +.hover\:text-yellow-400\/30:hover { + color: rgb(250 204 21 / 0.3); +} + +.hover\:text-yellow-400\/35:hover { + color: rgb(250 204 21 / 0.35); +} + +.hover\:text-yellow-400\/40:hover { + color: rgb(250 204 21 / 0.4); +} + +.hover\:text-yellow-400\/45:hover { + color: rgb(250 204 21 / 0.45); +} + +.hover\:text-yellow-400\/5:hover { + color: rgb(250 204 21 / 0.05); +} + +.hover\:text-yellow-400\/50:hover { + color: rgb(250 204 21 / 0.5); +} + +.hover\:text-yellow-400\/55:hover { + color: rgb(250 204 21 / 0.55); +} + +.hover\:text-yellow-400\/60:hover { + color: rgb(250 204 21 / 0.6); +} + +.hover\:text-yellow-400\/65:hover { + color: rgb(250 204 21 / 0.65); +} + +.hover\:text-yellow-400\/70:hover { + color: rgb(250 204 21 / 0.7); +} + +.hover\:text-yellow-400\/75:hover { + color: rgb(250 204 21 / 0.75); +} + +.hover\:text-yellow-400\/80:hover { + color: rgb(250 204 21 / 0.8); +} + +.hover\:text-yellow-400\/85:hover { + color: rgb(250 204 21 / 0.85); +} + +.hover\:text-yellow-400\/90:hover { + color: rgb(250 204 21 / 0.9); +} + +.hover\:text-yellow-400\/95:hover { + color: rgb(250 204 21 / 0.95); +} + .hover\:underline:hover { text-decoration-line: underline; } @@ -2375,6 +10927,10 @@ h1, h2, h3, h4, h5, h6, h1 a, h2 a, h3 a, h4 a, h5 a, h6 a { text-decoration-style: wavy; } +.hover\:opacity-100:hover { + opacity: 1; +} + .hover\:opacity-80:hover { opacity: 0.8; } @@ -2384,15 +10940,6 @@ h1, h2, h3, h4, h5, h6, h1 a, h2 a, h3 a, h4 a, h5 a, h6 a { outline-offset: 2px; } -.group:hover .group-hover\:block { - display: block; -} - -.group:hover .group-hover\:bg-pink-400 { - --tw-bg-opacity: 1; - background-color: rgb(244 114 182 / var(--tw-bg-opacity)); -} - .prose-p\:m-1 :is(:where(p):not(:where([class~="not-prose"] *))) { margin: 0.25rem; } @@ -2413,16 +10960,16 @@ h1, h2, h3, h4, h5, h6, h1 a, h2 a, h3 a, h4 a, h5 a, h6 a { padding: 0.125rem; } -.prose-a\:text-blue-400 :is(:where(a):not(:where([class~="not-prose"] *))) { - --tw-text-opacity: 1; - color: rgb(96 165 250 / var(--tw-text-opacity)); -} - .prose-a\:text-blue-600 :is(:where(a):not(:where([class~="not-prose"] *))) { --tw-text-opacity: 1; color: rgb(37 99 235 / var(--tw-text-opacity)); } +.prose-a\:text-orange-700 :is(:where(a):not(:where([class~="not-prose"] *))) { + --tw-text-opacity: 1; + color: rgb(194 65 12 / var(--tw-text-opacity)); +} + .prose-a\:no-underline :is(:where(a):not(:where([class~="not-prose"] *))) { text-decoration-line: none; } @@ -2510,425 +11057,6 @@ h1, h2, h3, h4, h5, h6, h1 a, h2 a, h3 a, h4 a, h5 a, h6 a { border-radius: 0.25rem; } -@media (prefers-color-scheme: dark) { - .dark\:block { - display: block; - } - - .dark\:hidden { - display: none; - } - - .dark\:border-amber-400 { - --tw-border-opacity: 1; - border-color: rgb(251 191 36 / var(--tw-border-opacity)); - } - - .dark\:border-gray-600 { - --tw-border-opacity: 1; - border-color: rgb(75 85 99 / var(--tw-border-opacity)); - } - - .dark\:border-gray-800 { - --tw-border-opacity: 1; - border-color: rgb(31 41 55 / var(--tw-border-opacity)); - } - - .dark\:border-indigo-300 { - --tw-border-opacity: 1; - border-color: rgb(165 180 252 / var(--tw-border-opacity)); - } - - .dark\:border-slate-800 { - --tw-border-opacity: 1; - border-color: rgb(30 41 59 / var(--tw-border-opacity)); - } - - .dark\:bg-amber-400 { - --tw-bg-opacity: 1; - background-color: rgb(251 191 36 / var(--tw-bg-opacity)); - } - - .dark\:bg-black { - --tw-bg-opacity: 1; - background-color: rgb(0 0 0 / var(--tw-bg-opacity)); - } - - .dark\:bg-blue-600 { - --tw-bg-opacity: 1; - background-color: rgb(37 99 235 / var(--tw-bg-opacity)); - } - - .dark\:bg-blue-900 { - --tw-bg-opacity: 1; - background-color: rgb(30 58 138 / var(--tw-bg-opacity)); - } - - .dark\:bg-blue-900\/60 { - background-color: rgb(30 58 138 / 0.6); - } - - .dark\:bg-emerald-900 { - --tw-bg-opacity: 1; - background-color: rgb(6 78 59 / var(--tw-bg-opacity)); - } - - .dark\:bg-fuchsia-800 { - --tw-bg-opacity: 1; - background-color: rgb(134 25 143 / var(--tw-bg-opacity)); - } - - .dark\:bg-fuchsia-900 { - --tw-bg-opacity: 1; - background-color: rgb(112 26 117 / var(--tw-bg-opacity)); - } - - .dark\:bg-gray-900 { - --tw-bg-opacity: 1; - background-color: rgb(17 24 39 / var(--tw-bg-opacity)); - } - - .dark\:bg-indigo-200 { - --tw-bg-opacity: 1; - background-color: rgb(199 210 254 / var(--tw-bg-opacity)); - } - - .dark\:bg-indigo-400 { - --tw-bg-opacity: 1; - background-color: rgb(129 140 248 / var(--tw-bg-opacity)); - } - - .dark\:bg-indigo-800 { - --tw-bg-opacity: 1; - background-color: rgb(55 48 163 / var(--tw-bg-opacity)); - } - - .dark\:bg-indigo-950 { - --tw-bg-opacity: 1; - background-color: rgb(30 27 75 / var(--tw-bg-opacity)); - } - - .dark\:bg-orange-600 { - --tw-bg-opacity: 1; - background-color: rgb(234 88 12 / var(--tw-bg-opacity)); - } - - .dark\:bg-pink-600 { - --tw-bg-opacity: 1; - background-color: rgb(219 39 119 / var(--tw-bg-opacity)); - } - - .dark\:bg-pink-900 { - --tw-bg-opacity: 1; - background-color: rgb(131 24 67 / var(--tw-bg-opacity)); - } - - .dark\:bg-slate-900 { - --tw-bg-opacity: 1; - background-color: rgb(15 23 42 / var(--tw-bg-opacity)); - } - - .dark\:bg-yellow-900 { - --tw-bg-opacity: 1; - background-color: rgb(113 63 18 / var(--tw-bg-opacity)); - } - - .dark\:text-amber-500 { - --tw-text-opacity: 1; - color: rgb(245 158 11 / var(--tw-text-opacity)); - } - - .dark\:text-blue-200 { - --tw-text-opacity: 1; - color: rgb(191 219 254 / var(--tw-text-opacity)); - } - - .dark\:text-blue-600 { - --tw-text-opacity: 1; - color: rgb(37 99 235 / var(--tw-text-opacity)); - } - - .dark\:text-blue-900 { - --tw-text-opacity: 1; - color: rgb(30 58 138 / var(--tw-text-opacity)); - } - - .dark\:text-emerald-400 { - --tw-text-opacity: 1; - color: rgb(52 211 153 / var(--tw-text-opacity)); - } - - .dark\:text-fuchsia-500 { - --tw-text-opacity: 1; - color: rgb(217 70 239 / var(--tw-text-opacity)); - } - - .dark\:text-gray-100 { - --tw-text-opacity: 1; - color: rgb(243 244 246 / var(--tw-text-opacity)); - } - - .dark\:text-gray-200 { - --tw-text-opacity: 1; - color: rgb(229 231 235 / var(--tw-text-opacity)); - } - - .dark\:text-gray-400 { - --tw-text-opacity: 1; - color: rgb(156 163 175 / var(--tw-text-opacity)); - } - - .dark\:text-gray-600 { - --tw-text-opacity: 1; - color: rgb(75 85 99 / var(--tw-text-opacity)); - } - - .dark\:text-indigo-200 { - --tw-text-opacity: 1; - color: rgb(199 210 254 / var(--tw-text-opacity)); - } - - .dark\:text-indigo-300 { - --tw-text-opacity: 1; - color: rgb(165 180 252 / var(--tw-text-opacity)); - } - - .dark\:text-indigo-400 { - --tw-text-opacity: 1; - color: rgb(129 140 248 / var(--tw-text-opacity)); - } - - .dark\:text-indigo-50 { - --tw-text-opacity: 1; - color: rgb(238 242 255 / var(--tw-text-opacity)); - } - - .dark\:text-indigo-600 { - --tw-text-opacity: 1; - color: rgb(79 70 229 / var(--tw-text-opacity)); - } - - .dark\:text-indigo-900 { - --tw-text-opacity: 1; - color: rgb(49 46 129 / var(--tw-text-opacity)); - } - - .dark\:text-pink-100 { - --tw-text-opacity: 1; - color: rgb(252 231 243 / var(--tw-text-opacity)); - } - - .dark\:text-pink-200 { - --tw-text-opacity: 1; - color: rgb(251 207 232 / var(--tw-text-opacity)); - } - - .dark\:text-pink-400 { - --tw-text-opacity: 1; - color: rgb(244 114 182 / var(--tw-text-opacity)); - } - - .dark\:text-red-400 { - --tw-text-opacity: 1; - color: rgb(248 113 113 / var(--tw-text-opacity)); - } - - .dark\:text-red-900 { - --tw-text-opacity: 1; - color: rgb(127 29 29 / var(--tw-text-opacity)); - } - - .dark\:text-slate-200 { - --tw-text-opacity: 1; - color: rgb(226 232 240 / var(--tw-text-opacity)); - } - - .dark\:text-white { - --tw-text-opacity: 1; - color: rgb(255 255 255 / var(--tw-text-opacity)); - } - - .dark\:text-yellow-400 { - --tw-text-opacity: 1; - color: rgb(250 204 21 / var(--tw-text-opacity)); - } - - .dark\:shadow-pink-200 { - --tw-shadow-color: #fbcfe8; - --tw-shadow: var(--tw-shadow-colored); - } - - .dark\:selection\:bg-amber-600 *::-moz-selection { - --tw-bg-opacity: 1; - background-color: rgb(217 119 6 / var(--tw-bg-opacity)); - } - - .dark\:selection\:bg-amber-600 *::selection { - --tw-bg-opacity: 1; - background-color: rgb(217 119 6 / var(--tw-bg-opacity)); - } - - .dark\:selection\:bg-blue-600 *::-moz-selection { - --tw-bg-opacity: 1; - background-color: rgb(37 99 235 / var(--tw-bg-opacity)); - } - - .dark\:selection\:bg-blue-600 *::selection { - --tw-bg-opacity: 1; - background-color: rgb(37 99 235 / var(--tw-bg-opacity)); - } - - .dark\:selection\:text-amber-400 *::-moz-selection { - --tw-text-opacity: 1; - color: rgb(251 191 36 / var(--tw-text-opacity)); - } - - .dark\:selection\:text-amber-400 *::selection { - --tw-text-opacity: 1; - color: rgb(251 191 36 / var(--tw-text-opacity)); - } - - .dark\:selection\:text-blue-100 *::-moz-selection { - --tw-text-opacity: 1; - color: rgb(219 234 254 / var(--tw-text-opacity)); - } - - .dark\:selection\:text-blue-100 *::selection { - --tw-text-opacity: 1; - color: rgb(219 234 254 / var(--tw-text-opacity)); - } - - .dark\:selection\:bg-amber-600::-moz-selection { - --tw-bg-opacity: 1; - background-color: rgb(217 119 6 / var(--tw-bg-opacity)); - } - - .dark\:selection\:bg-amber-600::selection { - --tw-bg-opacity: 1; - background-color: rgb(217 119 6 / var(--tw-bg-opacity)); - } - - .dark\:selection\:bg-blue-600::-moz-selection { - --tw-bg-opacity: 1; - background-color: rgb(37 99 235 / var(--tw-bg-opacity)); - } - - .dark\:selection\:bg-blue-600::selection { - --tw-bg-opacity: 1; - background-color: rgb(37 99 235 / var(--tw-bg-opacity)); - } - - .dark\:selection\:text-amber-400::-moz-selection { - --tw-text-opacity: 1; - color: rgb(251 191 36 / var(--tw-text-opacity)); - } - - .dark\:selection\:text-amber-400::selection { - --tw-text-opacity: 1; - color: rgb(251 191 36 / var(--tw-text-opacity)); - } - - .dark\:selection\:text-blue-100::-moz-selection { - --tw-text-opacity: 1; - color: rgb(219 234 254 / var(--tw-text-opacity)); - } - - .dark\:selection\:text-blue-100::selection { - --tw-text-opacity: 1; - color: rgb(219 234 254 / var(--tw-text-opacity)); - } - - .hover\:dark\:border-slate-900:hover { - --tw-border-opacity: 1; - border-color: rgb(15 23 42 / var(--tw-border-opacity)); - } - - .dark\:hover\:bg-emerald-800:hover { - --tw-bg-opacity: 1; - background-color: rgb(6 95 70 / var(--tw-bg-opacity)); - } - - .dark\:hover\:bg-fuchsia-700:hover { - --tw-bg-opacity: 1; - background-color: rgb(162 28 175 / var(--tw-bg-opacity)); - } - - .dark\:hover\:bg-orange-800:hover { - --tw-bg-opacity: 1; - background-color: rgb(154 52 18 / var(--tw-bg-opacity)); - } - - .dark\:hover\:bg-pink-800:hover { - --tw-bg-opacity: 1; - background-color: rgb(157 23 77 / var(--tw-bg-opacity)); - } - - .dark\:hover\:bg-red-200:hover { - --tw-bg-opacity: 1; - background-color: rgb(254 202 202 / var(--tw-bg-opacity)); - } - - .dark\:hover\:bg-slate-950:hover { - --tw-bg-opacity: 1; - background-color: rgb(2 6 23 / var(--tw-bg-opacity)); - } - - .dark\:hover\:bg-yellow-800:hover { - --tw-bg-opacity: 1; - background-color: rgb(133 77 14 / var(--tw-bg-opacity)); - } - - .hover\:dark\:bg-blue-800:hover { - --tw-bg-opacity: 1; - background-color: rgb(30 64 175 / var(--tw-bg-opacity)); - } - - .hover\:dark\:bg-orange-900:hover { - --tw-bg-opacity: 1; - background-color: rgb(124 45 18 / var(--tw-bg-opacity)); - } - - .hover\:dark\:bg-pink-900:hover { - --tw-bg-opacity: 1; - background-color: rgb(131 24 67 / var(--tw-bg-opacity)); - } - - .dark\:hover\:text-pink-100:hover { - --tw-text-opacity: 1; - color: rgb(252 231 243 / var(--tw-text-opacity)); - } - - .hover\:dark\:text-blue-100:hover { - --tw-text-opacity: 1; - color: rgb(219 234 254 / var(--tw-text-opacity)); - } - - .hover\:dark\:text-slate-600:hover { - --tw-text-opacity: 1; - color: rgb(71 85 105 / var(--tw-text-opacity)); - } - - .group:hover .dark\:group-hover\:bg-indigo-400 { - --tw-bg-opacity: 1; - background-color: rgb(129 140 248 / var(--tw-bg-opacity)); - } - - .dark\:prose-a\:text-blue-600 :is(:where(a):not(:where([class~="not-prose"] *))) { - --tw-text-opacity: 1; - color: rgb(37 99 235 / var(--tw-text-opacity)); - } - - .prose-a\:dark\:text-gray-100 :is(:where(a):not(:where([class~="not-prose"] *))) { - --tw-text-opacity: 1; - color: rgb(243 244 246 / var(--tw-text-opacity)); - } - - .prose-a\:dark\:text-indigo-300 :is(:where(a):not(:where([class~="not-prose"] *))) { - --tw-text-opacity: 1; - color: rgb(165 180 252 / var(--tw-text-opacity)); - } -} - @media (min-width: 640px) { .sm\:col-span-1 { grid-column: span 1 / span 1; @@ -2940,12 +11068,8 @@ h1, h2, h3, h4, h5, h6, h1 a, h2 a, h3 a, h4 a, h5 a, h6 a { } @media (min-width: 768px) { - .md\:col-span-13 { - grid-column: span 13 / span 13; - } - - .md\:col-span-3 { - grid-column: span 3 / span 3; + .md\:col-span-16 { + grid-column: span 16 / span 16; } .md\:mx-0 { @@ -2957,6 +11081,10 @@ h1, h2, h3, h4, h5, h6, h1 a, h2 a, h3 a, h4 a, h5 a, h6 a { margin-bottom: 3rem; } + .md\:mt-3 { + margin-top: 0.75rem; + } + .md\:block { display: block; } @@ -2981,8 +11109,8 @@ h1, h2, h3, h4, h5, h6, h1 a, h2 a, h3 a, h4 a, h5 a, h6 a { flex: 1 1 auto; } - .md\:grid-cols-16 { - grid-template-columns: repeat(16, minmax(0, 1fr)); + .md\:grid-cols-2 { + grid-template-columns: repeat(2, minmax(0, 1fr)); } .md\:pt-8 { @@ -2997,3 +11125,4648 @@ h1, h2, h3, h4, h5, h6, h1 a, h2 a, h3 a, h4 a, h5 a, h6 a { font-size: 1.25rem; } } + +:is(:where(.dark) .dark\:block) { + display: block; +} + +:is(:where(.dark) .dark\:hidden) { + display: none; +} + +:is(:where(.dark) .dark\:border-amber-400) { + --tw-border-opacity: 1; + border-color: rgb(251 191 36 / var(--tw-border-opacity)); +} + +:is(:where(.dark) .dark\:border-amber-600) { + --tw-border-opacity: 1; + border-color: rgb(217 119 6 / var(--tw-border-opacity)); +} + +:is(:where(.dark) .dark\:border-gray-600) { + --tw-border-opacity: 1; + border-color: rgb(75 85 99 / var(--tw-border-opacity)); +} + +:is(:where(.dark) .dark\:border-indigo-300) { + --tw-border-opacity: 1; + border-color: rgb(165 180 252 / var(--tw-border-opacity)); +} + +:is(:where(.dark) .dark\:border-slate-800) { + --tw-border-opacity: 1; + border-color: rgb(30 41 59 / var(--tw-border-opacity)); +} + +:is(:where(.dark) .dark\:bg-amber-400) { + --tw-bg-opacity: 1; + background-color: rgb(251 191 36 / var(--tw-bg-opacity)); +} + +:is(:where(.dark) .dark\:bg-amber-900) { + --tw-bg-opacity: 1; + background-color: rgb(120 53 15 / var(--tw-bg-opacity)); +} + +:is(:where(.dark) .dark\:bg-black) { + --tw-bg-opacity: 1; + background-color: rgb(0 0 0 / var(--tw-bg-opacity)); +} + +:is(:where(.dark) .dark\:bg-blue-100) { + --tw-bg-opacity: 1; + background-color: rgb(219 234 254 / var(--tw-bg-opacity)); +} + +:is(:where(.dark) .dark\:bg-blue-100\/0) { + background-color: rgb(219 234 254 / 0); +} + +:is(:where(.dark) .dark\:bg-blue-100\/10) { + background-color: rgb(219 234 254 / 0.1); +} + +:is(:where(.dark) .dark\:bg-blue-100\/100) { + background-color: rgb(219 234 254 / 1); +} + +:is(:where(.dark) .dark\:bg-blue-100\/15) { + background-color: rgb(219 234 254 / 0.15); +} + +:is(:where(.dark) .dark\:bg-blue-100\/20) { + background-color: rgb(219 234 254 / 0.2); +} + +:is(:where(.dark) .dark\:bg-blue-100\/25) { + background-color: rgb(219 234 254 / 0.25); +} + +:is(:where(.dark) .dark\:bg-blue-100\/30) { + background-color: rgb(219 234 254 / 0.3); +} + +:is(:where(.dark) .dark\:bg-blue-100\/35) { + background-color: rgb(219 234 254 / 0.35); +} + +:is(:where(.dark) .dark\:bg-blue-100\/40) { + background-color: rgb(219 234 254 / 0.4); +} + +:is(:where(.dark) .dark\:bg-blue-100\/45) { + background-color: rgb(219 234 254 / 0.45); +} + +:is(:where(.dark) .dark\:bg-blue-100\/5) { + background-color: rgb(219 234 254 / 0.05); +} + +:is(:where(.dark) .dark\:bg-blue-100\/50) { + background-color: rgb(219 234 254 / 0.5); +} + +:is(:where(.dark) .dark\:bg-blue-100\/55) { + background-color: rgb(219 234 254 / 0.55); +} + +:is(:where(.dark) .dark\:bg-blue-100\/60) { + background-color: rgb(219 234 254 / 0.6); +} + +:is(:where(.dark) .dark\:bg-blue-100\/65) { + background-color: rgb(219 234 254 / 0.65); +} + +:is(:where(.dark) .dark\:bg-blue-100\/70) { + background-color: rgb(219 234 254 / 0.7); +} + +:is(:where(.dark) .dark\:bg-blue-100\/75) { + background-color: rgb(219 234 254 / 0.75); +} + +:is(:where(.dark) .dark\:bg-blue-100\/80) { + background-color: rgb(219 234 254 / 0.8); +} + +:is(:where(.dark) .dark\:bg-blue-100\/85) { + background-color: rgb(219 234 254 / 0.85); +} + +:is(:where(.dark) .dark\:bg-blue-100\/90) { + background-color: rgb(219 234 254 / 0.9); +} + +:is(:where(.dark) .dark\:bg-blue-100\/95) { + background-color: rgb(219 234 254 / 0.95); +} + +:is(:where(.dark) .dark\:bg-blue-50) { + --tw-bg-opacity: 1; + background-color: rgb(239 246 255 / var(--tw-bg-opacity)); +} + +:is(:where(.dark) .dark\:bg-blue-50\/0) { + background-color: rgb(239 246 255 / 0); +} + +:is(:where(.dark) .dark\:bg-blue-50\/10) { + background-color: rgb(239 246 255 / 0.1); +} + +:is(:where(.dark) .dark\:bg-blue-50\/100) { + background-color: rgb(239 246 255 / 1); +} + +:is(:where(.dark) .dark\:bg-blue-50\/15) { + background-color: rgb(239 246 255 / 0.15); +} + +:is(:where(.dark) .dark\:bg-blue-50\/20) { + background-color: rgb(239 246 255 / 0.2); +} + +:is(:where(.dark) .dark\:bg-blue-50\/25) { + background-color: rgb(239 246 255 / 0.25); +} + +:is(:where(.dark) .dark\:bg-blue-50\/30) { + background-color: rgb(239 246 255 / 0.3); +} + +:is(:where(.dark) .dark\:bg-blue-50\/35) { + background-color: rgb(239 246 255 / 0.35); +} + +:is(:where(.dark) .dark\:bg-blue-50\/40) { + background-color: rgb(239 246 255 / 0.4); +} + +:is(:where(.dark) .dark\:bg-blue-50\/45) { + background-color: rgb(239 246 255 / 0.45); +} + +:is(:where(.dark) .dark\:bg-blue-50\/5) { + background-color: rgb(239 246 255 / 0.05); +} + +:is(:where(.dark) .dark\:bg-blue-50\/50) { + background-color: rgb(239 246 255 / 0.5); +} + +:is(:where(.dark) .dark\:bg-blue-50\/55) { + background-color: rgb(239 246 255 / 0.55); +} + +:is(:where(.dark) .dark\:bg-blue-50\/60) { + background-color: rgb(239 246 255 / 0.6); +} + +:is(:where(.dark) .dark\:bg-blue-50\/65) { + background-color: rgb(239 246 255 / 0.65); +} + +:is(:where(.dark) .dark\:bg-blue-50\/70) { + background-color: rgb(239 246 255 / 0.7); +} + +:is(:where(.dark) .dark\:bg-blue-50\/75) { + background-color: rgb(239 246 255 / 0.75); +} + +:is(:where(.dark) .dark\:bg-blue-50\/80) { + background-color: rgb(239 246 255 / 0.8); +} + +:is(:where(.dark) .dark\:bg-blue-50\/85) { + background-color: rgb(239 246 255 / 0.85); +} + +:is(:where(.dark) .dark\:bg-blue-50\/90) { + background-color: rgb(239 246 255 / 0.9); +} + +:is(:where(.dark) .dark\:bg-blue-50\/95) { + background-color: rgb(239 246 255 / 0.95); +} + +:is(:where(.dark) .dark\:bg-blue-500) { + --tw-bg-opacity: 1; + background-color: rgb(59 130 246 / var(--tw-bg-opacity)); +} + +:is(:where(.dark) .dark\:bg-blue-500\/0) { + background-color: rgb(59 130 246 / 0); +} + +:is(:where(.dark) .dark\:bg-blue-500\/10) { + background-color: rgb(59 130 246 / 0.1); +} + +:is(:where(.dark) .dark\:bg-blue-500\/100) { + background-color: rgb(59 130 246 / 1); +} + +:is(:where(.dark) .dark\:bg-blue-500\/15) { + background-color: rgb(59 130 246 / 0.15); +} + +:is(:where(.dark) .dark\:bg-blue-500\/20) { + background-color: rgb(59 130 246 / 0.2); +} + +:is(:where(.dark) .dark\:bg-blue-500\/25) { + background-color: rgb(59 130 246 / 0.25); +} + +:is(:where(.dark) .dark\:bg-blue-500\/30) { + background-color: rgb(59 130 246 / 0.3); +} + +:is(:where(.dark) .dark\:bg-blue-500\/35) { + background-color: rgb(59 130 246 / 0.35); +} + +:is(:where(.dark) .dark\:bg-blue-500\/40) { + background-color: rgb(59 130 246 / 0.4); +} + +:is(:where(.dark) .dark\:bg-blue-500\/45) { + background-color: rgb(59 130 246 / 0.45); +} + +:is(:where(.dark) .dark\:bg-blue-500\/5) { + background-color: rgb(59 130 246 / 0.05); +} + +:is(:where(.dark) .dark\:bg-blue-500\/50) { + background-color: rgb(59 130 246 / 0.5); +} + +:is(:where(.dark) .dark\:bg-blue-500\/55) { + background-color: rgb(59 130 246 / 0.55); +} + +:is(:where(.dark) .dark\:bg-blue-500\/60) { + background-color: rgb(59 130 246 / 0.6); +} + +:is(:where(.dark) .dark\:bg-blue-500\/65) { + background-color: rgb(59 130 246 / 0.65); +} + +:is(:where(.dark) .dark\:bg-blue-500\/70) { + background-color: rgb(59 130 246 / 0.7); +} + +:is(:where(.dark) .dark\:bg-blue-500\/75) { + background-color: rgb(59 130 246 / 0.75); +} + +:is(:where(.dark) .dark\:bg-blue-500\/80) { + background-color: rgb(59 130 246 / 0.8); +} + +:is(:where(.dark) .dark\:bg-blue-500\/85) { + background-color: rgb(59 130 246 / 0.85); +} + +:is(:where(.dark) .dark\:bg-blue-500\/90) { + background-color: rgb(59 130 246 / 0.9); +} + +:is(:where(.dark) .dark\:bg-blue-500\/95) { + background-color: rgb(59 130 246 / 0.95); +} + +:is(:where(.dark) .dark\:bg-blue-600) { + --tw-bg-opacity: 1; + background-color: rgb(37 99 235 / var(--tw-bg-opacity)); +} + +:is(:where(.dark) .dark\:bg-blue-800) { + --tw-bg-opacity: 1; + background-color: rgb(30 64 175 / var(--tw-bg-opacity)); +} + +:is(:where(.dark) .dark\:bg-blue-800\/0) { + background-color: rgb(30 64 175 / 0); +} + +:is(:where(.dark) .dark\:bg-blue-800\/10) { + background-color: rgb(30 64 175 / 0.1); +} + +:is(:where(.dark) .dark\:bg-blue-800\/100) { + background-color: rgb(30 64 175 / 1); +} + +:is(:where(.dark) .dark\:bg-blue-800\/15) { + background-color: rgb(30 64 175 / 0.15); +} + +:is(:where(.dark) .dark\:bg-blue-800\/20) { + background-color: rgb(30 64 175 / 0.2); +} + +:is(:where(.dark) .dark\:bg-blue-800\/25) { + background-color: rgb(30 64 175 / 0.25); +} + +:is(:where(.dark) .dark\:bg-blue-800\/30) { + background-color: rgb(30 64 175 / 0.3); +} + +:is(:where(.dark) .dark\:bg-blue-800\/35) { + background-color: rgb(30 64 175 / 0.35); +} + +:is(:where(.dark) .dark\:bg-blue-800\/40) { + background-color: rgb(30 64 175 / 0.4); +} + +:is(:where(.dark) .dark\:bg-blue-800\/45) { + background-color: rgb(30 64 175 / 0.45); +} + +:is(:where(.dark) .dark\:bg-blue-800\/5) { + background-color: rgb(30 64 175 / 0.05); +} + +:is(:where(.dark) .dark\:bg-blue-800\/50) { + background-color: rgb(30 64 175 / 0.5); +} + +:is(:where(.dark) .dark\:bg-blue-800\/55) { + background-color: rgb(30 64 175 / 0.55); +} + +:is(:where(.dark) .dark\:bg-blue-800\/60) { + background-color: rgb(30 64 175 / 0.6); +} + +:is(:where(.dark) .dark\:bg-blue-800\/65) { + background-color: rgb(30 64 175 / 0.65); +} + +:is(:where(.dark) .dark\:bg-blue-800\/70) { + background-color: rgb(30 64 175 / 0.7); +} + +:is(:where(.dark) .dark\:bg-blue-800\/75) { + background-color: rgb(30 64 175 / 0.75); +} + +:is(:where(.dark) .dark\:bg-blue-800\/80) { + background-color: rgb(30 64 175 / 0.8); +} + +:is(:where(.dark) .dark\:bg-blue-800\/85) { + background-color: rgb(30 64 175 / 0.85); +} + +:is(:where(.dark) .dark\:bg-blue-800\/90) { + background-color: rgb(30 64 175 / 0.9); +} + +:is(:where(.dark) .dark\:bg-blue-800\/95) { + background-color: rgb(30 64 175 / 0.95); +} + +:is(:where(.dark) .dark\:bg-blue-900) { + --tw-bg-opacity: 1; + background-color: rgb(30 58 138 / var(--tw-bg-opacity)); +} + +:is(:where(.dark) .dark\:bg-blue-900\/0) { + background-color: rgb(30 58 138 / 0); +} + +:is(:where(.dark) .dark\:bg-blue-900\/10) { + background-color: rgb(30 58 138 / 0.1); +} + +:is(:where(.dark) .dark\:bg-blue-900\/100) { + background-color: rgb(30 58 138 / 1); +} + +:is(:where(.dark) .dark\:bg-blue-900\/15) { + background-color: rgb(30 58 138 / 0.15); +} + +:is(:where(.dark) .dark\:bg-blue-900\/20) { + background-color: rgb(30 58 138 / 0.2); +} + +:is(:where(.dark) .dark\:bg-blue-900\/25) { + background-color: rgb(30 58 138 / 0.25); +} + +:is(:where(.dark) .dark\:bg-blue-900\/30) { + background-color: rgb(30 58 138 / 0.3); +} + +:is(:where(.dark) .dark\:bg-blue-900\/35) { + background-color: rgb(30 58 138 / 0.35); +} + +:is(:where(.dark) .dark\:bg-blue-900\/40) { + background-color: rgb(30 58 138 / 0.4); +} + +:is(:where(.dark) .dark\:bg-blue-900\/45) { + background-color: rgb(30 58 138 / 0.45); +} + +:is(:where(.dark) .dark\:bg-blue-900\/5) { + background-color: rgb(30 58 138 / 0.05); +} + +:is(:where(.dark) .dark\:bg-blue-900\/50) { + background-color: rgb(30 58 138 / 0.5); +} + +:is(:where(.dark) .dark\:bg-blue-900\/55) { + background-color: rgb(30 58 138 / 0.55); +} + +:is(:where(.dark) .dark\:bg-blue-900\/60) { + background-color: rgb(30 58 138 / 0.6); +} + +:is(:where(.dark) .dark\:bg-blue-900\/65) { + background-color: rgb(30 58 138 / 0.65); +} + +:is(:where(.dark) .dark\:bg-blue-900\/70) { + background-color: rgb(30 58 138 / 0.7); +} + +:is(:where(.dark) .dark\:bg-blue-900\/75) { + background-color: rgb(30 58 138 / 0.75); +} + +:is(:where(.dark) .dark\:bg-blue-900\/80) { + background-color: rgb(30 58 138 / 0.8); +} + +:is(:where(.dark) .dark\:bg-blue-900\/85) { + background-color: rgb(30 58 138 / 0.85); +} + +:is(:where(.dark) .dark\:bg-blue-900\/90) { + background-color: rgb(30 58 138 / 0.9); +} + +:is(:where(.dark) .dark\:bg-blue-900\/95) { + background-color: rgb(30 58 138 / 0.95); +} + +:is(:where(.dark) .dark\:bg-emerald-100) { + --tw-bg-opacity: 1; + background-color: rgb(209 250 229 / var(--tw-bg-opacity)); +} + +:is(:where(.dark) .dark\:bg-emerald-100\/0) { + background-color: rgb(209 250 229 / 0); +} + +:is(:where(.dark) .dark\:bg-emerald-100\/10) { + background-color: rgb(209 250 229 / 0.1); +} + +:is(:where(.dark) .dark\:bg-emerald-100\/100) { + background-color: rgb(209 250 229 / 1); +} + +:is(:where(.dark) .dark\:bg-emerald-100\/15) { + background-color: rgb(209 250 229 / 0.15); +} + +:is(:where(.dark) .dark\:bg-emerald-100\/20) { + background-color: rgb(209 250 229 / 0.2); +} + +:is(:where(.dark) .dark\:bg-emerald-100\/25) { + background-color: rgb(209 250 229 / 0.25); +} + +:is(:where(.dark) .dark\:bg-emerald-100\/30) { + background-color: rgb(209 250 229 / 0.3); +} + +:is(:where(.dark) .dark\:bg-emerald-100\/35) { + background-color: rgb(209 250 229 / 0.35); +} + +:is(:where(.dark) .dark\:bg-emerald-100\/40) { + background-color: rgb(209 250 229 / 0.4); +} + +:is(:where(.dark) .dark\:bg-emerald-100\/45) { + background-color: rgb(209 250 229 / 0.45); +} + +:is(:where(.dark) .dark\:bg-emerald-100\/5) { + background-color: rgb(209 250 229 / 0.05); +} + +:is(:where(.dark) .dark\:bg-emerald-100\/50) { + background-color: rgb(209 250 229 / 0.5); +} + +:is(:where(.dark) .dark\:bg-emerald-100\/55) { + background-color: rgb(209 250 229 / 0.55); +} + +:is(:where(.dark) .dark\:bg-emerald-100\/60) { + background-color: rgb(209 250 229 / 0.6); +} + +:is(:where(.dark) .dark\:bg-emerald-100\/65) { + background-color: rgb(209 250 229 / 0.65); +} + +:is(:where(.dark) .dark\:bg-emerald-100\/70) { + background-color: rgb(209 250 229 / 0.7); +} + +:is(:where(.dark) .dark\:bg-emerald-100\/75) { + background-color: rgb(209 250 229 / 0.75); +} + +:is(:where(.dark) .dark\:bg-emerald-100\/80) { + background-color: rgb(209 250 229 / 0.8); +} + +:is(:where(.dark) .dark\:bg-emerald-100\/85) { + background-color: rgb(209 250 229 / 0.85); +} + +:is(:where(.dark) .dark\:bg-emerald-100\/90) { + background-color: rgb(209 250 229 / 0.9); +} + +:is(:where(.dark) .dark\:bg-emerald-100\/95) { + background-color: rgb(209 250 229 / 0.95); +} + +:is(:where(.dark) .dark\:bg-emerald-50) { + --tw-bg-opacity: 1; + background-color: rgb(236 253 245 / var(--tw-bg-opacity)); +} + +:is(:where(.dark) .dark\:bg-emerald-50\/0) { + background-color: rgb(236 253 245 / 0); +} + +:is(:where(.dark) .dark\:bg-emerald-50\/10) { + background-color: rgb(236 253 245 / 0.1); +} + +:is(:where(.dark) .dark\:bg-emerald-50\/100) { + background-color: rgb(236 253 245 / 1); +} + +:is(:where(.dark) .dark\:bg-emerald-50\/15) { + background-color: rgb(236 253 245 / 0.15); +} + +:is(:where(.dark) .dark\:bg-emerald-50\/20) { + background-color: rgb(236 253 245 / 0.2); +} + +:is(:where(.dark) .dark\:bg-emerald-50\/25) { + background-color: rgb(236 253 245 / 0.25); +} + +:is(:where(.dark) .dark\:bg-emerald-50\/30) { + background-color: rgb(236 253 245 / 0.3); +} + +:is(:where(.dark) .dark\:bg-emerald-50\/35) { + background-color: rgb(236 253 245 / 0.35); +} + +:is(:where(.dark) .dark\:bg-emerald-50\/40) { + background-color: rgb(236 253 245 / 0.4); +} + +:is(:where(.dark) .dark\:bg-emerald-50\/45) { + background-color: rgb(236 253 245 / 0.45); +} + +:is(:where(.dark) .dark\:bg-emerald-50\/5) { + background-color: rgb(236 253 245 / 0.05); +} + +:is(:where(.dark) .dark\:bg-emerald-50\/50) { + background-color: rgb(236 253 245 / 0.5); +} + +:is(:where(.dark) .dark\:bg-emerald-50\/55) { + background-color: rgb(236 253 245 / 0.55); +} + +:is(:where(.dark) .dark\:bg-emerald-50\/60) { + background-color: rgb(236 253 245 / 0.6); +} + +:is(:where(.dark) .dark\:bg-emerald-50\/65) { + background-color: rgb(236 253 245 / 0.65); +} + +:is(:where(.dark) .dark\:bg-emerald-50\/70) { + background-color: rgb(236 253 245 / 0.7); +} + +:is(:where(.dark) .dark\:bg-emerald-50\/75) { + background-color: rgb(236 253 245 / 0.75); +} + +:is(:where(.dark) .dark\:bg-emerald-50\/80) { + background-color: rgb(236 253 245 / 0.8); +} + +:is(:where(.dark) .dark\:bg-emerald-50\/85) { + background-color: rgb(236 253 245 / 0.85); +} + +:is(:where(.dark) .dark\:bg-emerald-50\/90) { + background-color: rgb(236 253 245 / 0.9); +} + +:is(:where(.dark) .dark\:bg-emerald-50\/95) { + background-color: rgb(236 253 245 / 0.95); +} + +:is(:where(.dark) .dark\:bg-emerald-500) { + --tw-bg-opacity: 1; + background-color: rgb(16 185 129 / var(--tw-bg-opacity)); +} + +:is(:where(.dark) .dark\:bg-emerald-500\/0) { + background-color: rgb(16 185 129 / 0); +} + +:is(:where(.dark) .dark\:bg-emerald-500\/10) { + background-color: rgb(16 185 129 / 0.1); +} + +:is(:where(.dark) .dark\:bg-emerald-500\/100) { + background-color: rgb(16 185 129 / 1); +} + +:is(:where(.dark) .dark\:bg-emerald-500\/15) { + background-color: rgb(16 185 129 / 0.15); +} + +:is(:where(.dark) .dark\:bg-emerald-500\/20) { + background-color: rgb(16 185 129 / 0.2); +} + +:is(:where(.dark) .dark\:bg-emerald-500\/25) { + background-color: rgb(16 185 129 / 0.25); +} + +:is(:where(.dark) .dark\:bg-emerald-500\/30) { + background-color: rgb(16 185 129 / 0.3); +} + +:is(:where(.dark) .dark\:bg-emerald-500\/35) { + background-color: rgb(16 185 129 / 0.35); +} + +:is(:where(.dark) .dark\:bg-emerald-500\/40) { + background-color: rgb(16 185 129 / 0.4); +} + +:is(:where(.dark) .dark\:bg-emerald-500\/45) { + background-color: rgb(16 185 129 / 0.45); +} + +:is(:where(.dark) .dark\:bg-emerald-500\/5) { + background-color: rgb(16 185 129 / 0.05); +} + +:is(:where(.dark) .dark\:bg-emerald-500\/50) { + background-color: rgb(16 185 129 / 0.5); +} + +:is(:where(.dark) .dark\:bg-emerald-500\/55) { + background-color: rgb(16 185 129 / 0.55); +} + +:is(:where(.dark) .dark\:bg-emerald-500\/60) { + background-color: rgb(16 185 129 / 0.6); +} + +:is(:where(.dark) .dark\:bg-emerald-500\/65) { + background-color: rgb(16 185 129 / 0.65); +} + +:is(:where(.dark) .dark\:bg-emerald-500\/70) { + background-color: rgb(16 185 129 / 0.7); +} + +:is(:where(.dark) .dark\:bg-emerald-500\/75) { + background-color: rgb(16 185 129 / 0.75); +} + +:is(:where(.dark) .dark\:bg-emerald-500\/80) { + background-color: rgb(16 185 129 / 0.8); +} + +:is(:where(.dark) .dark\:bg-emerald-500\/85) { + background-color: rgb(16 185 129 / 0.85); +} + +:is(:where(.dark) .dark\:bg-emerald-500\/90) { + background-color: rgb(16 185 129 / 0.9); +} + +:is(:where(.dark) .dark\:bg-emerald-500\/95) { + background-color: rgb(16 185 129 / 0.95); +} + +:is(:where(.dark) .dark\:bg-emerald-800) { + --tw-bg-opacity: 1; + background-color: rgb(6 95 70 / var(--tw-bg-opacity)); +} + +:is(:where(.dark) .dark\:bg-emerald-800\/0) { + background-color: rgb(6 95 70 / 0); +} + +:is(:where(.dark) .dark\:bg-emerald-800\/10) { + background-color: rgb(6 95 70 / 0.1); +} + +:is(:where(.dark) .dark\:bg-emerald-800\/100) { + background-color: rgb(6 95 70 / 1); +} + +:is(:where(.dark) .dark\:bg-emerald-800\/15) { + background-color: rgb(6 95 70 / 0.15); +} + +:is(:where(.dark) .dark\:bg-emerald-800\/20) { + background-color: rgb(6 95 70 / 0.2); +} + +:is(:where(.dark) .dark\:bg-emerald-800\/25) { + background-color: rgb(6 95 70 / 0.25); +} + +:is(:where(.dark) .dark\:bg-emerald-800\/30) { + background-color: rgb(6 95 70 / 0.3); +} + +:is(:where(.dark) .dark\:bg-emerald-800\/35) { + background-color: rgb(6 95 70 / 0.35); +} + +:is(:where(.dark) .dark\:bg-emerald-800\/40) { + background-color: rgb(6 95 70 / 0.4); +} + +:is(:where(.dark) .dark\:bg-emerald-800\/45) { + background-color: rgb(6 95 70 / 0.45); +} + +:is(:where(.dark) .dark\:bg-emerald-800\/5) { + background-color: rgb(6 95 70 / 0.05); +} + +:is(:where(.dark) .dark\:bg-emerald-800\/50) { + background-color: rgb(6 95 70 / 0.5); +} + +:is(:where(.dark) .dark\:bg-emerald-800\/55) { + background-color: rgb(6 95 70 / 0.55); +} + +:is(:where(.dark) .dark\:bg-emerald-800\/60) { + background-color: rgb(6 95 70 / 0.6); +} + +:is(:where(.dark) .dark\:bg-emerald-800\/65) { + background-color: rgb(6 95 70 / 0.65); +} + +:is(:where(.dark) .dark\:bg-emerald-800\/70) { + background-color: rgb(6 95 70 / 0.7); +} + +:is(:where(.dark) .dark\:bg-emerald-800\/75) { + background-color: rgb(6 95 70 / 0.75); +} + +:is(:where(.dark) .dark\:bg-emerald-800\/80) { + background-color: rgb(6 95 70 / 0.8); +} + +:is(:where(.dark) .dark\:bg-emerald-800\/85) { + background-color: rgb(6 95 70 / 0.85); +} + +:is(:where(.dark) .dark\:bg-emerald-800\/90) { + background-color: rgb(6 95 70 / 0.9); +} + +:is(:where(.dark) .dark\:bg-emerald-800\/95) { + background-color: rgb(6 95 70 / 0.95); +} + +:is(:where(.dark) .dark\:bg-emerald-900) { + --tw-bg-opacity: 1; + background-color: rgb(6 78 59 / var(--tw-bg-opacity)); +} + +:is(:where(.dark) .dark\:bg-emerald-900\/0) { + background-color: rgb(6 78 59 / 0); +} + +:is(:where(.dark) .dark\:bg-emerald-900\/10) { + background-color: rgb(6 78 59 / 0.1); +} + +:is(:where(.dark) .dark\:bg-emerald-900\/100) { + background-color: rgb(6 78 59 / 1); +} + +:is(:where(.dark) .dark\:bg-emerald-900\/15) { + background-color: rgb(6 78 59 / 0.15); +} + +:is(:where(.dark) .dark\:bg-emerald-900\/20) { + background-color: rgb(6 78 59 / 0.2); +} + +:is(:where(.dark) .dark\:bg-emerald-900\/25) { + background-color: rgb(6 78 59 / 0.25); +} + +:is(:where(.dark) .dark\:bg-emerald-900\/30) { + background-color: rgb(6 78 59 / 0.3); +} + +:is(:where(.dark) .dark\:bg-emerald-900\/35) { + background-color: rgb(6 78 59 / 0.35); +} + +:is(:where(.dark) .dark\:bg-emerald-900\/40) { + background-color: rgb(6 78 59 / 0.4); +} + +:is(:where(.dark) .dark\:bg-emerald-900\/45) { + background-color: rgb(6 78 59 / 0.45); +} + +:is(:where(.dark) .dark\:bg-emerald-900\/5) { + background-color: rgb(6 78 59 / 0.05); +} + +:is(:where(.dark) .dark\:bg-emerald-900\/50) { + background-color: rgb(6 78 59 / 0.5); +} + +:is(:where(.dark) .dark\:bg-emerald-900\/55) { + background-color: rgb(6 78 59 / 0.55); +} + +:is(:where(.dark) .dark\:bg-emerald-900\/60) { + background-color: rgb(6 78 59 / 0.6); +} + +:is(:where(.dark) .dark\:bg-emerald-900\/65) { + background-color: rgb(6 78 59 / 0.65); +} + +:is(:where(.dark) .dark\:bg-emerald-900\/70) { + background-color: rgb(6 78 59 / 0.7); +} + +:is(:where(.dark) .dark\:bg-emerald-900\/75) { + background-color: rgb(6 78 59 / 0.75); +} + +:is(:where(.dark) .dark\:bg-emerald-900\/80) { + background-color: rgb(6 78 59 / 0.8); +} + +:is(:where(.dark) .dark\:bg-emerald-900\/85) { + background-color: rgb(6 78 59 / 0.85); +} + +:is(:where(.dark) .dark\:bg-emerald-900\/90) { + background-color: rgb(6 78 59 / 0.9); +} + +:is(:where(.dark) .dark\:bg-emerald-900\/95) { + background-color: rgb(6 78 59 / 0.95); +} + +:is(:where(.dark) .dark\:bg-fuchsia-800) { + --tw-bg-opacity: 1; + background-color: rgb(134 25 143 / var(--tw-bg-opacity)); +} + +:is(:where(.dark) .dark\:bg-fuchsia-900) { + --tw-bg-opacity: 1; + background-color: rgb(112 26 117 / var(--tw-bg-opacity)); +} + +:is(:where(.dark) .dark\:bg-gray-900) { + --tw-bg-opacity: 1; + background-color: rgb(17 24 39 / var(--tw-bg-opacity)); +} + +:is(:where(.dark) .dark\:bg-green-100) { + --tw-bg-opacity: 1; + background-color: rgb(220 252 231 / var(--tw-bg-opacity)); +} + +:is(:where(.dark) .dark\:bg-green-100\/0) { + background-color: rgb(220 252 231 / 0); +} + +:is(:where(.dark) .dark\:bg-green-100\/10) { + background-color: rgb(220 252 231 / 0.1); +} + +:is(:where(.dark) .dark\:bg-green-100\/100) { + background-color: rgb(220 252 231 / 1); +} + +:is(:where(.dark) .dark\:bg-green-100\/15) { + background-color: rgb(220 252 231 / 0.15); +} + +:is(:where(.dark) .dark\:bg-green-100\/20) { + background-color: rgb(220 252 231 / 0.2); +} + +:is(:where(.dark) .dark\:bg-green-100\/25) { + background-color: rgb(220 252 231 / 0.25); +} + +:is(:where(.dark) .dark\:bg-green-100\/30) { + background-color: rgb(220 252 231 / 0.3); +} + +:is(:where(.dark) .dark\:bg-green-100\/35) { + background-color: rgb(220 252 231 / 0.35); +} + +:is(:where(.dark) .dark\:bg-green-100\/40) { + background-color: rgb(220 252 231 / 0.4); +} + +:is(:where(.dark) .dark\:bg-green-100\/45) { + background-color: rgb(220 252 231 / 0.45); +} + +:is(:where(.dark) .dark\:bg-green-100\/5) { + background-color: rgb(220 252 231 / 0.05); +} + +:is(:where(.dark) .dark\:bg-green-100\/50) { + background-color: rgb(220 252 231 / 0.5); +} + +:is(:where(.dark) .dark\:bg-green-100\/55) { + background-color: rgb(220 252 231 / 0.55); +} + +:is(:where(.dark) .dark\:bg-green-100\/60) { + background-color: rgb(220 252 231 / 0.6); +} + +:is(:where(.dark) .dark\:bg-green-100\/65) { + background-color: rgb(220 252 231 / 0.65); +} + +:is(:where(.dark) .dark\:bg-green-100\/70) { + background-color: rgb(220 252 231 / 0.7); +} + +:is(:where(.dark) .dark\:bg-green-100\/75) { + background-color: rgb(220 252 231 / 0.75); +} + +:is(:where(.dark) .dark\:bg-green-100\/80) { + background-color: rgb(220 252 231 / 0.8); +} + +:is(:where(.dark) .dark\:bg-green-100\/85) { + background-color: rgb(220 252 231 / 0.85); +} + +:is(:where(.dark) .dark\:bg-green-100\/90) { + background-color: rgb(220 252 231 / 0.9); +} + +:is(:where(.dark) .dark\:bg-green-100\/95) { + background-color: rgb(220 252 231 / 0.95); +} + +:is(:where(.dark) .dark\:bg-green-50) { + --tw-bg-opacity: 1; + background-color: rgb(240 253 244 / var(--tw-bg-opacity)); +} + +:is(:where(.dark) .dark\:bg-green-50\/0) { + background-color: rgb(240 253 244 / 0); +} + +:is(:where(.dark) .dark\:bg-green-50\/10) { + background-color: rgb(240 253 244 / 0.1); +} + +:is(:where(.dark) .dark\:bg-green-50\/100) { + background-color: rgb(240 253 244 / 1); +} + +:is(:where(.dark) .dark\:bg-green-50\/15) { + background-color: rgb(240 253 244 / 0.15); +} + +:is(:where(.dark) .dark\:bg-green-50\/20) { + background-color: rgb(240 253 244 / 0.2); +} + +:is(:where(.dark) .dark\:bg-green-50\/25) { + background-color: rgb(240 253 244 / 0.25); +} + +:is(:where(.dark) .dark\:bg-green-50\/30) { + background-color: rgb(240 253 244 / 0.3); +} + +:is(:where(.dark) .dark\:bg-green-50\/35) { + background-color: rgb(240 253 244 / 0.35); +} + +:is(:where(.dark) .dark\:bg-green-50\/40) { + background-color: rgb(240 253 244 / 0.4); +} + +:is(:where(.dark) .dark\:bg-green-50\/45) { + background-color: rgb(240 253 244 / 0.45); +} + +:is(:where(.dark) .dark\:bg-green-50\/5) { + background-color: rgb(240 253 244 / 0.05); +} + +:is(:where(.dark) .dark\:bg-green-50\/50) { + background-color: rgb(240 253 244 / 0.5); +} + +:is(:where(.dark) .dark\:bg-green-50\/55) { + background-color: rgb(240 253 244 / 0.55); +} + +:is(:where(.dark) .dark\:bg-green-50\/60) { + background-color: rgb(240 253 244 / 0.6); +} + +:is(:where(.dark) .dark\:bg-green-50\/65) { + background-color: rgb(240 253 244 / 0.65); +} + +:is(:where(.dark) .dark\:bg-green-50\/70) { + background-color: rgb(240 253 244 / 0.7); +} + +:is(:where(.dark) .dark\:bg-green-50\/75) { + background-color: rgb(240 253 244 / 0.75); +} + +:is(:where(.dark) .dark\:bg-green-50\/80) { + background-color: rgb(240 253 244 / 0.8); +} + +:is(:where(.dark) .dark\:bg-green-50\/85) { + background-color: rgb(240 253 244 / 0.85); +} + +:is(:where(.dark) .dark\:bg-green-50\/90) { + background-color: rgb(240 253 244 / 0.9); +} + +:is(:where(.dark) .dark\:bg-green-50\/95) { + background-color: rgb(240 253 244 / 0.95); +} + +:is(:where(.dark) .dark\:bg-green-500) { + --tw-bg-opacity: 1; + background-color: rgb(34 197 94 / var(--tw-bg-opacity)); +} + +:is(:where(.dark) .dark\:bg-green-500\/0) { + background-color: rgb(34 197 94 / 0); +} + +:is(:where(.dark) .dark\:bg-green-500\/10) { + background-color: rgb(34 197 94 / 0.1); +} + +:is(:where(.dark) .dark\:bg-green-500\/100) { + background-color: rgb(34 197 94 / 1); +} + +:is(:where(.dark) .dark\:bg-green-500\/15) { + background-color: rgb(34 197 94 / 0.15); +} + +:is(:where(.dark) .dark\:bg-green-500\/20) { + background-color: rgb(34 197 94 / 0.2); +} + +:is(:where(.dark) .dark\:bg-green-500\/25) { + background-color: rgb(34 197 94 / 0.25); +} + +:is(:where(.dark) .dark\:bg-green-500\/30) { + background-color: rgb(34 197 94 / 0.3); +} + +:is(:where(.dark) .dark\:bg-green-500\/35) { + background-color: rgb(34 197 94 / 0.35); +} + +:is(:where(.dark) .dark\:bg-green-500\/40) { + background-color: rgb(34 197 94 / 0.4); +} + +:is(:where(.dark) .dark\:bg-green-500\/45) { + background-color: rgb(34 197 94 / 0.45); +} + +:is(:where(.dark) .dark\:bg-green-500\/5) { + background-color: rgb(34 197 94 / 0.05); +} + +:is(:where(.dark) .dark\:bg-green-500\/50) { + background-color: rgb(34 197 94 / 0.5); +} + +:is(:where(.dark) .dark\:bg-green-500\/55) { + background-color: rgb(34 197 94 / 0.55); +} + +:is(:where(.dark) .dark\:bg-green-500\/60) { + background-color: rgb(34 197 94 / 0.6); +} + +:is(:where(.dark) .dark\:bg-green-500\/65) { + background-color: rgb(34 197 94 / 0.65); +} + +:is(:where(.dark) .dark\:bg-green-500\/70) { + background-color: rgb(34 197 94 / 0.7); +} + +:is(:where(.dark) .dark\:bg-green-500\/75) { + background-color: rgb(34 197 94 / 0.75); +} + +:is(:where(.dark) .dark\:bg-green-500\/80) { + background-color: rgb(34 197 94 / 0.8); +} + +:is(:where(.dark) .dark\:bg-green-500\/85) { + background-color: rgb(34 197 94 / 0.85); +} + +:is(:where(.dark) .dark\:bg-green-500\/90) { + background-color: rgb(34 197 94 / 0.9); +} + +:is(:where(.dark) .dark\:bg-green-500\/95) { + background-color: rgb(34 197 94 / 0.95); +} + +:is(:where(.dark) .dark\:bg-green-800) { + --tw-bg-opacity: 1; + background-color: rgb(22 101 52 / var(--tw-bg-opacity)); +} + +:is(:where(.dark) .dark\:bg-green-800\/0) { + background-color: rgb(22 101 52 / 0); +} + +:is(:where(.dark) .dark\:bg-green-800\/10) { + background-color: rgb(22 101 52 / 0.1); +} + +:is(:where(.dark) .dark\:bg-green-800\/100) { + background-color: rgb(22 101 52 / 1); +} + +:is(:where(.dark) .dark\:bg-green-800\/15) { + background-color: rgb(22 101 52 / 0.15); +} + +:is(:where(.dark) .dark\:bg-green-800\/20) { + background-color: rgb(22 101 52 / 0.2); +} + +:is(:where(.dark) .dark\:bg-green-800\/25) { + background-color: rgb(22 101 52 / 0.25); +} + +:is(:where(.dark) .dark\:bg-green-800\/30) { + background-color: rgb(22 101 52 / 0.3); +} + +:is(:where(.dark) .dark\:bg-green-800\/35) { + background-color: rgb(22 101 52 / 0.35); +} + +:is(:where(.dark) .dark\:bg-green-800\/40) { + background-color: rgb(22 101 52 / 0.4); +} + +:is(:where(.dark) .dark\:bg-green-800\/45) { + background-color: rgb(22 101 52 / 0.45); +} + +:is(:where(.dark) .dark\:bg-green-800\/5) { + background-color: rgb(22 101 52 / 0.05); +} + +:is(:where(.dark) .dark\:bg-green-800\/50) { + background-color: rgb(22 101 52 / 0.5); +} + +:is(:where(.dark) .dark\:bg-green-800\/55) { + background-color: rgb(22 101 52 / 0.55); +} + +:is(:where(.dark) .dark\:bg-green-800\/60) { + background-color: rgb(22 101 52 / 0.6); +} + +:is(:where(.dark) .dark\:bg-green-800\/65) { + background-color: rgb(22 101 52 / 0.65); +} + +:is(:where(.dark) .dark\:bg-green-800\/70) { + background-color: rgb(22 101 52 / 0.7); +} + +:is(:where(.dark) .dark\:bg-green-800\/75) { + background-color: rgb(22 101 52 / 0.75); +} + +:is(:where(.dark) .dark\:bg-green-800\/80) { + background-color: rgb(22 101 52 / 0.8); +} + +:is(:where(.dark) .dark\:bg-green-800\/85) { + background-color: rgb(22 101 52 / 0.85); +} + +:is(:where(.dark) .dark\:bg-green-800\/90) { + background-color: rgb(22 101 52 / 0.9); +} + +:is(:where(.dark) .dark\:bg-green-800\/95) { + background-color: rgb(22 101 52 / 0.95); +} + +:is(:where(.dark) .dark\:bg-green-900) { + --tw-bg-opacity: 1; + background-color: rgb(20 83 45 / var(--tw-bg-opacity)); +} + +:is(:where(.dark) .dark\:bg-green-900\/0) { + background-color: rgb(20 83 45 / 0); +} + +:is(:where(.dark) .dark\:bg-green-900\/10) { + background-color: rgb(20 83 45 / 0.1); +} + +:is(:where(.dark) .dark\:bg-green-900\/100) { + background-color: rgb(20 83 45 / 1); +} + +:is(:where(.dark) .dark\:bg-green-900\/15) { + background-color: rgb(20 83 45 / 0.15); +} + +:is(:where(.dark) .dark\:bg-green-900\/20) { + background-color: rgb(20 83 45 / 0.2); +} + +:is(:where(.dark) .dark\:bg-green-900\/25) { + background-color: rgb(20 83 45 / 0.25); +} + +:is(:where(.dark) .dark\:bg-green-900\/30) { + background-color: rgb(20 83 45 / 0.3); +} + +:is(:where(.dark) .dark\:bg-green-900\/35) { + background-color: rgb(20 83 45 / 0.35); +} + +:is(:where(.dark) .dark\:bg-green-900\/40) { + background-color: rgb(20 83 45 / 0.4); +} + +:is(:where(.dark) .dark\:bg-green-900\/45) { + background-color: rgb(20 83 45 / 0.45); +} + +:is(:where(.dark) .dark\:bg-green-900\/5) { + background-color: rgb(20 83 45 / 0.05); +} + +:is(:where(.dark) .dark\:bg-green-900\/50) { + background-color: rgb(20 83 45 / 0.5); +} + +:is(:where(.dark) .dark\:bg-green-900\/55) { + background-color: rgb(20 83 45 / 0.55); +} + +:is(:where(.dark) .dark\:bg-green-900\/60) { + background-color: rgb(20 83 45 / 0.6); +} + +:is(:where(.dark) .dark\:bg-green-900\/65) { + background-color: rgb(20 83 45 / 0.65); +} + +:is(:where(.dark) .dark\:bg-green-900\/70) { + background-color: rgb(20 83 45 / 0.7); +} + +:is(:where(.dark) .dark\:bg-green-900\/75) { + background-color: rgb(20 83 45 / 0.75); +} + +:is(:where(.dark) .dark\:bg-green-900\/80) { + background-color: rgb(20 83 45 / 0.8); +} + +:is(:where(.dark) .dark\:bg-green-900\/85) { + background-color: rgb(20 83 45 / 0.85); +} + +:is(:where(.dark) .dark\:bg-green-900\/90) { + background-color: rgb(20 83 45 / 0.9); +} + +:is(:where(.dark) .dark\:bg-green-900\/95) { + background-color: rgb(20 83 45 / 0.95); +} + +:is(:where(.dark) .dark\:bg-indigo-100) { + --tw-bg-opacity: 1; + background-color: rgb(224 231 255 / var(--tw-bg-opacity)); +} + +:is(:where(.dark) .dark\:bg-indigo-100\/0) { + background-color: rgb(224 231 255 / 0); +} + +:is(:where(.dark) .dark\:bg-indigo-100\/10) { + background-color: rgb(224 231 255 / 0.1); +} + +:is(:where(.dark) .dark\:bg-indigo-100\/100) { + background-color: rgb(224 231 255 / 1); +} + +:is(:where(.dark) .dark\:bg-indigo-100\/15) { + background-color: rgb(224 231 255 / 0.15); +} + +:is(:where(.dark) .dark\:bg-indigo-100\/20) { + background-color: rgb(224 231 255 / 0.2); +} + +:is(:where(.dark) .dark\:bg-indigo-100\/25) { + background-color: rgb(224 231 255 / 0.25); +} + +:is(:where(.dark) .dark\:bg-indigo-100\/30) { + background-color: rgb(224 231 255 / 0.3); +} + +:is(:where(.dark) .dark\:bg-indigo-100\/35) { + background-color: rgb(224 231 255 / 0.35); +} + +:is(:where(.dark) .dark\:bg-indigo-100\/40) { + background-color: rgb(224 231 255 / 0.4); +} + +:is(:where(.dark) .dark\:bg-indigo-100\/45) { + background-color: rgb(224 231 255 / 0.45); +} + +:is(:where(.dark) .dark\:bg-indigo-100\/5) { + background-color: rgb(224 231 255 / 0.05); +} + +:is(:where(.dark) .dark\:bg-indigo-100\/50) { + background-color: rgb(224 231 255 / 0.5); +} + +:is(:where(.dark) .dark\:bg-indigo-100\/55) { + background-color: rgb(224 231 255 / 0.55); +} + +:is(:where(.dark) .dark\:bg-indigo-100\/60) { + background-color: rgb(224 231 255 / 0.6); +} + +:is(:where(.dark) .dark\:bg-indigo-100\/65) { + background-color: rgb(224 231 255 / 0.65); +} + +:is(:where(.dark) .dark\:bg-indigo-100\/70) { + background-color: rgb(224 231 255 / 0.7); +} + +:is(:where(.dark) .dark\:bg-indigo-100\/75) { + background-color: rgb(224 231 255 / 0.75); +} + +:is(:where(.dark) .dark\:bg-indigo-100\/80) { + background-color: rgb(224 231 255 / 0.8); +} + +:is(:where(.dark) .dark\:bg-indigo-100\/85) { + background-color: rgb(224 231 255 / 0.85); +} + +:is(:where(.dark) .dark\:bg-indigo-100\/90) { + background-color: rgb(224 231 255 / 0.9); +} + +:is(:where(.dark) .dark\:bg-indigo-100\/95) { + background-color: rgb(224 231 255 / 0.95); +} + +:is(:where(.dark) .dark\:bg-indigo-400) { + --tw-bg-opacity: 1; + background-color: rgb(129 140 248 / var(--tw-bg-opacity)); +} + +:is(:where(.dark) .dark\:bg-indigo-50) { + --tw-bg-opacity: 1; + background-color: rgb(238 242 255 / var(--tw-bg-opacity)); +} + +:is(:where(.dark) .dark\:bg-indigo-50\/0) { + background-color: rgb(238 242 255 / 0); +} + +:is(:where(.dark) .dark\:bg-indigo-50\/10) { + background-color: rgb(238 242 255 / 0.1); +} + +:is(:where(.dark) .dark\:bg-indigo-50\/100) { + background-color: rgb(238 242 255 / 1); +} + +:is(:where(.dark) .dark\:bg-indigo-50\/15) { + background-color: rgb(238 242 255 / 0.15); +} + +:is(:where(.dark) .dark\:bg-indigo-50\/20) { + background-color: rgb(238 242 255 / 0.2); +} + +:is(:where(.dark) .dark\:bg-indigo-50\/25) { + background-color: rgb(238 242 255 / 0.25); +} + +:is(:where(.dark) .dark\:bg-indigo-50\/30) { + background-color: rgb(238 242 255 / 0.3); +} + +:is(:where(.dark) .dark\:bg-indigo-50\/35) { + background-color: rgb(238 242 255 / 0.35); +} + +:is(:where(.dark) .dark\:bg-indigo-50\/40) { + background-color: rgb(238 242 255 / 0.4); +} + +:is(:where(.dark) .dark\:bg-indigo-50\/45) { + background-color: rgb(238 242 255 / 0.45); +} + +:is(:where(.dark) .dark\:bg-indigo-50\/5) { + background-color: rgb(238 242 255 / 0.05); +} + +:is(:where(.dark) .dark\:bg-indigo-50\/50) { + background-color: rgb(238 242 255 / 0.5); +} + +:is(:where(.dark) .dark\:bg-indigo-50\/55) { + background-color: rgb(238 242 255 / 0.55); +} + +:is(:where(.dark) .dark\:bg-indigo-50\/60) { + background-color: rgb(238 242 255 / 0.6); +} + +:is(:where(.dark) .dark\:bg-indigo-50\/65) { + background-color: rgb(238 242 255 / 0.65); +} + +:is(:where(.dark) .dark\:bg-indigo-50\/70) { + background-color: rgb(238 242 255 / 0.7); +} + +:is(:where(.dark) .dark\:bg-indigo-50\/75) { + background-color: rgb(238 242 255 / 0.75); +} + +:is(:where(.dark) .dark\:bg-indigo-50\/80) { + background-color: rgb(238 242 255 / 0.8); +} + +:is(:where(.dark) .dark\:bg-indigo-50\/85) { + background-color: rgb(238 242 255 / 0.85); +} + +:is(:where(.dark) .dark\:bg-indigo-50\/90) { + background-color: rgb(238 242 255 / 0.9); +} + +:is(:where(.dark) .dark\:bg-indigo-50\/95) { + background-color: rgb(238 242 255 / 0.95); +} + +:is(:where(.dark) .dark\:bg-indigo-500) { + --tw-bg-opacity: 1; + background-color: rgb(99 102 241 / var(--tw-bg-opacity)); +} + +:is(:where(.dark) .dark\:bg-indigo-500\/0) { + background-color: rgb(99 102 241 / 0); +} + +:is(:where(.dark) .dark\:bg-indigo-500\/10) { + background-color: rgb(99 102 241 / 0.1); +} + +:is(:where(.dark) .dark\:bg-indigo-500\/100) { + background-color: rgb(99 102 241 / 1); +} + +:is(:where(.dark) .dark\:bg-indigo-500\/15) { + background-color: rgb(99 102 241 / 0.15); +} + +:is(:where(.dark) .dark\:bg-indigo-500\/20) { + background-color: rgb(99 102 241 / 0.2); +} + +:is(:where(.dark) .dark\:bg-indigo-500\/25) { + background-color: rgb(99 102 241 / 0.25); +} + +:is(:where(.dark) .dark\:bg-indigo-500\/30) { + background-color: rgb(99 102 241 / 0.3); +} + +:is(:where(.dark) .dark\:bg-indigo-500\/35) { + background-color: rgb(99 102 241 / 0.35); +} + +:is(:where(.dark) .dark\:bg-indigo-500\/40) { + background-color: rgb(99 102 241 / 0.4); +} + +:is(:where(.dark) .dark\:bg-indigo-500\/45) { + background-color: rgb(99 102 241 / 0.45); +} + +:is(:where(.dark) .dark\:bg-indigo-500\/5) { + background-color: rgb(99 102 241 / 0.05); +} + +:is(:where(.dark) .dark\:bg-indigo-500\/50) { + background-color: rgb(99 102 241 / 0.5); +} + +:is(:where(.dark) .dark\:bg-indigo-500\/55) { + background-color: rgb(99 102 241 / 0.55); +} + +:is(:where(.dark) .dark\:bg-indigo-500\/60) { + background-color: rgb(99 102 241 / 0.6); +} + +:is(:where(.dark) .dark\:bg-indigo-500\/65) { + background-color: rgb(99 102 241 / 0.65); +} + +:is(:where(.dark) .dark\:bg-indigo-500\/70) { + background-color: rgb(99 102 241 / 0.7); +} + +:is(:where(.dark) .dark\:bg-indigo-500\/75) { + background-color: rgb(99 102 241 / 0.75); +} + +:is(:where(.dark) .dark\:bg-indigo-500\/80) { + background-color: rgb(99 102 241 / 0.8); +} + +:is(:where(.dark) .dark\:bg-indigo-500\/85) { + background-color: rgb(99 102 241 / 0.85); +} + +:is(:where(.dark) .dark\:bg-indigo-500\/90) { + background-color: rgb(99 102 241 / 0.9); +} + +:is(:where(.dark) .dark\:bg-indigo-500\/95) { + background-color: rgb(99 102 241 / 0.95); +} + +:is(:where(.dark) .dark\:bg-indigo-800) { + --tw-bg-opacity: 1; + background-color: rgb(55 48 163 / var(--tw-bg-opacity)); +} + +:is(:where(.dark) .dark\:bg-indigo-800\/0) { + background-color: rgb(55 48 163 / 0); +} + +:is(:where(.dark) .dark\:bg-indigo-800\/10) { + background-color: rgb(55 48 163 / 0.1); +} + +:is(:where(.dark) .dark\:bg-indigo-800\/100) { + background-color: rgb(55 48 163 / 1); +} + +:is(:where(.dark) .dark\:bg-indigo-800\/15) { + background-color: rgb(55 48 163 / 0.15); +} + +:is(:where(.dark) .dark\:bg-indigo-800\/20) { + background-color: rgb(55 48 163 / 0.2); +} + +:is(:where(.dark) .dark\:bg-indigo-800\/25) { + background-color: rgb(55 48 163 / 0.25); +} + +:is(:where(.dark) .dark\:bg-indigo-800\/30) { + background-color: rgb(55 48 163 / 0.3); +} + +:is(:where(.dark) .dark\:bg-indigo-800\/35) { + background-color: rgb(55 48 163 / 0.35); +} + +:is(:where(.dark) .dark\:bg-indigo-800\/40) { + background-color: rgb(55 48 163 / 0.4); +} + +:is(:where(.dark) .dark\:bg-indigo-800\/45) { + background-color: rgb(55 48 163 / 0.45); +} + +:is(:where(.dark) .dark\:bg-indigo-800\/5) { + background-color: rgb(55 48 163 / 0.05); +} + +:is(:where(.dark) .dark\:bg-indigo-800\/50) { + background-color: rgb(55 48 163 / 0.5); +} + +:is(:where(.dark) .dark\:bg-indigo-800\/55) { + background-color: rgb(55 48 163 / 0.55); +} + +:is(:where(.dark) .dark\:bg-indigo-800\/60) { + background-color: rgb(55 48 163 / 0.6); +} + +:is(:where(.dark) .dark\:bg-indigo-800\/65) { + background-color: rgb(55 48 163 / 0.65); +} + +:is(:where(.dark) .dark\:bg-indigo-800\/70) { + background-color: rgb(55 48 163 / 0.7); +} + +:is(:where(.dark) .dark\:bg-indigo-800\/75) { + background-color: rgb(55 48 163 / 0.75); +} + +:is(:where(.dark) .dark\:bg-indigo-800\/80) { + background-color: rgb(55 48 163 / 0.8); +} + +:is(:where(.dark) .dark\:bg-indigo-800\/85) { + background-color: rgb(55 48 163 / 0.85); +} + +:is(:where(.dark) .dark\:bg-indigo-800\/90) { + background-color: rgb(55 48 163 / 0.9); +} + +:is(:where(.dark) .dark\:bg-indigo-800\/95) { + background-color: rgb(55 48 163 / 0.95); +} + +:is(:where(.dark) .dark\:bg-indigo-900) { + --tw-bg-opacity: 1; + background-color: rgb(49 46 129 / var(--tw-bg-opacity)); +} + +:is(:where(.dark) .dark\:bg-indigo-900\/0) { + background-color: rgb(49 46 129 / 0); +} + +:is(:where(.dark) .dark\:bg-indigo-900\/10) { + background-color: rgb(49 46 129 / 0.1); +} + +:is(:where(.dark) .dark\:bg-indigo-900\/100) { + background-color: rgb(49 46 129 / 1); +} + +:is(:where(.dark) .dark\:bg-indigo-900\/15) { + background-color: rgb(49 46 129 / 0.15); +} + +:is(:where(.dark) .dark\:bg-indigo-900\/20) { + background-color: rgb(49 46 129 / 0.2); +} + +:is(:where(.dark) .dark\:bg-indigo-900\/25) { + background-color: rgb(49 46 129 / 0.25); +} + +:is(:where(.dark) .dark\:bg-indigo-900\/30) { + background-color: rgb(49 46 129 / 0.3); +} + +:is(:where(.dark) .dark\:bg-indigo-900\/35) { + background-color: rgb(49 46 129 / 0.35); +} + +:is(:where(.dark) .dark\:bg-indigo-900\/40) { + background-color: rgb(49 46 129 / 0.4); +} + +:is(:where(.dark) .dark\:bg-indigo-900\/45) { + background-color: rgb(49 46 129 / 0.45); +} + +:is(:where(.dark) .dark\:bg-indigo-900\/5) { + background-color: rgb(49 46 129 / 0.05); +} + +:is(:where(.dark) .dark\:bg-indigo-900\/50) { + background-color: rgb(49 46 129 / 0.5); +} + +:is(:where(.dark) .dark\:bg-indigo-900\/55) { + background-color: rgb(49 46 129 / 0.55); +} + +:is(:where(.dark) .dark\:bg-indigo-900\/60) { + background-color: rgb(49 46 129 / 0.6); +} + +:is(:where(.dark) .dark\:bg-indigo-900\/65) { + background-color: rgb(49 46 129 / 0.65); +} + +:is(:where(.dark) .dark\:bg-indigo-900\/70) { + background-color: rgb(49 46 129 / 0.7); +} + +:is(:where(.dark) .dark\:bg-indigo-900\/75) { + background-color: rgb(49 46 129 / 0.75); +} + +:is(:where(.dark) .dark\:bg-indigo-900\/80) { + background-color: rgb(49 46 129 / 0.8); +} + +:is(:where(.dark) .dark\:bg-indigo-900\/85) { + background-color: rgb(49 46 129 / 0.85); +} + +:is(:where(.dark) .dark\:bg-indigo-900\/90) { + background-color: rgb(49 46 129 / 0.9); +} + +:is(:where(.dark) .dark\:bg-indigo-900\/95) { + background-color: rgb(49 46 129 / 0.95); +} + +:is(:where(.dark) .dark\:bg-indigo-950) { + --tw-bg-opacity: 1; + background-color: rgb(30 27 75 / var(--tw-bg-opacity)); +} + +:is(:where(.dark) .dark\:bg-orange-100) { + --tw-bg-opacity: 1; + background-color: rgb(255 237 213 / var(--tw-bg-opacity)); +} + +:is(:where(.dark) .dark\:bg-orange-100\/0) { + background-color: rgb(255 237 213 / 0); +} + +:is(:where(.dark) .dark\:bg-orange-100\/10) { + background-color: rgb(255 237 213 / 0.1); +} + +:is(:where(.dark) .dark\:bg-orange-100\/100) { + background-color: rgb(255 237 213 / 1); +} + +:is(:where(.dark) .dark\:bg-orange-100\/15) { + background-color: rgb(255 237 213 / 0.15); +} + +:is(:where(.dark) .dark\:bg-orange-100\/20) { + background-color: rgb(255 237 213 / 0.2); +} + +:is(:where(.dark) .dark\:bg-orange-100\/25) { + background-color: rgb(255 237 213 / 0.25); +} + +:is(:where(.dark) .dark\:bg-orange-100\/30) { + background-color: rgb(255 237 213 / 0.3); +} + +:is(:where(.dark) .dark\:bg-orange-100\/35) { + background-color: rgb(255 237 213 / 0.35); +} + +:is(:where(.dark) .dark\:bg-orange-100\/40) { + background-color: rgb(255 237 213 / 0.4); +} + +:is(:where(.dark) .dark\:bg-orange-100\/45) { + background-color: rgb(255 237 213 / 0.45); +} + +:is(:where(.dark) .dark\:bg-orange-100\/5) { + background-color: rgb(255 237 213 / 0.05); +} + +:is(:where(.dark) .dark\:bg-orange-100\/50) { + background-color: rgb(255 237 213 / 0.5); +} + +:is(:where(.dark) .dark\:bg-orange-100\/55) { + background-color: rgb(255 237 213 / 0.55); +} + +:is(:where(.dark) .dark\:bg-orange-100\/60) { + background-color: rgb(255 237 213 / 0.6); +} + +:is(:where(.dark) .dark\:bg-orange-100\/65) { + background-color: rgb(255 237 213 / 0.65); +} + +:is(:where(.dark) .dark\:bg-orange-100\/70) { + background-color: rgb(255 237 213 / 0.7); +} + +:is(:where(.dark) .dark\:bg-orange-100\/75) { + background-color: rgb(255 237 213 / 0.75); +} + +:is(:where(.dark) .dark\:bg-orange-100\/80) { + background-color: rgb(255 237 213 / 0.8); +} + +:is(:where(.dark) .dark\:bg-orange-100\/85) { + background-color: rgb(255 237 213 / 0.85); +} + +:is(:where(.dark) .dark\:bg-orange-100\/90) { + background-color: rgb(255 237 213 / 0.9); +} + +:is(:where(.dark) .dark\:bg-orange-100\/95) { + background-color: rgb(255 237 213 / 0.95); +} + +:is(:where(.dark) .dark\:bg-orange-50) { + --tw-bg-opacity: 1; + background-color: rgb(255 247 237 / var(--tw-bg-opacity)); +} + +:is(:where(.dark) .dark\:bg-orange-50\/0) { + background-color: rgb(255 247 237 / 0); +} + +:is(:where(.dark) .dark\:bg-orange-50\/10) { + background-color: rgb(255 247 237 / 0.1); +} + +:is(:where(.dark) .dark\:bg-orange-50\/100) { + background-color: rgb(255 247 237 / 1); +} + +:is(:where(.dark) .dark\:bg-orange-50\/15) { + background-color: rgb(255 247 237 / 0.15); +} + +:is(:where(.dark) .dark\:bg-orange-50\/20) { + background-color: rgb(255 247 237 / 0.2); +} + +:is(:where(.dark) .dark\:bg-orange-50\/25) { + background-color: rgb(255 247 237 / 0.25); +} + +:is(:where(.dark) .dark\:bg-orange-50\/30) { + background-color: rgb(255 247 237 / 0.3); +} + +:is(:where(.dark) .dark\:bg-orange-50\/35) { + background-color: rgb(255 247 237 / 0.35); +} + +:is(:where(.dark) .dark\:bg-orange-50\/40) { + background-color: rgb(255 247 237 / 0.4); +} + +:is(:where(.dark) .dark\:bg-orange-50\/45) { + background-color: rgb(255 247 237 / 0.45); +} + +:is(:where(.dark) .dark\:bg-orange-50\/5) { + background-color: rgb(255 247 237 / 0.05); +} + +:is(:where(.dark) .dark\:bg-orange-50\/50) { + background-color: rgb(255 247 237 / 0.5); +} + +:is(:where(.dark) .dark\:bg-orange-50\/55) { + background-color: rgb(255 247 237 / 0.55); +} + +:is(:where(.dark) .dark\:bg-orange-50\/60) { + background-color: rgb(255 247 237 / 0.6); +} + +:is(:where(.dark) .dark\:bg-orange-50\/65) { + background-color: rgb(255 247 237 / 0.65); +} + +:is(:where(.dark) .dark\:bg-orange-50\/70) { + background-color: rgb(255 247 237 / 0.7); +} + +:is(:where(.dark) .dark\:bg-orange-50\/75) { + background-color: rgb(255 247 237 / 0.75); +} + +:is(:where(.dark) .dark\:bg-orange-50\/80) { + background-color: rgb(255 247 237 / 0.8); +} + +:is(:where(.dark) .dark\:bg-orange-50\/85) { + background-color: rgb(255 247 237 / 0.85); +} + +:is(:where(.dark) .dark\:bg-orange-50\/90) { + background-color: rgb(255 247 237 / 0.9); +} + +:is(:where(.dark) .dark\:bg-orange-50\/95) { + background-color: rgb(255 247 237 / 0.95); +} + +:is(:where(.dark) .dark\:bg-orange-500) { + --tw-bg-opacity: 1; + background-color: rgb(249 115 22 / var(--tw-bg-opacity)); +} + +:is(:where(.dark) .dark\:bg-orange-500\/0) { + background-color: rgb(249 115 22 / 0); +} + +:is(:where(.dark) .dark\:bg-orange-500\/10) { + background-color: rgb(249 115 22 / 0.1); +} + +:is(:where(.dark) .dark\:bg-orange-500\/100) { + background-color: rgb(249 115 22 / 1); +} + +:is(:where(.dark) .dark\:bg-orange-500\/15) { + background-color: rgb(249 115 22 / 0.15); +} + +:is(:where(.dark) .dark\:bg-orange-500\/20) { + background-color: rgb(249 115 22 / 0.2); +} + +:is(:where(.dark) .dark\:bg-orange-500\/25) { + background-color: rgb(249 115 22 / 0.25); +} + +:is(:where(.dark) .dark\:bg-orange-500\/30) { + background-color: rgb(249 115 22 / 0.3); +} + +:is(:where(.dark) .dark\:bg-orange-500\/35) { + background-color: rgb(249 115 22 / 0.35); +} + +:is(:where(.dark) .dark\:bg-orange-500\/40) { + background-color: rgb(249 115 22 / 0.4); +} + +:is(:where(.dark) .dark\:bg-orange-500\/45) { + background-color: rgb(249 115 22 / 0.45); +} + +:is(:where(.dark) .dark\:bg-orange-500\/5) { + background-color: rgb(249 115 22 / 0.05); +} + +:is(:where(.dark) .dark\:bg-orange-500\/50) { + background-color: rgb(249 115 22 / 0.5); +} + +:is(:where(.dark) .dark\:bg-orange-500\/55) { + background-color: rgb(249 115 22 / 0.55); +} + +:is(:where(.dark) .dark\:bg-orange-500\/60) { + background-color: rgb(249 115 22 / 0.6); +} + +:is(:where(.dark) .dark\:bg-orange-500\/65) { + background-color: rgb(249 115 22 / 0.65); +} + +:is(:where(.dark) .dark\:bg-orange-500\/70) { + background-color: rgb(249 115 22 / 0.7); +} + +:is(:where(.dark) .dark\:bg-orange-500\/75) { + background-color: rgb(249 115 22 / 0.75); +} + +:is(:where(.dark) .dark\:bg-orange-500\/80) { + background-color: rgb(249 115 22 / 0.8); +} + +:is(:where(.dark) .dark\:bg-orange-500\/85) { + background-color: rgb(249 115 22 / 0.85); +} + +:is(:where(.dark) .dark\:bg-orange-500\/90) { + background-color: rgb(249 115 22 / 0.9); +} + +:is(:where(.dark) .dark\:bg-orange-500\/95) { + background-color: rgb(249 115 22 / 0.95); +} + +:is(:where(.dark) .dark\:bg-orange-600) { + --tw-bg-opacity: 1; + background-color: rgb(234 88 12 / var(--tw-bg-opacity)); +} + +:is(:where(.dark) .dark\:bg-orange-800) { + --tw-bg-opacity: 1; + background-color: rgb(154 52 18 / var(--tw-bg-opacity)); +} + +:is(:where(.dark) .dark\:bg-orange-800\/0) { + background-color: rgb(154 52 18 / 0); +} + +:is(:where(.dark) .dark\:bg-orange-800\/10) { + background-color: rgb(154 52 18 / 0.1); +} + +:is(:where(.dark) .dark\:bg-orange-800\/100) { + background-color: rgb(154 52 18 / 1); +} + +:is(:where(.dark) .dark\:bg-orange-800\/15) { + background-color: rgb(154 52 18 / 0.15); +} + +:is(:where(.dark) .dark\:bg-orange-800\/20) { + background-color: rgb(154 52 18 / 0.2); +} + +:is(:where(.dark) .dark\:bg-orange-800\/25) { + background-color: rgb(154 52 18 / 0.25); +} + +:is(:where(.dark) .dark\:bg-orange-800\/30) { + background-color: rgb(154 52 18 / 0.3); +} + +:is(:where(.dark) .dark\:bg-orange-800\/35) { + background-color: rgb(154 52 18 / 0.35); +} + +:is(:where(.dark) .dark\:bg-orange-800\/40) { + background-color: rgb(154 52 18 / 0.4); +} + +:is(:where(.dark) .dark\:bg-orange-800\/45) { + background-color: rgb(154 52 18 / 0.45); +} + +:is(:where(.dark) .dark\:bg-orange-800\/5) { + background-color: rgb(154 52 18 / 0.05); +} + +:is(:where(.dark) .dark\:bg-orange-800\/50) { + background-color: rgb(154 52 18 / 0.5); +} + +:is(:where(.dark) .dark\:bg-orange-800\/55) { + background-color: rgb(154 52 18 / 0.55); +} + +:is(:where(.dark) .dark\:bg-orange-800\/60) { + background-color: rgb(154 52 18 / 0.6); +} + +:is(:where(.dark) .dark\:bg-orange-800\/65) { + background-color: rgb(154 52 18 / 0.65); +} + +:is(:where(.dark) .dark\:bg-orange-800\/70) { + background-color: rgb(154 52 18 / 0.7); +} + +:is(:where(.dark) .dark\:bg-orange-800\/75) { + background-color: rgb(154 52 18 / 0.75); +} + +:is(:where(.dark) .dark\:bg-orange-800\/80) { + background-color: rgb(154 52 18 / 0.8); +} + +:is(:where(.dark) .dark\:bg-orange-800\/85) { + background-color: rgb(154 52 18 / 0.85); +} + +:is(:where(.dark) .dark\:bg-orange-800\/90) { + background-color: rgb(154 52 18 / 0.9); +} + +:is(:where(.dark) .dark\:bg-orange-800\/95) { + background-color: rgb(154 52 18 / 0.95); +} + +:is(:where(.dark) .dark\:bg-orange-900) { + --tw-bg-opacity: 1; + background-color: rgb(124 45 18 / var(--tw-bg-opacity)); +} + +:is(:where(.dark) .dark\:bg-orange-900\/0) { + background-color: rgb(124 45 18 / 0); +} + +:is(:where(.dark) .dark\:bg-orange-900\/10) { + background-color: rgb(124 45 18 / 0.1); +} + +:is(:where(.dark) .dark\:bg-orange-900\/100) { + background-color: rgb(124 45 18 / 1); +} + +:is(:where(.dark) .dark\:bg-orange-900\/15) { + background-color: rgb(124 45 18 / 0.15); +} + +:is(:where(.dark) .dark\:bg-orange-900\/20) { + background-color: rgb(124 45 18 / 0.2); +} + +:is(:where(.dark) .dark\:bg-orange-900\/25) { + background-color: rgb(124 45 18 / 0.25); +} + +:is(:where(.dark) .dark\:bg-orange-900\/30) { + background-color: rgb(124 45 18 / 0.3); +} + +:is(:where(.dark) .dark\:bg-orange-900\/35) { + background-color: rgb(124 45 18 / 0.35); +} + +:is(:where(.dark) .dark\:bg-orange-900\/40) { + background-color: rgb(124 45 18 / 0.4); +} + +:is(:where(.dark) .dark\:bg-orange-900\/45) { + background-color: rgb(124 45 18 / 0.45); +} + +:is(:where(.dark) .dark\:bg-orange-900\/5) { + background-color: rgb(124 45 18 / 0.05); +} + +:is(:where(.dark) .dark\:bg-orange-900\/50) { + background-color: rgb(124 45 18 / 0.5); +} + +:is(:where(.dark) .dark\:bg-orange-900\/55) { + background-color: rgb(124 45 18 / 0.55); +} + +:is(:where(.dark) .dark\:bg-orange-900\/60) { + background-color: rgb(124 45 18 / 0.6); +} + +:is(:where(.dark) .dark\:bg-orange-900\/65) { + background-color: rgb(124 45 18 / 0.65); +} + +:is(:where(.dark) .dark\:bg-orange-900\/70) { + background-color: rgb(124 45 18 / 0.7); +} + +:is(:where(.dark) .dark\:bg-orange-900\/75) { + background-color: rgb(124 45 18 / 0.75); +} + +:is(:where(.dark) .dark\:bg-orange-900\/80) { + background-color: rgb(124 45 18 / 0.8); +} + +:is(:where(.dark) .dark\:bg-orange-900\/85) { + background-color: rgb(124 45 18 / 0.85); +} + +:is(:where(.dark) .dark\:bg-orange-900\/90) { + background-color: rgb(124 45 18 / 0.9); +} + +:is(:where(.dark) .dark\:bg-orange-900\/95) { + background-color: rgb(124 45 18 / 0.95); +} + +:is(:where(.dark) .dark\:bg-pink-100) { + --tw-bg-opacity: 1; + background-color: rgb(252 231 243 / var(--tw-bg-opacity)); +} + +:is(:where(.dark) .dark\:bg-pink-100\/0) { + background-color: rgb(252 231 243 / 0); +} + +:is(:where(.dark) .dark\:bg-pink-100\/10) { + background-color: rgb(252 231 243 / 0.1); +} + +:is(:where(.dark) .dark\:bg-pink-100\/100) { + background-color: rgb(252 231 243 / 1); +} + +:is(:where(.dark) .dark\:bg-pink-100\/15) { + background-color: rgb(252 231 243 / 0.15); +} + +:is(:where(.dark) .dark\:bg-pink-100\/20) { + background-color: rgb(252 231 243 / 0.2); +} + +:is(:where(.dark) .dark\:bg-pink-100\/25) { + background-color: rgb(252 231 243 / 0.25); +} + +:is(:where(.dark) .dark\:bg-pink-100\/30) { + background-color: rgb(252 231 243 / 0.3); +} + +:is(:where(.dark) .dark\:bg-pink-100\/35) { + background-color: rgb(252 231 243 / 0.35); +} + +:is(:where(.dark) .dark\:bg-pink-100\/40) { + background-color: rgb(252 231 243 / 0.4); +} + +:is(:where(.dark) .dark\:bg-pink-100\/45) { + background-color: rgb(252 231 243 / 0.45); +} + +:is(:where(.dark) .dark\:bg-pink-100\/5) { + background-color: rgb(252 231 243 / 0.05); +} + +:is(:where(.dark) .dark\:bg-pink-100\/50) { + background-color: rgb(252 231 243 / 0.5); +} + +:is(:where(.dark) .dark\:bg-pink-100\/55) { + background-color: rgb(252 231 243 / 0.55); +} + +:is(:where(.dark) .dark\:bg-pink-100\/60) { + background-color: rgb(252 231 243 / 0.6); +} + +:is(:where(.dark) .dark\:bg-pink-100\/65) { + background-color: rgb(252 231 243 / 0.65); +} + +:is(:where(.dark) .dark\:bg-pink-100\/70) { + background-color: rgb(252 231 243 / 0.7); +} + +:is(:where(.dark) .dark\:bg-pink-100\/75) { + background-color: rgb(252 231 243 / 0.75); +} + +:is(:where(.dark) .dark\:bg-pink-100\/80) { + background-color: rgb(252 231 243 / 0.8); +} + +:is(:where(.dark) .dark\:bg-pink-100\/85) { + background-color: rgb(252 231 243 / 0.85); +} + +:is(:where(.dark) .dark\:bg-pink-100\/90) { + background-color: rgb(252 231 243 / 0.9); +} + +:is(:where(.dark) .dark\:bg-pink-100\/95) { + background-color: rgb(252 231 243 / 0.95); +} + +:is(:where(.dark) .dark\:bg-pink-50) { + --tw-bg-opacity: 1; + background-color: rgb(253 242 248 / var(--tw-bg-opacity)); +} + +:is(:where(.dark) .dark\:bg-pink-50\/0) { + background-color: rgb(253 242 248 / 0); +} + +:is(:where(.dark) .dark\:bg-pink-50\/10) { + background-color: rgb(253 242 248 / 0.1); +} + +:is(:where(.dark) .dark\:bg-pink-50\/100) { + background-color: rgb(253 242 248 / 1); +} + +:is(:where(.dark) .dark\:bg-pink-50\/15) { + background-color: rgb(253 242 248 / 0.15); +} + +:is(:where(.dark) .dark\:bg-pink-50\/20) { + background-color: rgb(253 242 248 / 0.2); +} + +:is(:where(.dark) .dark\:bg-pink-50\/25) { + background-color: rgb(253 242 248 / 0.25); +} + +:is(:where(.dark) .dark\:bg-pink-50\/30) { + background-color: rgb(253 242 248 / 0.3); +} + +:is(:where(.dark) .dark\:bg-pink-50\/35) { + background-color: rgb(253 242 248 / 0.35); +} + +:is(:where(.dark) .dark\:bg-pink-50\/40) { + background-color: rgb(253 242 248 / 0.4); +} + +:is(:where(.dark) .dark\:bg-pink-50\/45) { + background-color: rgb(253 242 248 / 0.45); +} + +:is(:where(.dark) .dark\:bg-pink-50\/5) { + background-color: rgb(253 242 248 / 0.05); +} + +:is(:where(.dark) .dark\:bg-pink-50\/50) { + background-color: rgb(253 242 248 / 0.5); +} + +:is(:where(.dark) .dark\:bg-pink-50\/55) { + background-color: rgb(253 242 248 / 0.55); +} + +:is(:where(.dark) .dark\:bg-pink-50\/60) { + background-color: rgb(253 242 248 / 0.6); +} + +:is(:where(.dark) .dark\:bg-pink-50\/65) { + background-color: rgb(253 242 248 / 0.65); +} + +:is(:where(.dark) .dark\:bg-pink-50\/70) { + background-color: rgb(253 242 248 / 0.7); +} + +:is(:where(.dark) .dark\:bg-pink-50\/75) { + background-color: rgb(253 242 248 / 0.75); +} + +:is(:where(.dark) .dark\:bg-pink-50\/80) { + background-color: rgb(253 242 248 / 0.8); +} + +:is(:where(.dark) .dark\:bg-pink-50\/85) { + background-color: rgb(253 242 248 / 0.85); +} + +:is(:where(.dark) .dark\:bg-pink-50\/90) { + background-color: rgb(253 242 248 / 0.9); +} + +:is(:where(.dark) .dark\:bg-pink-50\/95) { + background-color: rgb(253 242 248 / 0.95); +} + +:is(:where(.dark) .dark\:bg-pink-500) { + --tw-bg-opacity: 1; + background-color: rgb(236 72 153 / var(--tw-bg-opacity)); +} + +:is(:where(.dark) .dark\:bg-pink-500\/0) { + background-color: rgb(236 72 153 / 0); +} + +:is(:where(.dark) .dark\:bg-pink-500\/10) { + background-color: rgb(236 72 153 / 0.1); +} + +:is(:where(.dark) .dark\:bg-pink-500\/100) { + background-color: rgb(236 72 153 / 1); +} + +:is(:where(.dark) .dark\:bg-pink-500\/15) { + background-color: rgb(236 72 153 / 0.15); +} + +:is(:where(.dark) .dark\:bg-pink-500\/20) { + background-color: rgb(236 72 153 / 0.2); +} + +:is(:where(.dark) .dark\:bg-pink-500\/25) { + background-color: rgb(236 72 153 / 0.25); +} + +:is(:where(.dark) .dark\:bg-pink-500\/30) { + background-color: rgb(236 72 153 / 0.3); +} + +:is(:where(.dark) .dark\:bg-pink-500\/35) { + background-color: rgb(236 72 153 / 0.35); +} + +:is(:where(.dark) .dark\:bg-pink-500\/40) { + background-color: rgb(236 72 153 / 0.4); +} + +:is(:where(.dark) .dark\:bg-pink-500\/45) { + background-color: rgb(236 72 153 / 0.45); +} + +:is(:where(.dark) .dark\:bg-pink-500\/5) { + background-color: rgb(236 72 153 / 0.05); +} + +:is(:where(.dark) .dark\:bg-pink-500\/50) { + background-color: rgb(236 72 153 / 0.5); +} + +:is(:where(.dark) .dark\:bg-pink-500\/55) { + background-color: rgb(236 72 153 / 0.55); +} + +:is(:where(.dark) .dark\:bg-pink-500\/60) { + background-color: rgb(236 72 153 / 0.6); +} + +:is(:where(.dark) .dark\:bg-pink-500\/65) { + background-color: rgb(236 72 153 / 0.65); +} + +:is(:where(.dark) .dark\:bg-pink-500\/70) { + background-color: rgb(236 72 153 / 0.7); +} + +:is(:where(.dark) .dark\:bg-pink-500\/75) { + background-color: rgb(236 72 153 / 0.75); +} + +:is(:where(.dark) .dark\:bg-pink-500\/80) { + background-color: rgb(236 72 153 / 0.8); +} + +:is(:where(.dark) .dark\:bg-pink-500\/85) { + background-color: rgb(236 72 153 / 0.85); +} + +:is(:where(.dark) .dark\:bg-pink-500\/90) { + background-color: rgb(236 72 153 / 0.9); +} + +:is(:where(.dark) .dark\:bg-pink-500\/95) { + background-color: rgb(236 72 153 / 0.95); +} + +:is(:where(.dark) .dark\:bg-pink-600) { + --tw-bg-opacity: 1; + background-color: rgb(219 39 119 / var(--tw-bg-opacity)); +} + +:is(:where(.dark) .dark\:bg-pink-800) { + --tw-bg-opacity: 1; + background-color: rgb(157 23 77 / var(--tw-bg-opacity)); +} + +:is(:where(.dark) .dark\:bg-pink-800\/0) { + background-color: rgb(157 23 77 / 0); +} + +:is(:where(.dark) .dark\:bg-pink-800\/10) { + background-color: rgb(157 23 77 / 0.1); +} + +:is(:where(.dark) .dark\:bg-pink-800\/100) { + background-color: rgb(157 23 77 / 1); +} + +:is(:where(.dark) .dark\:bg-pink-800\/15) { + background-color: rgb(157 23 77 / 0.15); +} + +:is(:where(.dark) .dark\:bg-pink-800\/20) { + background-color: rgb(157 23 77 / 0.2); +} + +:is(:where(.dark) .dark\:bg-pink-800\/25) { + background-color: rgb(157 23 77 / 0.25); +} + +:is(:where(.dark) .dark\:bg-pink-800\/30) { + background-color: rgb(157 23 77 / 0.3); +} + +:is(:where(.dark) .dark\:bg-pink-800\/35) { + background-color: rgb(157 23 77 / 0.35); +} + +:is(:where(.dark) .dark\:bg-pink-800\/40) { + background-color: rgb(157 23 77 / 0.4); +} + +:is(:where(.dark) .dark\:bg-pink-800\/45) { + background-color: rgb(157 23 77 / 0.45); +} + +:is(:where(.dark) .dark\:bg-pink-800\/5) { + background-color: rgb(157 23 77 / 0.05); +} + +:is(:where(.dark) .dark\:bg-pink-800\/50) { + background-color: rgb(157 23 77 / 0.5); +} + +:is(:where(.dark) .dark\:bg-pink-800\/55) { + background-color: rgb(157 23 77 / 0.55); +} + +:is(:where(.dark) .dark\:bg-pink-800\/60) { + background-color: rgb(157 23 77 / 0.6); +} + +:is(:where(.dark) .dark\:bg-pink-800\/65) { + background-color: rgb(157 23 77 / 0.65); +} + +:is(:where(.dark) .dark\:bg-pink-800\/70) { + background-color: rgb(157 23 77 / 0.7); +} + +:is(:where(.dark) .dark\:bg-pink-800\/75) { + background-color: rgb(157 23 77 / 0.75); +} + +:is(:where(.dark) .dark\:bg-pink-800\/80) { + background-color: rgb(157 23 77 / 0.8); +} + +:is(:where(.dark) .dark\:bg-pink-800\/85) { + background-color: rgb(157 23 77 / 0.85); +} + +:is(:where(.dark) .dark\:bg-pink-800\/90) { + background-color: rgb(157 23 77 / 0.9); +} + +:is(:where(.dark) .dark\:bg-pink-800\/95) { + background-color: rgb(157 23 77 / 0.95); +} + +:is(:where(.dark) .dark\:bg-pink-900) { + --tw-bg-opacity: 1; + background-color: rgb(131 24 67 / var(--tw-bg-opacity)); +} + +:is(:where(.dark) .dark\:bg-pink-900\/0) { + background-color: rgb(131 24 67 / 0); +} + +:is(:where(.dark) .dark\:bg-pink-900\/10) { + background-color: rgb(131 24 67 / 0.1); +} + +:is(:where(.dark) .dark\:bg-pink-900\/100) { + background-color: rgb(131 24 67 / 1); +} + +:is(:where(.dark) .dark\:bg-pink-900\/15) { + background-color: rgb(131 24 67 / 0.15); +} + +:is(:where(.dark) .dark\:bg-pink-900\/20) { + background-color: rgb(131 24 67 / 0.2); +} + +:is(:where(.dark) .dark\:bg-pink-900\/25) { + background-color: rgb(131 24 67 / 0.25); +} + +:is(:where(.dark) .dark\:bg-pink-900\/30) { + background-color: rgb(131 24 67 / 0.3); +} + +:is(:where(.dark) .dark\:bg-pink-900\/35) { + background-color: rgb(131 24 67 / 0.35); +} + +:is(:where(.dark) .dark\:bg-pink-900\/40) { + background-color: rgb(131 24 67 / 0.4); +} + +:is(:where(.dark) .dark\:bg-pink-900\/45) { + background-color: rgb(131 24 67 / 0.45); +} + +:is(:where(.dark) .dark\:bg-pink-900\/5) { + background-color: rgb(131 24 67 / 0.05); +} + +:is(:where(.dark) .dark\:bg-pink-900\/50) { + background-color: rgb(131 24 67 / 0.5); +} + +:is(:where(.dark) .dark\:bg-pink-900\/55) { + background-color: rgb(131 24 67 / 0.55); +} + +:is(:where(.dark) .dark\:bg-pink-900\/60) { + background-color: rgb(131 24 67 / 0.6); +} + +:is(:where(.dark) .dark\:bg-pink-900\/65) { + background-color: rgb(131 24 67 / 0.65); +} + +:is(:where(.dark) .dark\:bg-pink-900\/70) { + background-color: rgb(131 24 67 / 0.7); +} + +:is(:where(.dark) .dark\:bg-pink-900\/75) { + background-color: rgb(131 24 67 / 0.75); +} + +:is(:where(.dark) .dark\:bg-pink-900\/80) { + background-color: rgb(131 24 67 / 0.8); +} + +:is(:where(.dark) .dark\:bg-pink-900\/85) { + background-color: rgb(131 24 67 / 0.85); +} + +:is(:where(.dark) .dark\:bg-pink-900\/90) { + background-color: rgb(131 24 67 / 0.9); +} + +:is(:where(.dark) .dark\:bg-pink-900\/95) { + background-color: rgb(131 24 67 / 0.95); +} + +:is(:where(.dark) .dark\:bg-purple-100) { + --tw-bg-opacity: 1; + background-color: rgb(243 232 255 / var(--tw-bg-opacity)); +} + +:is(:where(.dark) .dark\:bg-purple-100\/0) { + background-color: rgb(243 232 255 / 0); +} + +:is(:where(.dark) .dark\:bg-purple-100\/10) { + background-color: rgb(243 232 255 / 0.1); +} + +:is(:where(.dark) .dark\:bg-purple-100\/100) { + background-color: rgb(243 232 255 / 1); +} + +:is(:where(.dark) .dark\:bg-purple-100\/15) { + background-color: rgb(243 232 255 / 0.15); +} + +:is(:where(.dark) .dark\:bg-purple-100\/20) { + background-color: rgb(243 232 255 / 0.2); +} + +:is(:where(.dark) .dark\:bg-purple-100\/25) { + background-color: rgb(243 232 255 / 0.25); +} + +:is(:where(.dark) .dark\:bg-purple-100\/30) { + background-color: rgb(243 232 255 / 0.3); +} + +:is(:where(.dark) .dark\:bg-purple-100\/35) { + background-color: rgb(243 232 255 / 0.35); +} + +:is(:where(.dark) .dark\:bg-purple-100\/40) { + background-color: rgb(243 232 255 / 0.4); +} + +:is(:where(.dark) .dark\:bg-purple-100\/45) { + background-color: rgb(243 232 255 / 0.45); +} + +:is(:where(.dark) .dark\:bg-purple-100\/5) { + background-color: rgb(243 232 255 / 0.05); +} + +:is(:where(.dark) .dark\:bg-purple-100\/50) { + background-color: rgb(243 232 255 / 0.5); +} + +:is(:where(.dark) .dark\:bg-purple-100\/55) { + background-color: rgb(243 232 255 / 0.55); +} + +:is(:where(.dark) .dark\:bg-purple-100\/60) { + background-color: rgb(243 232 255 / 0.6); +} + +:is(:where(.dark) .dark\:bg-purple-100\/65) { + background-color: rgb(243 232 255 / 0.65); +} + +:is(:where(.dark) .dark\:bg-purple-100\/70) { + background-color: rgb(243 232 255 / 0.7); +} + +:is(:where(.dark) .dark\:bg-purple-100\/75) { + background-color: rgb(243 232 255 / 0.75); +} + +:is(:where(.dark) .dark\:bg-purple-100\/80) { + background-color: rgb(243 232 255 / 0.8); +} + +:is(:where(.dark) .dark\:bg-purple-100\/85) { + background-color: rgb(243 232 255 / 0.85); +} + +:is(:where(.dark) .dark\:bg-purple-100\/90) { + background-color: rgb(243 232 255 / 0.9); +} + +:is(:where(.dark) .dark\:bg-purple-100\/95) { + background-color: rgb(243 232 255 / 0.95); +} + +:is(:where(.dark) .dark\:bg-purple-50) { + --tw-bg-opacity: 1; + background-color: rgb(250 245 255 / var(--tw-bg-opacity)); +} + +:is(:where(.dark) .dark\:bg-purple-50\/0) { + background-color: rgb(250 245 255 / 0); +} + +:is(:where(.dark) .dark\:bg-purple-50\/10) { + background-color: rgb(250 245 255 / 0.1); +} + +:is(:where(.dark) .dark\:bg-purple-50\/100) { + background-color: rgb(250 245 255 / 1); +} + +:is(:where(.dark) .dark\:bg-purple-50\/15) { + background-color: rgb(250 245 255 / 0.15); +} + +:is(:where(.dark) .dark\:bg-purple-50\/20) { + background-color: rgb(250 245 255 / 0.2); +} + +:is(:where(.dark) .dark\:bg-purple-50\/25) { + background-color: rgb(250 245 255 / 0.25); +} + +:is(:where(.dark) .dark\:bg-purple-50\/30) { + background-color: rgb(250 245 255 / 0.3); +} + +:is(:where(.dark) .dark\:bg-purple-50\/35) { + background-color: rgb(250 245 255 / 0.35); +} + +:is(:where(.dark) .dark\:bg-purple-50\/40) { + background-color: rgb(250 245 255 / 0.4); +} + +:is(:where(.dark) .dark\:bg-purple-50\/45) { + background-color: rgb(250 245 255 / 0.45); +} + +:is(:where(.dark) .dark\:bg-purple-50\/5) { + background-color: rgb(250 245 255 / 0.05); +} + +:is(:where(.dark) .dark\:bg-purple-50\/50) { + background-color: rgb(250 245 255 / 0.5); +} + +:is(:where(.dark) .dark\:bg-purple-50\/55) { + background-color: rgb(250 245 255 / 0.55); +} + +:is(:where(.dark) .dark\:bg-purple-50\/60) { + background-color: rgb(250 245 255 / 0.6); +} + +:is(:where(.dark) .dark\:bg-purple-50\/65) { + background-color: rgb(250 245 255 / 0.65); +} + +:is(:where(.dark) .dark\:bg-purple-50\/70) { + background-color: rgb(250 245 255 / 0.7); +} + +:is(:where(.dark) .dark\:bg-purple-50\/75) { + background-color: rgb(250 245 255 / 0.75); +} + +:is(:where(.dark) .dark\:bg-purple-50\/80) { + background-color: rgb(250 245 255 / 0.8); +} + +:is(:where(.dark) .dark\:bg-purple-50\/85) { + background-color: rgb(250 245 255 / 0.85); +} + +:is(:where(.dark) .dark\:bg-purple-50\/90) { + background-color: rgb(250 245 255 / 0.9); +} + +:is(:where(.dark) .dark\:bg-purple-50\/95) { + background-color: rgb(250 245 255 / 0.95); +} + +:is(:where(.dark) .dark\:bg-purple-500) { + --tw-bg-opacity: 1; + background-color: rgb(168 85 247 / var(--tw-bg-opacity)); +} + +:is(:where(.dark) .dark\:bg-purple-500\/0) { + background-color: rgb(168 85 247 / 0); +} + +:is(:where(.dark) .dark\:bg-purple-500\/10) { + background-color: rgb(168 85 247 / 0.1); +} + +:is(:where(.dark) .dark\:bg-purple-500\/100) { + background-color: rgb(168 85 247 / 1); +} + +:is(:where(.dark) .dark\:bg-purple-500\/15) { + background-color: rgb(168 85 247 / 0.15); +} + +:is(:where(.dark) .dark\:bg-purple-500\/20) { + background-color: rgb(168 85 247 / 0.2); +} + +:is(:where(.dark) .dark\:bg-purple-500\/25) { + background-color: rgb(168 85 247 / 0.25); +} + +:is(:where(.dark) .dark\:bg-purple-500\/30) { + background-color: rgb(168 85 247 / 0.3); +} + +:is(:where(.dark) .dark\:bg-purple-500\/35) { + background-color: rgb(168 85 247 / 0.35); +} + +:is(:where(.dark) .dark\:bg-purple-500\/40) { + background-color: rgb(168 85 247 / 0.4); +} + +:is(:where(.dark) .dark\:bg-purple-500\/45) { + background-color: rgb(168 85 247 / 0.45); +} + +:is(:where(.dark) .dark\:bg-purple-500\/5) { + background-color: rgb(168 85 247 / 0.05); +} + +:is(:where(.dark) .dark\:bg-purple-500\/50) { + background-color: rgb(168 85 247 / 0.5); +} + +:is(:where(.dark) .dark\:bg-purple-500\/55) { + background-color: rgb(168 85 247 / 0.55); +} + +:is(:where(.dark) .dark\:bg-purple-500\/60) { + background-color: rgb(168 85 247 / 0.6); +} + +:is(:where(.dark) .dark\:bg-purple-500\/65) { + background-color: rgb(168 85 247 / 0.65); +} + +:is(:where(.dark) .dark\:bg-purple-500\/70) { + background-color: rgb(168 85 247 / 0.7); +} + +:is(:where(.dark) .dark\:bg-purple-500\/75) { + background-color: rgb(168 85 247 / 0.75); +} + +:is(:where(.dark) .dark\:bg-purple-500\/80) { + background-color: rgb(168 85 247 / 0.8); +} + +:is(:where(.dark) .dark\:bg-purple-500\/85) { + background-color: rgb(168 85 247 / 0.85); +} + +:is(:where(.dark) .dark\:bg-purple-500\/90) { + background-color: rgb(168 85 247 / 0.9); +} + +:is(:where(.dark) .dark\:bg-purple-500\/95) { + background-color: rgb(168 85 247 / 0.95); +} + +:is(:where(.dark) .dark\:bg-purple-800) { + --tw-bg-opacity: 1; + background-color: rgb(107 33 168 / var(--tw-bg-opacity)); +} + +:is(:where(.dark) .dark\:bg-purple-800\/0) { + background-color: rgb(107 33 168 / 0); +} + +:is(:where(.dark) .dark\:bg-purple-800\/10) { + background-color: rgb(107 33 168 / 0.1); +} + +:is(:where(.dark) .dark\:bg-purple-800\/100) { + background-color: rgb(107 33 168 / 1); +} + +:is(:where(.dark) .dark\:bg-purple-800\/15) { + background-color: rgb(107 33 168 / 0.15); +} + +:is(:where(.dark) .dark\:bg-purple-800\/20) { + background-color: rgb(107 33 168 / 0.2); +} + +:is(:where(.dark) .dark\:bg-purple-800\/25) { + background-color: rgb(107 33 168 / 0.25); +} + +:is(:where(.dark) .dark\:bg-purple-800\/30) { + background-color: rgb(107 33 168 / 0.3); +} + +:is(:where(.dark) .dark\:bg-purple-800\/35) { + background-color: rgb(107 33 168 / 0.35); +} + +:is(:where(.dark) .dark\:bg-purple-800\/40) { + background-color: rgb(107 33 168 / 0.4); +} + +:is(:where(.dark) .dark\:bg-purple-800\/45) { + background-color: rgb(107 33 168 / 0.45); +} + +:is(:where(.dark) .dark\:bg-purple-800\/5) { + background-color: rgb(107 33 168 / 0.05); +} + +:is(:where(.dark) .dark\:bg-purple-800\/50) { + background-color: rgb(107 33 168 / 0.5); +} + +:is(:where(.dark) .dark\:bg-purple-800\/55) { + background-color: rgb(107 33 168 / 0.55); +} + +:is(:where(.dark) .dark\:bg-purple-800\/60) { + background-color: rgb(107 33 168 / 0.6); +} + +:is(:where(.dark) .dark\:bg-purple-800\/65) { + background-color: rgb(107 33 168 / 0.65); +} + +:is(:where(.dark) .dark\:bg-purple-800\/70) { + background-color: rgb(107 33 168 / 0.7); +} + +:is(:where(.dark) .dark\:bg-purple-800\/75) { + background-color: rgb(107 33 168 / 0.75); +} + +:is(:where(.dark) .dark\:bg-purple-800\/80) { + background-color: rgb(107 33 168 / 0.8); +} + +:is(:where(.dark) .dark\:bg-purple-800\/85) { + background-color: rgb(107 33 168 / 0.85); +} + +:is(:where(.dark) .dark\:bg-purple-800\/90) { + background-color: rgb(107 33 168 / 0.9); +} + +:is(:where(.dark) .dark\:bg-purple-800\/95) { + background-color: rgb(107 33 168 / 0.95); +} + +:is(:where(.dark) .dark\:bg-purple-900) { + --tw-bg-opacity: 1; + background-color: rgb(88 28 135 / var(--tw-bg-opacity)); +} + +:is(:where(.dark) .dark\:bg-purple-900\/0) { + background-color: rgb(88 28 135 / 0); +} + +:is(:where(.dark) .dark\:bg-purple-900\/10) { + background-color: rgb(88 28 135 / 0.1); +} + +:is(:where(.dark) .dark\:bg-purple-900\/100) { + background-color: rgb(88 28 135 / 1); +} + +:is(:where(.dark) .dark\:bg-purple-900\/15) { + background-color: rgb(88 28 135 / 0.15); +} + +:is(:where(.dark) .dark\:bg-purple-900\/20) { + background-color: rgb(88 28 135 / 0.2); +} + +:is(:where(.dark) .dark\:bg-purple-900\/25) { + background-color: rgb(88 28 135 / 0.25); +} + +:is(:where(.dark) .dark\:bg-purple-900\/30) { + background-color: rgb(88 28 135 / 0.3); +} + +:is(:where(.dark) .dark\:bg-purple-900\/35) { + background-color: rgb(88 28 135 / 0.35); +} + +:is(:where(.dark) .dark\:bg-purple-900\/40) { + background-color: rgb(88 28 135 / 0.4); +} + +:is(:where(.dark) .dark\:bg-purple-900\/45) { + background-color: rgb(88 28 135 / 0.45); +} + +:is(:where(.dark) .dark\:bg-purple-900\/5) { + background-color: rgb(88 28 135 / 0.05); +} + +:is(:where(.dark) .dark\:bg-purple-900\/50) { + background-color: rgb(88 28 135 / 0.5); +} + +:is(:where(.dark) .dark\:bg-purple-900\/55) { + background-color: rgb(88 28 135 / 0.55); +} + +:is(:where(.dark) .dark\:bg-purple-900\/60) { + background-color: rgb(88 28 135 / 0.6); +} + +:is(:where(.dark) .dark\:bg-purple-900\/65) { + background-color: rgb(88 28 135 / 0.65); +} + +:is(:where(.dark) .dark\:bg-purple-900\/70) { + background-color: rgb(88 28 135 / 0.7); +} + +:is(:where(.dark) .dark\:bg-purple-900\/75) { + background-color: rgb(88 28 135 / 0.75); +} + +:is(:where(.dark) .dark\:bg-purple-900\/80) { + background-color: rgb(88 28 135 / 0.8); +} + +:is(:where(.dark) .dark\:bg-purple-900\/85) { + background-color: rgb(88 28 135 / 0.85); +} + +:is(:where(.dark) .dark\:bg-purple-900\/90) { + background-color: rgb(88 28 135 / 0.9); +} + +:is(:where(.dark) .dark\:bg-purple-900\/95) { + background-color: rgb(88 28 135 / 0.95); +} + +:is(:where(.dark) .dark\:bg-slate-900) { + --tw-bg-opacity: 1; + background-color: rgb(15 23 42 / var(--tw-bg-opacity)); +} + +:is(:where(.dark) .dark\:bg-yellow-100) { + --tw-bg-opacity: 1; + background-color: rgb(254 249 195 / var(--tw-bg-opacity)); +} + +:is(:where(.dark) .dark\:bg-yellow-100\/0) { + background-color: rgb(254 249 195 / 0); +} + +:is(:where(.dark) .dark\:bg-yellow-100\/10) { + background-color: rgb(254 249 195 / 0.1); +} + +:is(:where(.dark) .dark\:bg-yellow-100\/100) { + background-color: rgb(254 249 195 / 1); +} + +:is(:where(.dark) .dark\:bg-yellow-100\/15) { + background-color: rgb(254 249 195 / 0.15); +} + +:is(:where(.dark) .dark\:bg-yellow-100\/20) { + background-color: rgb(254 249 195 / 0.2); +} + +:is(:where(.dark) .dark\:bg-yellow-100\/25) { + background-color: rgb(254 249 195 / 0.25); +} + +:is(:where(.dark) .dark\:bg-yellow-100\/30) { + background-color: rgb(254 249 195 / 0.3); +} + +:is(:where(.dark) .dark\:bg-yellow-100\/35) { + background-color: rgb(254 249 195 / 0.35); +} + +:is(:where(.dark) .dark\:bg-yellow-100\/40) { + background-color: rgb(254 249 195 / 0.4); +} + +:is(:where(.dark) .dark\:bg-yellow-100\/45) { + background-color: rgb(254 249 195 / 0.45); +} + +:is(:where(.dark) .dark\:bg-yellow-100\/5) { + background-color: rgb(254 249 195 / 0.05); +} + +:is(:where(.dark) .dark\:bg-yellow-100\/50) { + background-color: rgb(254 249 195 / 0.5); +} + +:is(:where(.dark) .dark\:bg-yellow-100\/55) { + background-color: rgb(254 249 195 / 0.55); +} + +:is(:where(.dark) .dark\:bg-yellow-100\/60) { + background-color: rgb(254 249 195 / 0.6); +} + +:is(:where(.dark) .dark\:bg-yellow-100\/65) { + background-color: rgb(254 249 195 / 0.65); +} + +:is(:where(.dark) .dark\:bg-yellow-100\/70) { + background-color: rgb(254 249 195 / 0.7); +} + +:is(:where(.dark) .dark\:bg-yellow-100\/75) { + background-color: rgb(254 249 195 / 0.75); +} + +:is(:where(.dark) .dark\:bg-yellow-100\/80) { + background-color: rgb(254 249 195 / 0.8); +} + +:is(:where(.dark) .dark\:bg-yellow-100\/85) { + background-color: rgb(254 249 195 / 0.85); +} + +:is(:where(.dark) .dark\:bg-yellow-100\/90) { + background-color: rgb(254 249 195 / 0.9); +} + +:is(:where(.dark) .dark\:bg-yellow-100\/95) { + background-color: rgb(254 249 195 / 0.95); +} + +:is(:where(.dark) .dark\:bg-yellow-50) { + --tw-bg-opacity: 1; + background-color: rgb(254 252 232 / var(--tw-bg-opacity)); +} + +:is(:where(.dark) .dark\:bg-yellow-50\/0) { + background-color: rgb(254 252 232 / 0); +} + +:is(:where(.dark) .dark\:bg-yellow-50\/10) { + background-color: rgb(254 252 232 / 0.1); +} + +:is(:where(.dark) .dark\:bg-yellow-50\/100) { + background-color: rgb(254 252 232 / 1); +} + +:is(:where(.dark) .dark\:bg-yellow-50\/15) { + background-color: rgb(254 252 232 / 0.15); +} + +:is(:where(.dark) .dark\:bg-yellow-50\/20) { + background-color: rgb(254 252 232 / 0.2); +} + +:is(:where(.dark) .dark\:bg-yellow-50\/25) { + background-color: rgb(254 252 232 / 0.25); +} + +:is(:where(.dark) .dark\:bg-yellow-50\/30) { + background-color: rgb(254 252 232 / 0.3); +} + +:is(:where(.dark) .dark\:bg-yellow-50\/35) { + background-color: rgb(254 252 232 / 0.35); +} + +:is(:where(.dark) .dark\:bg-yellow-50\/40) { + background-color: rgb(254 252 232 / 0.4); +} + +:is(:where(.dark) .dark\:bg-yellow-50\/45) { + background-color: rgb(254 252 232 / 0.45); +} + +:is(:where(.dark) .dark\:bg-yellow-50\/5) { + background-color: rgb(254 252 232 / 0.05); +} + +:is(:where(.dark) .dark\:bg-yellow-50\/50) { + background-color: rgb(254 252 232 / 0.5); +} + +:is(:where(.dark) .dark\:bg-yellow-50\/55) { + background-color: rgb(254 252 232 / 0.55); +} + +:is(:where(.dark) .dark\:bg-yellow-50\/60) { + background-color: rgb(254 252 232 / 0.6); +} + +:is(:where(.dark) .dark\:bg-yellow-50\/65) { + background-color: rgb(254 252 232 / 0.65); +} + +:is(:where(.dark) .dark\:bg-yellow-50\/70) { + background-color: rgb(254 252 232 / 0.7); +} + +:is(:where(.dark) .dark\:bg-yellow-50\/75) { + background-color: rgb(254 252 232 / 0.75); +} + +:is(:where(.dark) .dark\:bg-yellow-50\/80) { + background-color: rgb(254 252 232 / 0.8); +} + +:is(:where(.dark) .dark\:bg-yellow-50\/85) { + background-color: rgb(254 252 232 / 0.85); +} + +:is(:where(.dark) .dark\:bg-yellow-50\/90) { + background-color: rgb(254 252 232 / 0.9); +} + +:is(:where(.dark) .dark\:bg-yellow-50\/95) { + background-color: rgb(254 252 232 / 0.95); +} + +:is(:where(.dark) .dark\:bg-yellow-500) { + --tw-bg-opacity: 1; + background-color: rgb(234 179 8 / var(--tw-bg-opacity)); +} + +:is(:where(.dark) .dark\:bg-yellow-500\/0) { + background-color: rgb(234 179 8 / 0); +} + +:is(:where(.dark) .dark\:bg-yellow-500\/10) { + background-color: rgb(234 179 8 / 0.1); +} + +:is(:where(.dark) .dark\:bg-yellow-500\/100) { + background-color: rgb(234 179 8 / 1); +} + +:is(:where(.dark) .dark\:bg-yellow-500\/15) { + background-color: rgb(234 179 8 / 0.15); +} + +:is(:where(.dark) .dark\:bg-yellow-500\/20) { + background-color: rgb(234 179 8 / 0.2); +} + +:is(:where(.dark) .dark\:bg-yellow-500\/25) { + background-color: rgb(234 179 8 / 0.25); +} + +:is(:where(.dark) .dark\:bg-yellow-500\/30) { + background-color: rgb(234 179 8 / 0.3); +} + +:is(:where(.dark) .dark\:bg-yellow-500\/35) { + background-color: rgb(234 179 8 / 0.35); +} + +:is(:where(.dark) .dark\:bg-yellow-500\/40) { + background-color: rgb(234 179 8 / 0.4); +} + +:is(:where(.dark) .dark\:bg-yellow-500\/45) { + background-color: rgb(234 179 8 / 0.45); +} + +:is(:where(.dark) .dark\:bg-yellow-500\/5) { + background-color: rgb(234 179 8 / 0.05); +} + +:is(:where(.dark) .dark\:bg-yellow-500\/50) { + background-color: rgb(234 179 8 / 0.5); +} + +:is(:where(.dark) .dark\:bg-yellow-500\/55) { + background-color: rgb(234 179 8 / 0.55); +} + +:is(:where(.dark) .dark\:bg-yellow-500\/60) { + background-color: rgb(234 179 8 / 0.6); +} + +:is(:where(.dark) .dark\:bg-yellow-500\/65) { + background-color: rgb(234 179 8 / 0.65); +} + +:is(:where(.dark) .dark\:bg-yellow-500\/70) { + background-color: rgb(234 179 8 / 0.7); +} + +:is(:where(.dark) .dark\:bg-yellow-500\/75) { + background-color: rgb(234 179 8 / 0.75); +} + +:is(:where(.dark) .dark\:bg-yellow-500\/80) { + background-color: rgb(234 179 8 / 0.8); +} + +:is(:where(.dark) .dark\:bg-yellow-500\/85) { + background-color: rgb(234 179 8 / 0.85); +} + +:is(:where(.dark) .dark\:bg-yellow-500\/90) { + background-color: rgb(234 179 8 / 0.9); +} + +:is(:where(.dark) .dark\:bg-yellow-500\/95) { + background-color: rgb(234 179 8 / 0.95); +} + +:is(:where(.dark) .dark\:bg-yellow-800) { + --tw-bg-opacity: 1; + background-color: rgb(133 77 14 / var(--tw-bg-opacity)); +} + +:is(:where(.dark) .dark\:bg-yellow-800\/0) { + background-color: rgb(133 77 14 / 0); +} + +:is(:where(.dark) .dark\:bg-yellow-800\/10) { + background-color: rgb(133 77 14 / 0.1); +} + +:is(:where(.dark) .dark\:bg-yellow-800\/100) { + background-color: rgb(133 77 14 / 1); +} + +:is(:where(.dark) .dark\:bg-yellow-800\/15) { + background-color: rgb(133 77 14 / 0.15); +} + +:is(:where(.dark) .dark\:bg-yellow-800\/20) { + background-color: rgb(133 77 14 / 0.2); +} + +:is(:where(.dark) .dark\:bg-yellow-800\/25) { + background-color: rgb(133 77 14 / 0.25); +} + +:is(:where(.dark) .dark\:bg-yellow-800\/30) { + background-color: rgb(133 77 14 / 0.3); +} + +:is(:where(.dark) .dark\:bg-yellow-800\/35) { + background-color: rgb(133 77 14 / 0.35); +} + +:is(:where(.dark) .dark\:bg-yellow-800\/40) { + background-color: rgb(133 77 14 / 0.4); +} + +:is(:where(.dark) .dark\:bg-yellow-800\/45) { + background-color: rgb(133 77 14 / 0.45); +} + +:is(:where(.dark) .dark\:bg-yellow-800\/5) { + background-color: rgb(133 77 14 / 0.05); +} + +:is(:where(.dark) .dark\:bg-yellow-800\/50) { + background-color: rgb(133 77 14 / 0.5); +} + +:is(:where(.dark) .dark\:bg-yellow-800\/55) { + background-color: rgb(133 77 14 / 0.55); +} + +:is(:where(.dark) .dark\:bg-yellow-800\/60) { + background-color: rgb(133 77 14 / 0.6); +} + +:is(:where(.dark) .dark\:bg-yellow-800\/65) { + background-color: rgb(133 77 14 / 0.65); +} + +:is(:where(.dark) .dark\:bg-yellow-800\/70) { + background-color: rgb(133 77 14 / 0.7); +} + +:is(:where(.dark) .dark\:bg-yellow-800\/75) { + background-color: rgb(133 77 14 / 0.75); +} + +:is(:where(.dark) .dark\:bg-yellow-800\/80) { + background-color: rgb(133 77 14 / 0.8); +} + +:is(:where(.dark) .dark\:bg-yellow-800\/85) { + background-color: rgb(133 77 14 / 0.85); +} + +:is(:where(.dark) .dark\:bg-yellow-800\/90) { + background-color: rgb(133 77 14 / 0.9); +} + +:is(:where(.dark) .dark\:bg-yellow-800\/95) { + background-color: rgb(133 77 14 / 0.95); +} + +:is(:where(.dark) .dark\:bg-yellow-900) { + --tw-bg-opacity: 1; + background-color: rgb(113 63 18 / var(--tw-bg-opacity)); +} + +:is(:where(.dark) .dark\:bg-yellow-900\/0) { + background-color: rgb(113 63 18 / 0); +} + +:is(:where(.dark) .dark\:bg-yellow-900\/10) { + background-color: rgb(113 63 18 / 0.1); +} + +:is(:where(.dark) .dark\:bg-yellow-900\/100) { + background-color: rgb(113 63 18 / 1); +} + +:is(:where(.dark) .dark\:bg-yellow-900\/15) { + background-color: rgb(113 63 18 / 0.15); +} + +:is(:where(.dark) .dark\:bg-yellow-900\/20) { + background-color: rgb(113 63 18 / 0.2); +} + +:is(:where(.dark) .dark\:bg-yellow-900\/25) { + background-color: rgb(113 63 18 / 0.25); +} + +:is(:where(.dark) .dark\:bg-yellow-900\/30) { + background-color: rgb(113 63 18 / 0.3); +} + +:is(:where(.dark) .dark\:bg-yellow-900\/35) { + background-color: rgb(113 63 18 / 0.35); +} + +:is(:where(.dark) .dark\:bg-yellow-900\/40) { + background-color: rgb(113 63 18 / 0.4); +} + +:is(:where(.dark) .dark\:bg-yellow-900\/45) { + background-color: rgb(113 63 18 / 0.45); +} + +:is(:where(.dark) .dark\:bg-yellow-900\/5) { + background-color: rgb(113 63 18 / 0.05); +} + +:is(:where(.dark) .dark\:bg-yellow-900\/50) { + background-color: rgb(113 63 18 / 0.5); +} + +:is(:where(.dark) .dark\:bg-yellow-900\/55) { + background-color: rgb(113 63 18 / 0.55); +} + +:is(:where(.dark) .dark\:bg-yellow-900\/60) { + background-color: rgb(113 63 18 / 0.6); +} + +:is(:where(.dark) .dark\:bg-yellow-900\/65) { + background-color: rgb(113 63 18 / 0.65); +} + +:is(:where(.dark) .dark\:bg-yellow-900\/70) { + background-color: rgb(113 63 18 / 0.7); +} + +:is(:where(.dark) .dark\:bg-yellow-900\/75) { + background-color: rgb(113 63 18 / 0.75); +} + +:is(:where(.dark) .dark\:bg-yellow-900\/80) { + background-color: rgb(113 63 18 / 0.8); +} + +:is(:where(.dark) .dark\:bg-yellow-900\/85) { + background-color: rgb(113 63 18 / 0.85); +} + +:is(:where(.dark) .dark\:bg-yellow-900\/90) { + background-color: rgb(113 63 18 / 0.9); +} + +:is(:where(.dark) .dark\:bg-yellow-900\/95) { + background-color: rgb(113 63 18 / 0.95); +} + +:is(:where(.dark) .dark\:text-amber-200) { + --tw-text-opacity: 1; + color: rgb(253 230 138 / var(--tw-text-opacity)); +} + +:is(:where(.dark) .dark\:text-amber-500) { + --tw-text-opacity: 1; + color: rgb(245 158 11 / var(--tw-text-opacity)); +} + +:is(:where(.dark) .dark\:text-blue-200) { + --tw-text-opacity: 1; + color: rgb(191 219 254 / var(--tw-text-opacity)); +} + +:is(:where(.dark) .dark\:text-blue-400) { + --tw-text-opacity: 1; + color: rgb(96 165 250 / var(--tw-text-opacity)); +} + +:is(:where(.dark) .dark\:text-blue-400\/0) { + color: rgb(96 165 250 / 0); +} + +:is(:where(.dark) .dark\:text-blue-400\/10) { + color: rgb(96 165 250 / 0.1); +} + +:is(:where(.dark) .dark\:text-blue-400\/100) { + color: rgb(96 165 250 / 1); +} + +:is(:where(.dark) .dark\:text-blue-400\/15) { + color: rgb(96 165 250 / 0.15); +} + +:is(:where(.dark) .dark\:text-blue-400\/20) { + color: rgb(96 165 250 / 0.2); +} + +:is(:where(.dark) .dark\:text-blue-400\/25) { + color: rgb(96 165 250 / 0.25); +} + +:is(:where(.dark) .dark\:text-blue-400\/30) { + color: rgb(96 165 250 / 0.3); +} + +:is(:where(.dark) .dark\:text-blue-400\/35) { + color: rgb(96 165 250 / 0.35); +} + +:is(:where(.dark) .dark\:text-blue-400\/40) { + color: rgb(96 165 250 / 0.4); +} + +:is(:where(.dark) .dark\:text-blue-400\/45) { + color: rgb(96 165 250 / 0.45); +} + +:is(:where(.dark) .dark\:text-blue-400\/5) { + color: rgb(96 165 250 / 0.05); +} + +:is(:where(.dark) .dark\:text-blue-400\/50) { + color: rgb(96 165 250 / 0.5); +} + +:is(:where(.dark) .dark\:text-blue-400\/55) { + color: rgb(96 165 250 / 0.55); +} + +:is(:where(.dark) .dark\:text-blue-400\/60) { + color: rgb(96 165 250 / 0.6); +} + +:is(:where(.dark) .dark\:text-blue-400\/65) { + color: rgb(96 165 250 / 0.65); +} + +:is(:where(.dark) .dark\:text-blue-400\/70) { + color: rgb(96 165 250 / 0.7); +} + +:is(:where(.dark) .dark\:text-blue-400\/75) { + color: rgb(96 165 250 / 0.75); +} + +:is(:where(.dark) .dark\:text-blue-400\/80) { + color: rgb(96 165 250 / 0.8); +} + +:is(:where(.dark) .dark\:text-blue-400\/85) { + color: rgb(96 165 250 / 0.85); +} + +:is(:where(.dark) .dark\:text-blue-400\/90) { + color: rgb(96 165 250 / 0.9); +} + +:is(:where(.dark) .dark\:text-blue-400\/95) { + color: rgb(96 165 250 / 0.95); +} + +:is(:where(.dark) .dark\:text-blue-900) { + --tw-text-opacity: 1; + color: rgb(30 58 138 / var(--tw-text-opacity)); +} + +:is(:where(.dark) .dark\:text-emerald-400) { + --tw-text-opacity: 1; + color: rgb(52 211 153 / var(--tw-text-opacity)); +} + +:is(:where(.dark) .dark\:text-emerald-400\/0) { + color: rgb(52 211 153 / 0); +} + +:is(:where(.dark) .dark\:text-emerald-400\/10) { + color: rgb(52 211 153 / 0.1); +} + +:is(:where(.dark) .dark\:text-emerald-400\/100) { + color: rgb(52 211 153 / 1); +} + +:is(:where(.dark) .dark\:text-emerald-400\/15) { + color: rgb(52 211 153 / 0.15); +} + +:is(:where(.dark) .dark\:text-emerald-400\/20) { + color: rgb(52 211 153 / 0.2); +} + +:is(:where(.dark) .dark\:text-emerald-400\/25) { + color: rgb(52 211 153 / 0.25); +} + +:is(:where(.dark) .dark\:text-emerald-400\/30) { + color: rgb(52 211 153 / 0.3); +} + +:is(:where(.dark) .dark\:text-emerald-400\/35) { + color: rgb(52 211 153 / 0.35); +} + +:is(:where(.dark) .dark\:text-emerald-400\/40) { + color: rgb(52 211 153 / 0.4); +} + +:is(:where(.dark) .dark\:text-emerald-400\/45) { + color: rgb(52 211 153 / 0.45); +} + +:is(:where(.dark) .dark\:text-emerald-400\/5) { + color: rgb(52 211 153 / 0.05); +} + +:is(:where(.dark) .dark\:text-emerald-400\/50) { + color: rgb(52 211 153 / 0.5); +} + +:is(:where(.dark) .dark\:text-emerald-400\/55) { + color: rgb(52 211 153 / 0.55); +} + +:is(:where(.dark) .dark\:text-emerald-400\/60) { + color: rgb(52 211 153 / 0.6); +} + +:is(:where(.dark) .dark\:text-emerald-400\/65) { + color: rgb(52 211 153 / 0.65); +} + +:is(:where(.dark) .dark\:text-emerald-400\/70) { + color: rgb(52 211 153 / 0.7); +} + +:is(:where(.dark) .dark\:text-emerald-400\/75) { + color: rgb(52 211 153 / 0.75); +} + +:is(:where(.dark) .dark\:text-emerald-400\/80) { + color: rgb(52 211 153 / 0.8); +} + +:is(:where(.dark) .dark\:text-emerald-400\/85) { + color: rgb(52 211 153 / 0.85); +} + +:is(:where(.dark) .dark\:text-emerald-400\/90) { + color: rgb(52 211 153 / 0.9); +} + +:is(:where(.dark) .dark\:text-emerald-400\/95) { + color: rgb(52 211 153 / 0.95); +} + +:is(:where(.dark) .dark\:text-fuchsia-500) { + --tw-text-opacity: 1; + color: rgb(217 70 239 / var(--tw-text-opacity)); +} + +:is(:where(.dark) .dark\:text-gray-100) { + --tw-text-opacity: 1; + color: rgb(243 244 246 / var(--tw-text-opacity)); +} + +:is(:where(.dark) .dark\:text-gray-200) { + --tw-text-opacity: 1; + color: rgb(229 231 235 / var(--tw-text-opacity)); +} + +:is(:where(.dark) .dark\:text-gray-400) { + --tw-text-opacity: 1; + color: rgb(156 163 175 / var(--tw-text-opacity)); +} + +:is(:where(.dark) .dark\:text-gray-600) { + --tw-text-opacity: 1; + color: rgb(75 85 99 / var(--tw-text-opacity)); +} + +:is(:where(.dark) .dark\:text-green-400) { + --tw-text-opacity: 1; + color: rgb(74 222 128 / var(--tw-text-opacity)); +} + +:is(:where(.dark) .dark\:text-green-400\/0) { + color: rgb(74 222 128 / 0); +} + +:is(:where(.dark) .dark\:text-green-400\/10) { + color: rgb(74 222 128 / 0.1); +} + +:is(:where(.dark) .dark\:text-green-400\/100) { + color: rgb(74 222 128 / 1); +} + +:is(:where(.dark) .dark\:text-green-400\/15) { + color: rgb(74 222 128 / 0.15); +} + +:is(:where(.dark) .dark\:text-green-400\/20) { + color: rgb(74 222 128 / 0.2); +} + +:is(:where(.dark) .dark\:text-green-400\/25) { + color: rgb(74 222 128 / 0.25); +} + +:is(:where(.dark) .dark\:text-green-400\/30) { + color: rgb(74 222 128 / 0.3); +} + +:is(:where(.dark) .dark\:text-green-400\/35) { + color: rgb(74 222 128 / 0.35); +} + +:is(:where(.dark) .dark\:text-green-400\/40) { + color: rgb(74 222 128 / 0.4); +} + +:is(:where(.dark) .dark\:text-green-400\/45) { + color: rgb(74 222 128 / 0.45); +} + +:is(:where(.dark) .dark\:text-green-400\/5) { + color: rgb(74 222 128 / 0.05); +} + +:is(:where(.dark) .dark\:text-green-400\/50) { + color: rgb(74 222 128 / 0.5); +} + +:is(:where(.dark) .dark\:text-green-400\/55) { + color: rgb(74 222 128 / 0.55); +} + +:is(:where(.dark) .dark\:text-green-400\/60) { + color: rgb(74 222 128 / 0.6); +} + +:is(:where(.dark) .dark\:text-green-400\/65) { + color: rgb(74 222 128 / 0.65); +} + +:is(:where(.dark) .dark\:text-green-400\/70) { + color: rgb(74 222 128 / 0.7); +} + +:is(:where(.dark) .dark\:text-green-400\/75) { + color: rgb(74 222 128 / 0.75); +} + +:is(:where(.dark) .dark\:text-green-400\/80) { + color: rgb(74 222 128 / 0.8); +} + +:is(:where(.dark) .dark\:text-green-400\/85) { + color: rgb(74 222 128 / 0.85); +} + +:is(:where(.dark) .dark\:text-green-400\/90) { + color: rgb(74 222 128 / 0.9); +} + +:is(:where(.dark) .dark\:text-green-400\/95) { + color: rgb(74 222 128 / 0.95); +} + +:is(:where(.dark) .dark\:text-indigo-300) { + --tw-text-opacity: 1; + color: rgb(165 180 252 / var(--tw-text-opacity)); +} + +:is(:where(.dark) .dark\:text-indigo-400) { + --tw-text-opacity: 1; + color: rgb(129 140 248 / var(--tw-text-opacity)); +} + +:is(:where(.dark) .dark\:text-indigo-400\/0) { + color: rgb(129 140 248 / 0); +} + +:is(:where(.dark) .dark\:text-indigo-400\/10) { + color: rgb(129 140 248 / 0.1); +} + +:is(:where(.dark) .dark\:text-indigo-400\/100) { + color: rgb(129 140 248 / 1); +} + +:is(:where(.dark) .dark\:text-indigo-400\/15) { + color: rgb(129 140 248 / 0.15); +} + +:is(:where(.dark) .dark\:text-indigo-400\/20) { + color: rgb(129 140 248 / 0.2); +} + +:is(:where(.dark) .dark\:text-indigo-400\/25) { + color: rgb(129 140 248 / 0.25); +} + +:is(:where(.dark) .dark\:text-indigo-400\/30) { + color: rgb(129 140 248 / 0.3); +} + +:is(:where(.dark) .dark\:text-indigo-400\/35) { + color: rgb(129 140 248 / 0.35); +} + +:is(:where(.dark) .dark\:text-indigo-400\/40) { + color: rgb(129 140 248 / 0.4); +} + +:is(:where(.dark) .dark\:text-indigo-400\/45) { + color: rgb(129 140 248 / 0.45); +} + +:is(:where(.dark) .dark\:text-indigo-400\/5) { + color: rgb(129 140 248 / 0.05); +} + +:is(:where(.dark) .dark\:text-indigo-400\/50) { + color: rgb(129 140 248 / 0.5); +} + +:is(:where(.dark) .dark\:text-indigo-400\/55) { + color: rgb(129 140 248 / 0.55); +} + +:is(:where(.dark) .dark\:text-indigo-400\/60) { + color: rgb(129 140 248 / 0.6); +} + +:is(:where(.dark) .dark\:text-indigo-400\/65) { + color: rgb(129 140 248 / 0.65); +} + +:is(:where(.dark) .dark\:text-indigo-400\/70) { + color: rgb(129 140 248 / 0.7); +} + +:is(:where(.dark) .dark\:text-indigo-400\/75) { + color: rgb(129 140 248 / 0.75); +} + +:is(:where(.dark) .dark\:text-indigo-400\/80) { + color: rgb(129 140 248 / 0.8); +} + +:is(:where(.dark) .dark\:text-indigo-400\/85) { + color: rgb(129 140 248 / 0.85); +} + +:is(:where(.dark) .dark\:text-indigo-400\/90) { + color: rgb(129 140 248 / 0.9); +} + +:is(:where(.dark) .dark\:text-indigo-400\/95) { + color: rgb(129 140 248 / 0.95); +} + +:is(:where(.dark) .dark\:text-indigo-50) { + --tw-text-opacity: 1; + color: rgb(238 242 255 / var(--tw-text-opacity)); +} + +:is(:where(.dark) .dark\:text-indigo-600) { + --tw-text-opacity: 1; + color: rgb(79 70 229 / var(--tw-text-opacity)); +} + +:is(:where(.dark) .dark\:text-indigo-900) { + --tw-text-opacity: 1; + color: rgb(49 46 129 / var(--tw-text-opacity)); +} + +:is(:where(.dark) .dark\:text-orange-400) { + --tw-text-opacity: 1; + color: rgb(251 146 60 / var(--tw-text-opacity)); +} + +:is(:where(.dark) .dark\:text-orange-400\/0) { + color: rgb(251 146 60 / 0); +} + +:is(:where(.dark) .dark\:text-orange-400\/10) { + color: rgb(251 146 60 / 0.1); +} + +:is(:where(.dark) .dark\:text-orange-400\/100) { + color: rgb(251 146 60 / 1); +} + +:is(:where(.dark) .dark\:text-orange-400\/15) { + color: rgb(251 146 60 / 0.15); +} + +:is(:where(.dark) .dark\:text-orange-400\/20) { + color: rgb(251 146 60 / 0.2); +} + +:is(:where(.dark) .dark\:text-orange-400\/25) { + color: rgb(251 146 60 / 0.25); +} + +:is(:where(.dark) .dark\:text-orange-400\/30) { + color: rgb(251 146 60 / 0.3); +} + +:is(:where(.dark) .dark\:text-orange-400\/35) { + color: rgb(251 146 60 / 0.35); +} + +:is(:where(.dark) .dark\:text-orange-400\/40) { + color: rgb(251 146 60 / 0.4); +} + +:is(:where(.dark) .dark\:text-orange-400\/45) { + color: rgb(251 146 60 / 0.45); +} + +:is(:where(.dark) .dark\:text-orange-400\/5) { + color: rgb(251 146 60 / 0.05); +} + +:is(:where(.dark) .dark\:text-orange-400\/50) { + color: rgb(251 146 60 / 0.5); +} + +:is(:where(.dark) .dark\:text-orange-400\/55) { + color: rgb(251 146 60 / 0.55); +} + +:is(:where(.dark) .dark\:text-orange-400\/60) { + color: rgb(251 146 60 / 0.6); +} + +:is(:where(.dark) .dark\:text-orange-400\/65) { + color: rgb(251 146 60 / 0.65); +} + +:is(:where(.dark) .dark\:text-orange-400\/70) { + color: rgb(251 146 60 / 0.7); +} + +:is(:where(.dark) .dark\:text-orange-400\/75) { + color: rgb(251 146 60 / 0.75); +} + +:is(:where(.dark) .dark\:text-orange-400\/80) { + color: rgb(251 146 60 / 0.8); +} + +:is(:where(.dark) .dark\:text-orange-400\/85) { + color: rgb(251 146 60 / 0.85); +} + +:is(:where(.dark) .dark\:text-orange-400\/90) { + color: rgb(251 146 60 / 0.9); +} + +:is(:where(.dark) .dark\:text-orange-400\/95) { + color: rgb(251 146 60 / 0.95); +} + +:is(:where(.dark) .dark\:text-pink-100) { + --tw-text-opacity: 1; + color: rgb(252 231 243 / var(--tw-text-opacity)); +} + +:is(:where(.dark) .dark\:text-pink-200) { + --tw-text-opacity: 1; + color: rgb(251 207 232 / var(--tw-text-opacity)); +} + +:is(:where(.dark) .dark\:text-pink-400) { + --tw-text-opacity: 1; + color: rgb(244 114 182 / var(--tw-text-opacity)); +} + +:is(:where(.dark) .dark\:text-pink-400\/0) { + color: rgb(244 114 182 / 0); +} + +:is(:where(.dark) .dark\:text-pink-400\/10) { + color: rgb(244 114 182 / 0.1); +} + +:is(:where(.dark) .dark\:text-pink-400\/100) { + color: rgb(244 114 182 / 1); +} + +:is(:where(.dark) .dark\:text-pink-400\/15) { + color: rgb(244 114 182 / 0.15); +} + +:is(:where(.dark) .dark\:text-pink-400\/20) { + color: rgb(244 114 182 / 0.2); +} + +:is(:where(.dark) .dark\:text-pink-400\/25) { + color: rgb(244 114 182 / 0.25); +} + +:is(:where(.dark) .dark\:text-pink-400\/30) { + color: rgb(244 114 182 / 0.3); +} + +:is(:where(.dark) .dark\:text-pink-400\/35) { + color: rgb(244 114 182 / 0.35); +} + +:is(:where(.dark) .dark\:text-pink-400\/40) { + color: rgb(244 114 182 / 0.4); +} + +:is(:where(.dark) .dark\:text-pink-400\/45) { + color: rgb(244 114 182 / 0.45); +} + +:is(:where(.dark) .dark\:text-pink-400\/5) { + color: rgb(244 114 182 / 0.05); +} + +:is(:where(.dark) .dark\:text-pink-400\/50) { + color: rgb(244 114 182 / 0.5); +} + +:is(:where(.dark) .dark\:text-pink-400\/55) { + color: rgb(244 114 182 / 0.55); +} + +:is(:where(.dark) .dark\:text-pink-400\/60) { + color: rgb(244 114 182 / 0.6); +} + +:is(:where(.dark) .dark\:text-pink-400\/65) { + color: rgb(244 114 182 / 0.65); +} + +:is(:where(.dark) .dark\:text-pink-400\/70) { + color: rgb(244 114 182 / 0.7); +} + +:is(:where(.dark) .dark\:text-pink-400\/75) { + color: rgb(244 114 182 / 0.75); +} + +:is(:where(.dark) .dark\:text-pink-400\/80) { + color: rgb(244 114 182 / 0.8); +} + +:is(:where(.dark) .dark\:text-pink-400\/85) { + color: rgb(244 114 182 / 0.85); +} + +:is(:where(.dark) .dark\:text-pink-400\/90) { + color: rgb(244 114 182 / 0.9); +} + +:is(:where(.dark) .dark\:text-pink-400\/95) { + color: rgb(244 114 182 / 0.95); +} + +:is(:where(.dark) .dark\:text-purple-400) { + --tw-text-opacity: 1; + color: rgb(192 132 252 / var(--tw-text-opacity)); +} + +:is(:where(.dark) .dark\:text-purple-400\/0) { + color: rgb(192 132 252 / 0); +} + +:is(:where(.dark) .dark\:text-purple-400\/10) { + color: rgb(192 132 252 / 0.1); +} + +:is(:where(.dark) .dark\:text-purple-400\/100) { + color: rgb(192 132 252 / 1); +} + +:is(:where(.dark) .dark\:text-purple-400\/15) { + color: rgb(192 132 252 / 0.15); +} + +:is(:where(.dark) .dark\:text-purple-400\/20) { + color: rgb(192 132 252 / 0.2); +} + +:is(:where(.dark) .dark\:text-purple-400\/25) { + color: rgb(192 132 252 / 0.25); +} + +:is(:where(.dark) .dark\:text-purple-400\/30) { + color: rgb(192 132 252 / 0.3); +} + +:is(:where(.dark) .dark\:text-purple-400\/35) { + color: rgb(192 132 252 / 0.35); +} + +:is(:where(.dark) .dark\:text-purple-400\/40) { + color: rgb(192 132 252 / 0.4); +} + +:is(:where(.dark) .dark\:text-purple-400\/45) { + color: rgb(192 132 252 / 0.45); +} + +:is(:where(.dark) .dark\:text-purple-400\/5) { + color: rgb(192 132 252 / 0.05); +} + +:is(:where(.dark) .dark\:text-purple-400\/50) { + color: rgb(192 132 252 / 0.5); +} + +:is(:where(.dark) .dark\:text-purple-400\/55) { + color: rgb(192 132 252 / 0.55); +} + +:is(:where(.dark) .dark\:text-purple-400\/60) { + color: rgb(192 132 252 / 0.6); +} + +:is(:where(.dark) .dark\:text-purple-400\/65) { + color: rgb(192 132 252 / 0.65); +} + +:is(:where(.dark) .dark\:text-purple-400\/70) { + color: rgb(192 132 252 / 0.7); +} + +:is(:where(.dark) .dark\:text-purple-400\/75) { + color: rgb(192 132 252 / 0.75); +} + +:is(:where(.dark) .dark\:text-purple-400\/80) { + color: rgb(192 132 252 / 0.8); +} + +:is(:where(.dark) .dark\:text-purple-400\/85) { + color: rgb(192 132 252 / 0.85); +} + +:is(:where(.dark) .dark\:text-purple-400\/90) { + color: rgb(192 132 252 / 0.9); +} + +:is(:where(.dark) .dark\:text-purple-400\/95) { + color: rgb(192 132 252 / 0.95); +} + +:is(:where(.dark) .dark\:text-red-400) { + --tw-text-opacity: 1; + color: rgb(248 113 113 / var(--tw-text-opacity)); +} + +:is(:where(.dark) .dark\:text-red-900) { + --tw-text-opacity: 1; + color: rgb(127 29 29 / var(--tw-text-opacity)); +} + +:is(:where(.dark) .dark\:text-slate-200) { + --tw-text-opacity: 1; + color: rgb(226 232 240 / var(--tw-text-opacity)); +} + +:is(:where(.dark) .dark\:text-violet-300) { + --tw-text-opacity: 1; + color: rgb(196 181 253 / var(--tw-text-opacity)); +} + +:is(:where(.dark) .dark\:text-violet-400) { + --tw-text-opacity: 1; + color: rgb(167 139 250 / var(--tw-text-opacity)); +} + +:is(:where(.dark) .dark\:text-white) { + --tw-text-opacity: 1; + color: rgb(255 255 255 / var(--tw-text-opacity)); +} + +:is(:where(.dark) .dark\:text-yellow-400) { + --tw-text-opacity: 1; + color: rgb(250 204 21 / var(--tw-text-opacity)); +} + +:is(:where(.dark) .dark\:text-yellow-400\/0) { + color: rgb(250 204 21 / 0); +} + +:is(:where(.dark) .dark\:text-yellow-400\/10) { + color: rgb(250 204 21 / 0.1); +} + +:is(:where(.dark) .dark\:text-yellow-400\/100) { + color: rgb(250 204 21 / 1); +} + +:is(:where(.dark) .dark\:text-yellow-400\/15) { + color: rgb(250 204 21 / 0.15); +} + +:is(:where(.dark) .dark\:text-yellow-400\/20) { + color: rgb(250 204 21 / 0.2); +} + +:is(:where(.dark) .dark\:text-yellow-400\/25) { + color: rgb(250 204 21 / 0.25); +} + +:is(:where(.dark) .dark\:text-yellow-400\/30) { + color: rgb(250 204 21 / 0.3); +} + +:is(:where(.dark) .dark\:text-yellow-400\/35) { + color: rgb(250 204 21 / 0.35); +} + +:is(:where(.dark) .dark\:text-yellow-400\/40) { + color: rgb(250 204 21 / 0.4); +} + +:is(:where(.dark) .dark\:text-yellow-400\/45) { + color: rgb(250 204 21 / 0.45); +} + +:is(:where(.dark) .dark\:text-yellow-400\/5) { + color: rgb(250 204 21 / 0.05); +} + +:is(:where(.dark) .dark\:text-yellow-400\/50) { + color: rgb(250 204 21 / 0.5); +} + +:is(:where(.dark) .dark\:text-yellow-400\/55) { + color: rgb(250 204 21 / 0.55); +} + +:is(:where(.dark) .dark\:text-yellow-400\/60) { + color: rgb(250 204 21 / 0.6); +} + +:is(:where(.dark) .dark\:text-yellow-400\/65) { + color: rgb(250 204 21 / 0.65); +} + +:is(:where(.dark) .dark\:text-yellow-400\/70) { + color: rgb(250 204 21 / 0.7); +} + +:is(:where(.dark) .dark\:text-yellow-400\/75) { + color: rgb(250 204 21 / 0.75); +} + +:is(:where(.dark) .dark\:text-yellow-400\/80) { + color: rgb(250 204 21 / 0.8); +} + +:is(:where(.dark) .dark\:text-yellow-400\/85) { + color: rgb(250 204 21 / 0.85); +} + +:is(:where(.dark) .dark\:text-yellow-400\/90) { + color: rgb(250 204 21 / 0.9); +} + +:is(:where(.dark) .dark\:text-yellow-400\/95) { + color: rgb(250 204 21 / 0.95); +} + +:is(:where(.dark) .dark\:shadow-pink-200) { + --tw-shadow-color: #fbcfe8; + --tw-shadow: var(--tw-shadow-colored); +} + +:is(:where(.dark) .dark\:selection\:bg-amber-600 *)::-moz-selection { + --tw-bg-opacity: 1; + background-color: rgb(217 119 6 / var(--tw-bg-opacity)); +} + +:is(:where(.dark) .dark\:selection\:bg-amber-600 *)::selection { + --tw-bg-opacity: 1; + background-color: rgb(217 119 6 / var(--tw-bg-opacity)); +} + +:is(:where(.dark) .dark\:selection\:bg-blue-600 *)::-moz-selection { + --tw-bg-opacity: 1; + background-color: rgb(37 99 235 / var(--tw-bg-opacity)); +} + +:is(:where(.dark) .dark\:selection\:bg-blue-600 *)::selection { + --tw-bg-opacity: 1; + background-color: rgb(37 99 235 / var(--tw-bg-opacity)); +} + +:is(:where(.dark) .dark\:selection\:text-amber-400 *)::-moz-selection { + --tw-text-opacity: 1; + color: rgb(251 191 36 / var(--tw-text-opacity)); +} + +:is(:where(.dark) .dark\:selection\:text-amber-400 *)::selection { + --tw-text-opacity: 1; + color: rgb(251 191 36 / var(--tw-text-opacity)); +} + +:is(:where(.dark) .dark\:selection\:text-blue-100 *)::-moz-selection { + --tw-text-opacity: 1; + color: rgb(219 234 254 / var(--tw-text-opacity)); +} + +:is(:where(.dark) .dark\:selection\:text-blue-100 *)::selection { + --tw-text-opacity: 1; + color: rgb(219 234 254 / var(--tw-text-opacity)); +} + +:is(:where(.dark) .dark\:selection\:bg-amber-600)::-moz-selection { + --tw-bg-opacity: 1; + background-color: rgb(217 119 6 / var(--tw-bg-opacity)); +} + +:is(:where(.dark) .dark\:selection\:bg-amber-600)::selection { + --tw-bg-opacity: 1; + background-color: rgb(217 119 6 / var(--tw-bg-opacity)); +} + +:is(:where(.dark) .dark\:selection\:bg-blue-600)::-moz-selection { + --tw-bg-opacity: 1; + background-color: rgb(37 99 235 / var(--tw-bg-opacity)); +} + +:is(:where(.dark) .dark\:selection\:bg-blue-600)::selection { + --tw-bg-opacity: 1; + background-color: rgb(37 99 235 / var(--tw-bg-opacity)); +} + +:is(:where(.dark) .dark\:selection\:text-amber-400)::-moz-selection { + --tw-text-opacity: 1; + color: rgb(251 191 36 / var(--tw-text-opacity)); +} + +:is(:where(.dark) .dark\:selection\:text-amber-400)::selection { + --tw-text-opacity: 1; + color: rgb(251 191 36 / var(--tw-text-opacity)); +} + +:is(:where(.dark) .dark\:selection\:text-blue-100)::-moz-selection { + --tw-text-opacity: 1; + color: rgb(219 234 254 / var(--tw-text-opacity)); +} + +:is(:where(.dark) .dark\:selection\:text-blue-100)::selection { + --tw-text-opacity: 1; + color: rgb(219 234 254 / var(--tw-text-opacity)); +} + +:is(:where(.dark) .hover\:dark\:border-slate-900):hover { + --tw-border-opacity: 1; + border-color: rgb(15 23 42 / var(--tw-border-opacity)); +} + +:is(:where(.dark) .dark\:hover\:bg-emerald-800:hover) { + --tw-bg-opacity: 1; + background-color: rgb(6 95 70 / var(--tw-bg-opacity)); +} + +:is(:where(.dark) .dark\:hover\:bg-fuchsia-700:hover) { + --tw-bg-opacity: 1; + background-color: rgb(162 28 175 / var(--tw-bg-opacity)); +} + +:is(:where(.dark) .dark\:hover\:bg-orange-800:hover) { + --tw-bg-opacity: 1; + background-color: rgb(154 52 18 / var(--tw-bg-opacity)); +} + +:is(:where(.dark) .dark\:hover\:bg-red-200:hover) { + --tw-bg-opacity: 1; + background-color: rgb(254 202 202 / var(--tw-bg-opacity)); +} + +:is(:where(.dark) .dark\:hover\:bg-slate-950:hover) { + --tw-bg-opacity: 1; + background-color: rgb(2 6 23 / var(--tw-bg-opacity)); +} + +:is(:where(.dark) .hover\:dark\:bg-amber-200):hover { + --tw-bg-opacity: 1; + background-color: rgb(253 230 138 / var(--tw-bg-opacity)); +} + +:is(:where(.dark) .hover\:dark\:bg-amber-900):hover { + --tw-bg-opacity: 1; + background-color: rgb(120 53 15 / var(--tw-bg-opacity)); +} + +:is(:where(.dark) .hover\:dark\:bg-blue-900):hover { + --tw-bg-opacity: 1; + background-color: rgb(30 58 138 / var(--tw-bg-opacity)); +} + +:is(:where(.dark) .hover\:dark\:bg-orange-900):hover { + --tw-bg-opacity: 1; + background-color: rgb(124 45 18 / var(--tw-bg-opacity)); +} + +:is(:where(.dark) .hover\:dark\:bg-pink-900):hover { + --tw-bg-opacity: 1; + background-color: rgb(131 24 67 / var(--tw-bg-opacity)); +} + +:is(:where(.dark) .dark\:hover\:text-pink-100:hover) { + --tw-text-opacity: 1; + color: rgb(252 231 243 / var(--tw-text-opacity)); +} + +:is(:where(.dark) .hover\:dark\:text-amber-100):hover { + --tw-text-opacity: 1; + color: rgb(254 243 199 / var(--tw-text-opacity)); +} + +:is(:where(.dark) .hover\:dark\:text-blue-100):hover { + --tw-text-opacity: 1; + color: rgb(219 234 254 / var(--tw-text-opacity)); +} + +:is(:where(.dark) .hover\:dark\:text-slate-600):hover { + --tw-text-opacity: 1; + color: rgb(71 85 105 / var(--tw-text-opacity)); +} + +:is(:where(.dark) .dark\:prose-a\:text-violet-300 :is(:where(a):not(:where([class~="not-prose"] *)))) { + --tw-text-opacity: 1; + color: rgb(196 181 253 / var(--tw-text-opacity)); +} + +:is(:where(.dark) .prose-a\:dark\:text-gray-100) :is(:where(a):not(:where([class~="not-prose"] *))) { + --tw-text-opacity: 1; + color: rgb(243 244 246 / var(--tw-text-opacity)); +} + +:is(:where(.dark) .prose-a\:dark\:text-indigo-300) :is(:where(a):not(:where([class~="not-prose"] *))) { + --tw-text-opacity: 1; + color: rgb(165 180 252 / var(--tw-text-opacity)); +} diff --git a/app/assets/css/tailwind.css b/app/assets/css/tailwind.css index 528cbb7..5353093 100644 --- a/app/assets/css/tailwind.css +++ b/app/assets/css/tailwind.css @@ -98,3 +98,9 @@ h1, h2, h3, h4, h5, h6, h1 a, h2 a, h3 a, h4 a, h5 a, h6 a { .squircle { clip-path: url(#squircleClip); } + +.status-body img { + max-width: 8rem; + border-radius: 0.25rem; + margin-top: 1rem; +} diff --git a/app/templates/shared/_status.html.slim b/app/templates/shared/_status.html.slim index d70d76f..e0767ae 100644 --- a/app/templates/shared/_status.html.slim +++ b/app/templates/shared/_status.html.slim @@ -1,7 +1,7 @@ div class="mb-8 h-entry border border-gray-200 m-2 p-4 bg-gray-50 hover:bg-gray-100 dark:border-slate-800 dark:bg-slate-900 dark:hover:bg-slate-950 hover:dark:border-slate-900 rounded" a class="border-b-2 border-transparent hover:border-blue-600 hover:border-b-2" href="/post/#{post.slug}" - div class="e-content prose-p:mb-0 prose-img:my-2 prose-a:text-blue-600 prose-a:no-underline hover:prose-a:underline p-name text-base prose prose-ul:list-none prose-ul:pl-0 prose-li:pl-0 text-gray-800 dark:text-gray-200 prose-a:dark:text-gray-100 mb-4" - = " 💬 #{post.raw_content}" + div class="e-content prose-p:mb-0 prose-img:my-2 prose-a:text-blue-600 prose-a:no-underline hover:prose-a:underline p-name text-base prose prose-ul:list-none prose-ul:pl-0 prose-li:pl-0 text-gray-800 dark:text-gray-200 prose-a:dark:text-gray-100 mb-4 prose-img:rounded" + == " 💬 #{post.content}" div class="grid gap-4 grid-flow-row grid-cols-4 grid-rows-1" -post.photos.each do |photo| img class="w-32 h-32 object-cover rounded" src=photo["value"] diff --git a/app/templates/site/home.html.slim b/app/templates/site/home.html.slim index a4101b7..1e377b5 100644 --- a/app/templates/site/home.html.slim +++ b/app/templates/site/home.html.slim @@ -10,7 +10,7 @@ div class="mb-8 max-w-screen-md mx-auto border-t border-solid border-gray-200 da div class="h-entry mb-12 p-2 grid grid-cols-7 gap-4 min-h-16 max-w-prose mx-auto bg-fuchsia-100 dark:bg-fuchsia-800 dark:text-gray-200 rounded" div class="col-span-7 sm:col-span-6 text-left" a class="u-url block my-auto hover:underline decoration-wavy" href=latest_status.permalink - span class="e-content" + span class="e-content status-body" == latest_status.content - latest_status.syndicated_to.each do |loc| small class="text-fuchsia-200 dark:text-fuchsia-500"