diff --git a/app/assets/js/app.js b/app/assets/js/app.js index 16ec487..650b584 100644 --- a/app/assets/js/app.js +++ b/app/assets/js/app.js @@ -4,6 +4,10 @@ import { md_gallery } from "./gallery.js"; (function() { document.addEventListener("DOMContentLoaded", function () { + window.matchMedia('(prefers-color-scheme: dark)').addEventListener('change', event => { + localStorage.setItem("_x_darkMode", event.matches ? true : false) + }); + if (window.hljs !== undefined) { window.hljs.highlightAll(); } diff --git a/app/templates/layouts/app.html.slim b/app/templates/layouts/app.html.slim index 8173cc0..e989e49 100644 --- a/app/templates/layouts/app.html.slim +++ b/app/templates/layouts/app.html.slim @@ -1,5 +1,5 @@ doctype html -html +html x-data="{darkMode: $persist(false)}" :class="{'dark' : darkMode === true}" head meta charest="utf-8" @@ -29,17 +29,18 @@ html link rel="icon" type="image/x-icon" href="/assets/favicon.ico" script data-domain="dnitza.com" src="https://stats.dnitza.com/js/script.js" defer="" - = javascript_tag "app" script src="https://unpkg.com/htmx.org@1.9.2/dist/htmx.min.js" integrity="sha384-L6OqL9pRWyyFU3+/bjdSri+iIphTN/bvYyM37tICVyOJkWZLpP2vGn6VUEXgzg6h" crossorigin="anonymous" - script src="https://cdn.jsdelivr.net/npm/alpinejs@3.12.0/dist/cdn.min.js" defer="" + script src="https://cdn.jsdelivr.net/npm/@alpinejs/persist@3.13.3/dist/cdn.min.js" + = javascript_tag "app" + script src="https://cdn.jsdelivr.net/npm/alpinejs@3.13.3/dist/cdn.min.js" defer="" link rel="stylesheet" href="https://unpkg.com/@highlightjs/cdn-assets@11.8.0/styles/github-dark.min.css" script src="https://unpkg.com/@highlightjs/cdn-assets@11.8.0/highlight.min.js" defer="" - if Hanami.app.settings.micropub_pub_key link rel="pgpkey" href="/key" - body class="bg-white dark:bg-indigo-950 selection:bg-blue-100 selection:text-blue-900 dark:selection:bg-amber-600 dark:selection:text-amber-400" x-data="{ imgModal : false, imgModalSrc : '', imgModalDesc : '' }" x-on:keydown.escape="imgModal=false" + body class="transition-colors bg-white dark:bg-indigo-950 selection:bg-blue-100 selection:text-blue-900 dark:selection:bg-amber-600 dark:selection:text-amber-400" x-data="{ imgModal : false, imgModalSrc : '', imgModalDesc : '' }" x-on:keydown.escape="imgModal=false" main class="pb-8 px-4 pt-4 md:pt-8" header class="mb-12 max-w-screen-md mx-auto items-center md:items-justify" div class="flex mb-8 md:mb-12 text-lg md:text-xl text-gray-400 dark:text-gray-600 grid grid-cols-1 md:grid-cols-2" @@ -57,6 +58,11 @@ html span class="text-gray-400 dark:text-gray-600" = "/" a class="transition-colors p-1 rounded text-gray-400 hover:bg-orange-100 hover:text-orange-400 dark:hover:bg-orange-800" href="#{Hanami.app.settings.micropub_site_url}/feeds/rss" RSS + span class="text-gray-400 dark:text-gray-600" + = "/" + button x-data="" @click="darkMode = ! darkMode" + span class="opacity-80 hover:opacity-100 hidden dark:block" ☀️ + span class="opacity-80 hover:opacity-100 block dark:hidden" 🌝 == yield div class="px-4 max-w-screen-md mx-auto pb-10" p class="float-left text-gray-200 dark:text-indigo-900" © 2023 Daniel Nitsikopoulos. All rights reserved. diff --git a/config/app.rb b/config/app.rb index bb38c1c..9d6f744 100644 --- a/config/app.rb +++ b/config/app.rb @@ -11,7 +11,9 @@ module Adamantium config.actions.content_security_policy[:script_src] += " https://api.mapbox.com/mapbox-gl-js/v2.9.1/mapbox-gl.js" config.actions.content_security_policy[:media_src] += " https://dnitza.com" config.actions.content_security_policy[:script_src] += " https://unpkg.com/htmx.org@1.9.2/dist/htmx.min.js " - config.actions.content_security_policy[:script_src] += " https://cdn.jsdelivr.net/npm/alpinejs@3.12.0/dist/cdn.min.js" + config.actions.content_security_policy[:script_src] += " https://cdn.jsdelivr.net/npm/alpinejs@3.13.3/dist/cdn.min.js" + config.actions.content_security_policy[:script_src] += " https://cdn.jsdelivr.net/npm/@alpinejs/persist@3.13.3/dist/cdn.min.js" + config.actions.content_security_policy[:script_src] += " https://unpkg.com/@highlightjs/cdn-assets@11.8.0/highlight.min.js" config.actions.content_security_policy[:connect_src] += " https://stats.dnitza.com/api/event https://*.mapbox.com" config.actions.content_security_policy[:frame_src] += " https://embed.music.apple.com https://www.youtube.com https://player.vimeo.com" diff --git a/public/assets/admin/app.css b/public/assets/admin/app.css index f5b6325..ee04f6b 100644 --- a/public/assets/admin/app.css +++ b/public/assets/admin/app.css @@ -11,7 +11,8 @@ ::after { --tw-content: ""; } -html { +html, +:host { line-height: 1.5; -webkit-text-size-adjust: 100%; -moz-tab-size: 4; @@ -20,13 +21,6 @@ html { 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", @@ -34,6 +28,7 @@ html { "Noto Color Emoji"; font-feature-settings: normal; font-variation-settings: normal; + -webkit-tap-highlight-color: transparent; } body { margin: 0; @@ -78,6 +73,8 @@ pre { "Liberation Mono", "Courier New", monospace; + font-feature-settings: normal; + font-variation-settings: normal; font-size: 1em; } small { @@ -107,6 +104,8 @@ optgroup, select, textarea { font-family: inherit; + font-feature-settings: inherit; + font-variation-settings: inherit; font-size: 100%; font-weight: inherit; line-height: inherit; @@ -182,6 +181,9 @@ menu { margin: 0; padding: 0; } +dialog { + padding: 0; +} textarea { resize: vertical; } @@ -237,6 +239,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: ; @@ -283,6 +288,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: ; @@ -735,36 +743,6 @@ video { .-top-4 { top: -1rem; } -.top-1 { - top: 0.25rem; -} -.-top-10 { - top: -2.5rem; -} -.bottom-10 { - bottom: 2.5rem; -} -.bottom-5 { - bottom: 1.25rem; -} -.bottom-7 { - bottom: 1.75rem; -} -.bottom-4 { - bottom: 1rem; -} -.bottom-2 { - bottom: 0.5rem; -} -.bottom-3 { - bottom: 0.75rem; -} -.bottom-1 { - bottom: 0.25rem; -} -.bottom-0 { - bottom: 0px; -} .z-40 { z-index: 40; } @@ -783,6 +761,9 @@ video { .col-span-7 { grid-column: span 7 / span 7; } +.col-start-2 { + grid-column-start: 2; +} .float-right { float: right; } @@ -802,6 +783,10 @@ video { margin-left: auto; margin-right: auto; } +.my-4 { + margin-top: 1rem; + margin-bottom: 1rem; +} .my-auto { margin-top: auto; margin-bottom: auto; @@ -893,15 +878,15 @@ video { .hidden { display: none; } -.h-1 { - height: 0.25rem; -} .h-16 { height: 4rem; } .h-2 { height: 0.5rem; } +.h-2\.5 { + height: 0.625rem; +} .h-32 { height: 8rem; } @@ -918,22 +903,15 @@ video { height: -moz-max-content; height: max-content; } -.h-4 { - height: 1rem; -} -.h-3 { - height: 0.75rem; -} .max-h-12 { 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; } @@ -943,6 +921,9 @@ video { .w-2 { width: 0.5rem; } +.w-2\.5 { + width: 0.625rem; +} .w-24 { width: 6rem; } @@ -1054,8 +1035,8 @@ video { .grid-rows-1 { 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 { flex-direction: row; @@ -1066,9 +1047,6 @@ video { .content-center { align-content: center; } -.items-start { - align-items: flex-start; -} .items-center { align-items: center; } @@ -1081,15 +1059,18 @@ video { .justify-between { justify-content: space-between; } +.gap-0 { + gap: 0px; +} +.gap-0\.5 { + gap: 0.125rem; +} .gap-2 { gap: 0.5rem; } .gap-4 { gap: 1rem; } -.gap-5 { - gap: 1.25rem; -} .gap-x-1 { -moz-column-gap: 0.25rem; column-gap: 0.25rem; @@ -1103,11 +1084,6 @@ video { margin-right: calc(0.25rem * var(--tw-space-x-reverse)); 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; } @@ -1169,6 +1145,10 @@ video { --tw-border-opacity: 1; 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)); @@ -1188,6 +1168,69 @@ video { --tw-bg-opacity: 1; 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)); @@ -1204,14 +1247,605 @@ video { --tw-bg-opacity: 1; 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)); @@ -1228,14 +1862,408 @@ video { --tw-bg-opacity: 1; 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)); @@ -1244,18 +2272,672 @@ video { --tw-bg-opacity: 1; 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)); @@ -1264,10 +2946,609 @@ video { --tw-bg-opacity: 1; 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)); @@ -1280,16 +3561,350 @@ video { --tw-bg-opacity: 1; 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; } .fill-blue-100 { fill: #dbeafe; } +.fill-blue-200 { + fill: #bfdbfe; +} .fill-current { fill: currentColor; } @@ -1319,6 +3934,9 @@ video { .p-4 { padding: 1rem; } +.p-8 { + padding: 2rem; +} .px-1 { padding-left: 0.25rem; padding-right: 0.25rem; @@ -1366,9 +3984,6 @@ video { .pt-4 { padding-top: 1rem; } -.pt-0 { - padding-top: 0px; -} .text-left { text-align: left; } @@ -1426,6 +4041,69 @@ video { --tw-text-opacity: 1; 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)); @@ -1442,6 +4120,69 @@ video { --tw-text-opacity: 1; 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)); @@ -1466,14 +4207,148 @@ video { --tw-text-opacity: 1; 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)); @@ -1482,13 +4357,147 @@ video { --tw-text-opacity: 1; 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 { --tw-text-opacity: 1; @@ -1498,6 +4507,73 @@ video { --tw-text-opacity: 1; 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)); @@ -1514,6 +4590,69 @@ video { --tw-text-opacity: 1; 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; } @@ -1523,6 +4662,9 @@ video { .decoration-wavy { 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); @@ -1539,6 +4681,10 @@ video { outline: 2px solid transparent; outline-offset: 2px; } +.grayscale { + --tw-grayscale: grayscale(100%); + filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow); +} .transition { transition-property: color, @@ -1596,13 +4742,18 @@ video { transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; } +.transition-all { + transition-property: all; + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + transition-duration: 150ms; +} .ease-out { transition-timing-function: cubic-bezier(0, 0, 0.2, 1); } @tailwind typography; @font-face { - font-family: "Rubik"; - src: url("../Rubik-VariableFont_wght-HRLVMUVA.ttf") format("truetype"); + font-family: "Montagu"; + src: url("../MontaguSlab-VariableFont_opsz,wght-DPPFFS5R.ttf") format("truetype"); font-display: swap; } @font-face { @@ -1611,13 +4762,13 @@ video { font-display: swap; } @font-face { - font-family: "Karla"; - src: url("../Karla-VariableFont_wght-6X53IMBB.ttf") format("truetype"); + font-family: "Figtree"; + src: url("../Figtree-VariableFont_wght-EP5BD5S6.ttf") format("truetype"); font-display: swap; } * { font-family: - "Karla", + "Figtree", Helvetica, Arial, sans-serif; @@ -1635,10 +4786,9 @@ h4 a, h5 a, h6 a { font-family: - "Rubik", - Helvetica, - Arial, - sans-serif; + "Montagu", + Times New Roman, + serif; } .prose h1 a { border-bottom: none; @@ -1650,7 +4800,9 @@ h6 a { .gist tr { border-bottom: none; } -.gist span { +.gist span, +pre, +pre span { font-family: "JetBrainsMono", Monaco, @@ -1697,25 +4849,27 @@ h6 a { height: 100%; 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); +} +: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 { --tw-bg-opacity: 1; @@ -1749,9 +4903,6 @@ h6 a { --tw-text-opacity: 1; color: rgb(30 58 138 / var(--tw-text-opacity)); } -.hover\:block:hover { - display: block; -} .hover\:scale-105:hover { --tw-scale-x: 1.05; --tw-scale-y: 1.05; @@ -1771,6 +4922,69 @@ h6 a { --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)); @@ -1779,10 +4993,609 @@ h6 a { --tw-bg-opacity: 1; 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)); @@ -1791,25 +5604,1688 @@ h6 a { --tw-bg-opacity: 1; 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-400:hover { +.hover\:bg-pink-50:hover { --tw-bg-opacity: 1; - background-color: rgb(244 114 182 / var(--tw-bg-opacity)); + 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; @@ -1819,9 +7295,343 @@ h6 a { --tw-bg-opacity: 1; 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; } +.hover\:fill-blue-600:hover { + fill: #2563eb; +} .hover\:fill-pink-400:hover { fill: #f472b6; } @@ -1832,6 +7642,69 @@ h6 a { --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)); @@ -1844,6 +7717,69 @@ h6 a { --tw-text-opacity: 1; 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)); @@ -1852,22 +7788,349 @@ h6 a { --tw-text-opacity: 1; 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)); @@ -1876,6 +8139,69 @@ h6 a { --tw-text-opacity: 1; 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; } @@ -1885,17 +8211,13 @@ h6 a { .hover\:opacity-80:hover { opacity: 0.8; } +.hover\:opacity-100:hover { + opacity: 1; +} .focus\:outline-none:focus { outline: 2px solid transparent; 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; } @@ -1911,14 +8233,14 @@ h6 a { .prose-a\:p-0\.5 :is(:where(a):not(:where([class~=not-prose] *))) { 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; } @@ -1986,361 +8308,6 @@ h6 a { .prose-video\:rounded :is(:where(video):not(:where([class~=not-prose] *))) { 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-slate-800 { - --tw-border-opacity: 1; - border-color: rgb(30 41 59 / var(--tw-border-opacity)); - } - .dark\:border-indigo-600 { - --tw-border-opacity: 1; - border-color: rgb(79 70 229 / var(--tw-border-opacity)); - } - .dark\:border-indigo-200 { - --tw-border-opacity: 1; - border-color: rgb(199 210 254 / var(--tw-border-opacity)); - } - .dark\:border-indigo-800 { - --tw-border-opacity: 1; - border-color: rgb(55 48 163 / var(--tw-border-opacity)); - } - .dark\:border-indigo-100 { - --tw-border-opacity: 1; - border-color: rgb(224 231 255 / var(--tw-border-opacity)); - } - .dark\:border-indigo-300 { - --tw-border-opacity: 1; - border-color: rgb(165 180 252 / 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-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\:text-indigo-200 { - --tw-text-opacity: 1; - color: rgb(199 210 254 / 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-indigo-400:hover { - --tw-bg-opacity: 1; - background-color: rgb(129 140 248 / 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; @@ -2350,23 +8317,8 @@ h6 a { } } @media (min-width: 768px) { - .md\:col-span-14 { - grid-column: span 14 / span 14; - } - .md\:col-span-2 { - grid-column: span 2 / span 2; - } - .md\:col-span-1 { - grid-column: span 1 / span 1; - } - .md\:col-span-15 { - grid-column: span 15 / span 15; - } - .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 { margin-left: 0px; @@ -2375,6 +8327,9 @@ h6 a { .md\:mb-12 { margin-bottom: 3rem; } + .md\:mt-3 { + margin-top: 0.75rem; + } .md\:block { display: block; } @@ -2393,8 +8348,8 @@ h6 a { .md\:flex-auto { 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 { padding-top: 2rem; @@ -2406,6 +8361,3500 @@ 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-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-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-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-blue-800):hover { + --tw-bg-opacity: 1; + background-color: rgb(30 64 175 / 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-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)); +} /* slices/admin/assets/css/app.css */ body { diff --git a/public/assets/index.js b/public/assets/index.js index 1bc9936..3db0f9d 100644 --- a/public/assets/index.js +++ b/public/assets/index.js @@ -1,4 +1,10 @@ (function() { + if (localStorage.theme === 'dark' || (!('theme' in localStorage) && window.matchMedia('(prefers-color-scheme: dark)').matches)) { + document.documentElement.classList.add('dark') + } else { + document.documentElement.classList.remove('dark') + } + document.addEventListener('alpine:init', () => { Alpine.magic('clipboard', () => { return subject => navigator.clipboard.writeText(subject) diff --git a/tailwind.config.js b/tailwind.config.js index 7a71d59..ec6a0d1 100644 --- a/tailwind.config.js +++ b/tailwind.config.js @@ -3,6 +3,7 @@ const colors = require("tailwindcss/colors"); module.exports = { + darkMode: 'class', content: ["./app/templates/**/*.slim", "./slices/admin/templates/**/*.slim", "./public/assets/index.js", "app/decorators/*/decorator.rb"], safelist: [ {