diff --git a/app/Abstracts/View/Components/Transactions/Show.php b/app/Abstracts/View/Components/Transactions/Show.php index b02f6b0d4..fe7ca80a6 100644 --- a/app/Abstracts/View/Components/Transactions/Show.php +++ b/app/Abstracts/View/Components/Transactions/Show.php @@ -285,6 +285,9 @@ abstract class Show extends Component /** @var bool */ public $hideChildren; + /** @var bool */ + public $hideTransfer; + /** @var bool */ public $hideAttachment; @@ -329,7 +332,7 @@ abstract class Show extends Component string $textRelatedTransansaction = '', string $textRelatedDocumentNumber = '', string $textRelatedContact = '', string $textRelatedDocumentDate = '', string $textRelatedDocumentAmount = '', string $textRelatedAmount = '', string $routeDocumentShow = '', string $routeTransactionShow = '', string $textButtonAddNew = '', - bool $hideSchedule = false, bool $hideChildren = false, bool $hideAttachment = false, $attachment = [], + bool $hideSchedule = false, bool $hideChildren = false, bool $hideTransfer = false, bool $hideAttachment = false, $attachment = [], array $connectTranslations = [], string $textRecurringType = '', bool $hideRecurringMessage = false, bool $hideCreated = false ) { $this->type = $type; @@ -386,6 +389,9 @@ abstract class Show extends Component // Hide Children $this->hideChildren = $hideChildren; + // Hide Transfer + $this->hideTransfer = $hideTransfer; + // Hide Attachment $this->hideAttachment = $hideAttachment; diff --git a/app/Jobs/Common/CreateContact.php b/app/Jobs/Common/CreateContact.php index bad83ef9a..452756c5e 100644 --- a/app/Jobs/Common/CreateContact.php +++ b/app/Jobs/Common/CreateContact.php @@ -43,13 +43,13 @@ class CreateContact extends Job implements HasOwner, HasSource, ShouldCreate throw new \Exception($message); } - $customer_role = Role::all()->filter(function ($role) { + $customer_role_id = Role::all()->filter(function ($role) { return $role->hasPermission('read-client-portal'); - })->pluck('id')->toArray(); + })->pluck('id')->first(); $this->request->merge([ 'locale' => setting('default.locale', 'en-GB'), - 'roles' => $customer_role, + 'roles' => $customer_role_id, 'companies' => [$this->request->get('company_id')], ]); diff --git a/app/Jobs/Common/UpdateContact.php b/app/Jobs/Common/UpdateContact.php index cad42419c..9c23466fa 100644 --- a/app/Jobs/Common/UpdateContact.php +++ b/app/Jobs/Common/UpdateContact.php @@ -57,13 +57,13 @@ class UpdateContact extends Job implements ShouldUpdate throw new \Exception($message); } - $customer_role = Role::all()->filter(function ($role) { + $customer_role_id = Role::all()->filter(function ($role) { return $role->hasPermission('read-client-portal'); - })->pluck('id')->toArray(); + })->pluck('id')->first(); $this->request->merge([ 'locale' => setting('default.locale', 'en-GB'), - 'roles' => $customer_role, + 'roles' => $customer_role_id, 'companies' => [$this->request->get('company_id')], ]); diff --git a/app/Models/Banking/Transaction.php b/app/Models/Banking/Transaction.php index e0f15b75b..f0939d374 100644 --- a/app/Models/Banking/Transaction.php +++ b/app/Models/Banking/Transaction.php @@ -141,6 +141,19 @@ class Transaction extends Model return $this->morphOne('App\Models\Common\Recurring', 'recurable'); } + public function transfer() + { + if ($this->type == self::INCOME_TYPE) { + return $this->belongsTo('App\Models\Banking\Transfer', 'id', 'income_transaction_id'); + } + + if ($this->type == self::EXPENSE_TYPE) { + return $this->belongsTo('App\Models\Banking\Transfer', 'id', 'expense_transaction_id'); + } + + return null; + } + public function splits() { return $this->hasMany('App\Models\Banking\Transaction', 'split_id'); diff --git a/app/View/Components/Index/Country.php b/app/View/Components/Index/Country.php index dcbf5c390..373f559a6 100644 --- a/app/View/Components/Index/Country.php +++ b/app/View/Components/Index/Country.php @@ -27,6 +27,7 @@ class Country extends Component */ public function __construct($code) { $this->code = $code; + $this->country = trans('general.na'); } /** @@ -36,7 +37,9 @@ class Country extends Component */ public function render() { - $this->country = trans('countries.' . $this->code); + if (! empty($this->code)) { + $this->country = trans('countries.' . $this->code); + } return view('components.index.country'); } diff --git a/app/View/Components/Transactions/Show/Transfer.php b/app/View/Components/Transactions/Show/Transfer.php new file mode 100644 index 000000000..c9862afbe --- /dev/null +++ b/app/View/Components/Transactions/Show/Transfer.php @@ -0,0 +1,18 @@ + .tooltip-arrow:before{ border-style: solid; - border-color: #E5E7EB; + border-color: #e5e7eb; } [data-tooltip-style^='light'] + .tooltip[data-popper-placement^='top'] > .tooltip-arrow:before{ @@ -15206,15 +15206,13 @@ input[type="date"]::-webkit-inner-spin-button, .divide-none > :not([hidden]) ~ :not([hidden]){ border-style: none; } -.divide-inherit > :not([hidden]) ~ :not([hidden]){ - border-color: inherit; -} -.divide-current > :not([hidden]) ~ :not([hidden]){ - border-color: currentColor; -} .divide-transparent > :not([hidden]) ~ :not([hidden]){ border-color: transparent; } +.divide-white > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgb(255 255 255 / var(--tw-divide-opacity)); +} .divide-black-50 > :not([hidden]) ~ :not([hidden]){ --tw-divide-opacity: 1; border-color: rgb(246 246 246 / var(--tw-divide-opacity)); @@ -15259,50 +15257,6 @@ input[type="date"]::-webkit-inner-spin-button, --tw-divide-opacity: 1; border-color: rgb(66 66 66 / var(--tw-divide-opacity)); } -.divide-white > :not([hidden]) ~ :not([hidden]){ - --tw-divide-opacity: 1; - border-color: rgb(255 255 255 / var(--tw-divide-opacity)); -} -.divide-slate-50 > :not([hidden]) ~ :not([hidden]){ - --tw-divide-opacity: 1; - border-color: rgb(248 250 252 / var(--tw-divide-opacity)); -} -.divide-slate-100 > :not([hidden]) ~ :not([hidden]){ - --tw-divide-opacity: 1; - border-color: rgb(241 245 249 / var(--tw-divide-opacity)); -} -.divide-slate-200 > :not([hidden]) ~ :not([hidden]){ - --tw-divide-opacity: 1; - border-color: rgb(226 232 240 / var(--tw-divide-opacity)); -} -.divide-slate-300 > :not([hidden]) ~ :not([hidden]){ - --tw-divide-opacity: 1; - border-color: rgb(203 213 225 / var(--tw-divide-opacity)); -} -.divide-slate-400 > :not([hidden]) ~ :not([hidden]){ - --tw-divide-opacity: 1; - border-color: rgb(148 163 184 / var(--tw-divide-opacity)); -} -.divide-slate-500 > :not([hidden]) ~ :not([hidden]){ - --tw-divide-opacity: 1; - border-color: rgb(100 116 139 / var(--tw-divide-opacity)); -} -.divide-slate-600 > :not([hidden]) ~ :not([hidden]){ - --tw-divide-opacity: 1; - border-color: rgb(71 85 105 / var(--tw-divide-opacity)); -} -.divide-slate-700 > :not([hidden]) ~ :not([hidden]){ - --tw-divide-opacity: 1; - border-color: rgb(51 65 85 / var(--tw-divide-opacity)); -} -.divide-slate-800 > :not([hidden]) ~ :not([hidden]){ - --tw-divide-opacity: 1; - border-color: rgb(30 41 59 / var(--tw-divide-opacity)); -} -.divide-slate-900 > :not([hidden]) ~ :not([hidden]){ - --tw-divide-opacity: 1; - border-color: rgb(15 23 42 / var(--tw-divide-opacity)); -} .divide-gray-50 > :not([hidden]) ~ :not([hidden]){ --tw-divide-opacity: 1; border-color: rgb(249 250 251 / var(--tw-divide-opacity)); @@ -15343,126 +15297,6 @@ input[type="date"]::-webkit-inner-spin-button, --tw-divide-opacity: 1; border-color: rgb(17 24 39 / var(--tw-divide-opacity)); } -.divide-zinc-50 > :not([hidden]) ~ :not([hidden]){ - --tw-divide-opacity: 1; - border-color: rgb(250 250 250 / var(--tw-divide-opacity)); -} -.divide-zinc-100 > :not([hidden]) ~ :not([hidden]){ - --tw-divide-opacity: 1; - border-color: rgb(244 244 245 / var(--tw-divide-opacity)); -} -.divide-zinc-200 > :not([hidden]) ~ :not([hidden]){ - --tw-divide-opacity: 1; - border-color: rgb(228 228 231 / var(--tw-divide-opacity)); -} -.divide-zinc-300 > :not([hidden]) ~ :not([hidden]){ - --tw-divide-opacity: 1; - border-color: rgb(212 212 216 / var(--tw-divide-opacity)); -} -.divide-zinc-400 > :not([hidden]) ~ :not([hidden]){ - --tw-divide-opacity: 1; - border-color: rgb(161 161 170 / var(--tw-divide-opacity)); -} -.divide-zinc-500 > :not([hidden]) ~ :not([hidden]){ - --tw-divide-opacity: 1; - border-color: rgb(113 113 122 / var(--tw-divide-opacity)); -} -.divide-zinc-600 > :not([hidden]) ~ :not([hidden]){ - --tw-divide-opacity: 1; - border-color: rgb(82 82 91 / var(--tw-divide-opacity)); -} -.divide-zinc-700 > :not([hidden]) ~ :not([hidden]){ - --tw-divide-opacity: 1; - border-color: rgb(63 63 70 / var(--tw-divide-opacity)); -} -.divide-zinc-800 > :not([hidden]) ~ :not([hidden]){ - --tw-divide-opacity: 1; - border-color: rgb(39 39 42 / var(--tw-divide-opacity)); -} -.divide-zinc-900 > :not([hidden]) ~ :not([hidden]){ - --tw-divide-opacity: 1; - border-color: rgb(24 24 27 / var(--tw-divide-opacity)); -} -.divide-neutral-50 > :not([hidden]) ~ :not([hidden]){ - --tw-divide-opacity: 1; - border-color: rgb(250 250 250 / var(--tw-divide-opacity)); -} -.divide-neutral-100 > :not([hidden]) ~ :not([hidden]){ - --tw-divide-opacity: 1; - border-color: rgb(245 245 245 / var(--tw-divide-opacity)); -} -.divide-neutral-200 > :not([hidden]) ~ :not([hidden]){ - --tw-divide-opacity: 1; - border-color: rgb(229 229 229 / var(--tw-divide-opacity)); -} -.divide-neutral-300 > :not([hidden]) ~ :not([hidden]){ - --tw-divide-opacity: 1; - border-color: rgb(212 212 212 / var(--tw-divide-opacity)); -} -.divide-neutral-400 > :not([hidden]) ~ :not([hidden]){ - --tw-divide-opacity: 1; - border-color: rgb(163 163 163 / var(--tw-divide-opacity)); -} -.divide-neutral-500 > :not([hidden]) ~ :not([hidden]){ - --tw-divide-opacity: 1; - border-color: rgb(115 115 115 / var(--tw-divide-opacity)); -} -.divide-neutral-600 > :not([hidden]) ~ :not([hidden]){ - --tw-divide-opacity: 1; - border-color: rgb(82 82 82 / var(--tw-divide-opacity)); -} -.divide-neutral-700 > :not([hidden]) ~ :not([hidden]){ - --tw-divide-opacity: 1; - border-color: rgb(64 64 64 / var(--tw-divide-opacity)); -} -.divide-neutral-800 > :not([hidden]) ~ :not([hidden]){ - --tw-divide-opacity: 1; - border-color: rgb(38 38 38 / var(--tw-divide-opacity)); -} -.divide-neutral-900 > :not([hidden]) ~ :not([hidden]){ - --tw-divide-opacity: 1; - border-color: rgb(23 23 23 / var(--tw-divide-opacity)); -} -.divide-stone-50 > :not([hidden]) ~ :not([hidden]){ - --tw-divide-opacity: 1; - border-color: rgb(250 250 249 / var(--tw-divide-opacity)); -} -.divide-stone-100 > :not([hidden]) ~ :not([hidden]){ - --tw-divide-opacity: 1; - border-color: rgb(245 245 244 / var(--tw-divide-opacity)); -} -.divide-stone-200 > :not([hidden]) ~ :not([hidden]){ - --tw-divide-opacity: 1; - border-color: rgb(231 229 228 / var(--tw-divide-opacity)); -} -.divide-stone-300 > :not([hidden]) ~ :not([hidden]){ - --tw-divide-opacity: 1; - border-color: rgb(214 211 209 / var(--tw-divide-opacity)); -} -.divide-stone-400 > :not([hidden]) ~ :not([hidden]){ - --tw-divide-opacity: 1; - border-color: rgb(168 162 158 / var(--tw-divide-opacity)); -} -.divide-stone-500 > :not([hidden]) ~ :not([hidden]){ - --tw-divide-opacity: 1; - border-color: rgb(120 113 108 / var(--tw-divide-opacity)); -} -.divide-stone-600 > :not([hidden]) ~ :not([hidden]){ - --tw-divide-opacity: 1; - border-color: rgb(87 83 78 / var(--tw-divide-opacity)); -} -.divide-stone-700 > :not([hidden]) ~ :not([hidden]){ - --tw-divide-opacity: 1; - border-color: rgb(68 64 60 / var(--tw-divide-opacity)); -} -.divide-stone-800 > :not([hidden]) ~ :not([hidden]){ - --tw-divide-opacity: 1; - border-color: rgb(41 37 36 / var(--tw-divide-opacity)); -} -.divide-stone-900 > :not([hidden]) ~ :not([hidden]){ - --tw-divide-opacity: 1; - border-color: rgb(28 25 23 / var(--tw-divide-opacity)); -} .divide-red-50 > :not([hidden]) ~ :not([hidden]){ --tw-divide-opacity: 1; border-color: rgb(252 242 242 / var(--tw-divide-opacity)); @@ -15551,46 +15385,6 @@ input[type="date"]::-webkit-inner-spin-button, --tw-divide-opacity: 1; border-color: rgb(245 158 11 / var(--tw-divide-opacity)); } -.divide-amber-50 > :not([hidden]) ~ :not([hidden]){ - --tw-divide-opacity: 1; - border-color: rgb(255 251 235 / var(--tw-divide-opacity)); -} -.divide-amber-100 > :not([hidden]) ~ :not([hidden]){ - --tw-divide-opacity: 1; - border-color: rgb(254 243 199 / var(--tw-divide-opacity)); -} -.divide-amber-200 > :not([hidden]) ~ :not([hidden]){ - --tw-divide-opacity: 1; - border-color: rgb(253 230 138 / var(--tw-divide-opacity)); -} -.divide-amber-300 > :not([hidden]) ~ :not([hidden]){ - --tw-divide-opacity: 1; - border-color: rgb(252 211 77 / var(--tw-divide-opacity)); -} -.divide-amber-400 > :not([hidden]) ~ :not([hidden]){ - --tw-divide-opacity: 1; - border-color: rgb(251 191 36 / var(--tw-divide-opacity)); -} -.divide-amber-500 > :not([hidden]) ~ :not([hidden]){ - --tw-divide-opacity: 1; - border-color: rgb(245 158 11 / var(--tw-divide-opacity)); -} -.divide-amber-600 > :not([hidden]) ~ :not([hidden]){ - --tw-divide-opacity: 1; - border-color: rgb(217 119 6 / var(--tw-divide-opacity)); -} -.divide-amber-700 > :not([hidden]) ~ :not([hidden]){ - --tw-divide-opacity: 1; - border-color: rgb(180 83 9 / var(--tw-divide-opacity)); -} -.divide-amber-800 > :not([hidden]) ~ :not([hidden]){ - --tw-divide-opacity: 1; - border-color: rgb(146 64 14 / var(--tw-divide-opacity)); -} -.divide-amber-900 > :not([hidden]) ~ :not([hidden]){ - --tw-divide-opacity: 1; - border-color: rgb(120 53 15 / var(--tw-divide-opacity)); -} .divide-yellow-50 > :not([hidden]) ~ :not([hidden]){ --tw-divide-opacity: 1; border-color: rgb(253 253 234 / var(--tw-divide-opacity)); @@ -15631,46 +15425,6 @@ input[type="date"]::-webkit-inner-spin-button, --tw-divide-opacity: 1; border-color: rgb(99 49 18 / var(--tw-divide-opacity)); } -.divide-lime-50 > :not([hidden]) ~ :not([hidden]){ - --tw-divide-opacity: 1; - border-color: rgb(247 254 231 / var(--tw-divide-opacity)); -} -.divide-lime-100 > :not([hidden]) ~ :not([hidden]){ - --tw-divide-opacity: 1; - border-color: rgb(236 252 203 / var(--tw-divide-opacity)); -} -.divide-lime-200 > :not([hidden]) ~ :not([hidden]){ - --tw-divide-opacity: 1; - border-color: rgb(217 249 157 / var(--tw-divide-opacity)); -} -.divide-lime-300 > :not([hidden]) ~ :not([hidden]){ - --tw-divide-opacity: 1; - border-color: rgb(190 242 100 / var(--tw-divide-opacity)); -} -.divide-lime-400 > :not([hidden]) ~ :not([hidden]){ - --tw-divide-opacity: 1; - border-color: rgb(163 230 53 / var(--tw-divide-opacity)); -} -.divide-lime-500 > :not([hidden]) ~ :not([hidden]){ - --tw-divide-opacity: 1; - border-color: rgb(132 204 22 / var(--tw-divide-opacity)); -} -.divide-lime-600 > :not([hidden]) ~ :not([hidden]){ - --tw-divide-opacity: 1; - border-color: rgb(101 163 13 / var(--tw-divide-opacity)); -} -.divide-lime-700 > :not([hidden]) ~ :not([hidden]){ - --tw-divide-opacity: 1; - border-color: rgb(77 124 15 / var(--tw-divide-opacity)); -} -.divide-lime-800 > :not([hidden]) ~ :not([hidden]){ - --tw-divide-opacity: 1; - border-color: rgb(63 98 18 / var(--tw-divide-opacity)); -} -.divide-lime-900 > :not([hidden]) ~ :not([hidden]){ - --tw-divide-opacity: 1; - border-color: rgb(54 83 20 / var(--tw-divide-opacity)); -} .divide-green-50 > :not([hidden]) ~ :not([hidden]){ --tw-divide-opacity: 1; border-color: rgb(248 250 246 / var(--tw-divide-opacity)); @@ -15715,46 +15469,6 @@ input[type="date"]::-webkit-inner-spin-button, --tw-divide-opacity: 1; border-color: rgb(110 161 82 / var(--tw-divide-opacity)); } -.divide-emerald-50 > :not([hidden]) ~ :not([hidden]){ - --tw-divide-opacity: 1; - border-color: rgb(236 253 245 / var(--tw-divide-opacity)); -} -.divide-emerald-100 > :not([hidden]) ~ :not([hidden]){ - --tw-divide-opacity: 1; - border-color: rgb(209 250 229 / var(--tw-divide-opacity)); -} -.divide-emerald-200 > :not([hidden]) ~ :not([hidden]){ - --tw-divide-opacity: 1; - border-color: rgb(167 243 208 / var(--tw-divide-opacity)); -} -.divide-emerald-300 > :not([hidden]) ~ :not([hidden]){ - --tw-divide-opacity: 1; - border-color: rgb(110 231 183 / var(--tw-divide-opacity)); -} -.divide-emerald-400 > :not([hidden]) ~ :not([hidden]){ - --tw-divide-opacity: 1; - border-color: rgb(52 211 153 / var(--tw-divide-opacity)); -} -.divide-emerald-500 > :not([hidden]) ~ :not([hidden]){ - --tw-divide-opacity: 1; - border-color: rgb(16 185 129 / var(--tw-divide-opacity)); -} -.divide-emerald-600 > :not([hidden]) ~ :not([hidden]){ - --tw-divide-opacity: 1; - border-color: rgb(5 150 105 / var(--tw-divide-opacity)); -} -.divide-emerald-700 > :not([hidden]) ~ :not([hidden]){ - --tw-divide-opacity: 1; - border-color: rgb(4 120 87 / var(--tw-divide-opacity)); -} -.divide-emerald-800 > :not([hidden]) ~ :not([hidden]){ - --tw-divide-opacity: 1; - border-color: rgb(6 95 70 / var(--tw-divide-opacity)); -} -.divide-emerald-900 > :not([hidden]) ~ :not([hidden]){ - --tw-divide-opacity: 1; - border-color: rgb(6 78 59 / var(--tw-divide-opacity)); -} .divide-teal-50 > :not([hidden]) ~ :not([hidden]){ --tw-divide-opacity: 1; border-color: rgb(237 250 250 / var(--tw-divide-opacity)); @@ -15795,86 +15509,6 @@ input[type="date"]::-webkit-inner-spin-button, --tw-divide-opacity: 1; border-color: rgb(1 68 81 / var(--tw-divide-opacity)); } -.divide-cyan-50 > :not([hidden]) ~ :not([hidden]){ - --tw-divide-opacity: 1; - border-color: rgb(236 254 255 / var(--tw-divide-opacity)); -} -.divide-cyan-100 > :not([hidden]) ~ :not([hidden]){ - --tw-divide-opacity: 1; - border-color: rgb(207 250 254 / var(--tw-divide-opacity)); -} -.divide-cyan-200 > :not([hidden]) ~ :not([hidden]){ - --tw-divide-opacity: 1; - border-color: rgb(165 243 252 / var(--tw-divide-opacity)); -} -.divide-cyan-300 > :not([hidden]) ~ :not([hidden]){ - --tw-divide-opacity: 1; - border-color: rgb(103 232 249 / var(--tw-divide-opacity)); -} -.divide-cyan-400 > :not([hidden]) ~ :not([hidden]){ - --tw-divide-opacity: 1; - border-color: rgb(34 211 238 / var(--tw-divide-opacity)); -} -.divide-cyan-500 > :not([hidden]) ~ :not([hidden]){ - --tw-divide-opacity: 1; - border-color: rgb(6 182 212 / var(--tw-divide-opacity)); -} -.divide-cyan-600 > :not([hidden]) ~ :not([hidden]){ - --tw-divide-opacity: 1; - border-color: rgb(8 145 178 / var(--tw-divide-opacity)); -} -.divide-cyan-700 > :not([hidden]) ~ :not([hidden]){ - --tw-divide-opacity: 1; - border-color: rgb(14 116 144 / var(--tw-divide-opacity)); -} -.divide-cyan-800 > :not([hidden]) ~ :not([hidden]){ - --tw-divide-opacity: 1; - border-color: rgb(21 94 117 / var(--tw-divide-opacity)); -} -.divide-cyan-900 > :not([hidden]) ~ :not([hidden]){ - --tw-divide-opacity: 1; - border-color: rgb(22 78 99 / var(--tw-divide-opacity)); -} -.divide-sky-50 > :not([hidden]) ~ :not([hidden]){ - --tw-divide-opacity: 1; - border-color: rgb(240 249 255 / var(--tw-divide-opacity)); -} -.divide-sky-100 > :not([hidden]) ~ :not([hidden]){ - --tw-divide-opacity: 1; - border-color: rgb(224 242 254 / var(--tw-divide-opacity)); -} -.divide-sky-200 > :not([hidden]) ~ :not([hidden]){ - --tw-divide-opacity: 1; - border-color: rgb(186 230 253 / var(--tw-divide-opacity)); -} -.divide-sky-300 > :not([hidden]) ~ :not([hidden]){ - --tw-divide-opacity: 1; - border-color: rgb(125 211 252 / var(--tw-divide-opacity)); -} -.divide-sky-400 > :not([hidden]) ~ :not([hidden]){ - --tw-divide-opacity: 1; - border-color: rgb(56 189 248 / var(--tw-divide-opacity)); -} -.divide-sky-500 > :not([hidden]) ~ :not([hidden]){ - --tw-divide-opacity: 1; - border-color: rgb(14 165 233 / var(--tw-divide-opacity)); -} -.divide-sky-600 > :not([hidden]) ~ :not([hidden]){ - --tw-divide-opacity: 1; - border-color: rgb(2 132 199 / var(--tw-divide-opacity)); -} -.divide-sky-700 > :not([hidden]) ~ :not([hidden]){ - --tw-divide-opacity: 1; - border-color: rgb(3 105 161 / var(--tw-divide-opacity)); -} -.divide-sky-800 > :not([hidden]) ~ :not([hidden]){ - --tw-divide-opacity: 1; - border-color: rgb(7 89 133 / var(--tw-divide-opacity)); -} -.divide-sky-900 > :not([hidden]) ~ :not([hidden]){ - --tw-divide-opacity: 1; - border-color: rgb(12 74 110 / var(--tw-divide-opacity)); -} .divide-blue-50 > :not([hidden]) ~ :not([hidden]){ --tw-divide-opacity: 1; border-color: rgb(242 248 251 / var(--tw-divide-opacity)); @@ -15959,46 +15593,6 @@ input[type="date"]::-webkit-inner-spin-button, --tw-divide-opacity: 1; border-color: rgb(54 47 120 / var(--tw-divide-opacity)); } -.divide-violet-50 > :not([hidden]) ~ :not([hidden]){ - --tw-divide-opacity: 1; - border-color: rgb(245 243 255 / var(--tw-divide-opacity)); -} -.divide-violet-100 > :not([hidden]) ~ :not([hidden]){ - --tw-divide-opacity: 1; - border-color: rgb(237 233 254 / var(--tw-divide-opacity)); -} -.divide-violet-200 > :not([hidden]) ~ :not([hidden]){ - --tw-divide-opacity: 1; - border-color: rgb(221 214 254 / var(--tw-divide-opacity)); -} -.divide-violet-300 > :not([hidden]) ~ :not([hidden]){ - --tw-divide-opacity: 1; - border-color: rgb(196 181 253 / var(--tw-divide-opacity)); -} -.divide-violet-400 > :not([hidden]) ~ :not([hidden]){ - --tw-divide-opacity: 1; - border-color: rgb(167 139 250 / var(--tw-divide-opacity)); -} -.divide-violet-500 > :not([hidden]) ~ :not([hidden]){ - --tw-divide-opacity: 1; - border-color: rgb(139 92 246 / var(--tw-divide-opacity)); -} -.divide-violet-600 > :not([hidden]) ~ :not([hidden]){ - --tw-divide-opacity: 1; - border-color: rgb(124 58 237 / var(--tw-divide-opacity)); -} -.divide-violet-700 > :not([hidden]) ~ :not([hidden]){ - --tw-divide-opacity: 1; - border-color: rgb(109 40 217 / var(--tw-divide-opacity)); -} -.divide-violet-800 > :not([hidden]) ~ :not([hidden]){ - --tw-divide-opacity: 1; - border-color: rgb(91 33 182 / var(--tw-divide-opacity)); -} -.divide-violet-900 > :not([hidden]) ~ :not([hidden]){ - --tw-divide-opacity: 1; - border-color: rgb(76 29 149 / var(--tw-divide-opacity)); -} .divide-purple-50 > :not([hidden]) ~ :not([hidden]){ --tw-divide-opacity: 1; border-color: rgb(247 247 249 / var(--tw-divide-opacity)); @@ -16043,46 +15637,6 @@ input[type="date"]::-webkit-inner-spin-button, --tw-divide-opacity: 1; border-color: rgb(85 88 139 / var(--tw-divide-opacity)); } -.divide-fuchsia-50 > :not([hidden]) ~ :not([hidden]){ - --tw-divide-opacity: 1; - border-color: rgb(253 244 255 / var(--tw-divide-opacity)); -} -.divide-fuchsia-100 > :not([hidden]) ~ :not([hidden]){ - --tw-divide-opacity: 1; - border-color: rgb(250 232 255 / var(--tw-divide-opacity)); -} -.divide-fuchsia-200 > :not([hidden]) ~ :not([hidden]){ - --tw-divide-opacity: 1; - border-color: rgb(245 208 254 / var(--tw-divide-opacity)); -} -.divide-fuchsia-300 > :not([hidden]) ~ :not([hidden]){ - --tw-divide-opacity: 1; - border-color: rgb(240 171 252 / var(--tw-divide-opacity)); -} -.divide-fuchsia-400 > :not([hidden]) ~ :not([hidden]){ - --tw-divide-opacity: 1; - border-color: rgb(232 121 249 / var(--tw-divide-opacity)); -} -.divide-fuchsia-500 > :not([hidden]) ~ :not([hidden]){ - --tw-divide-opacity: 1; - border-color: rgb(217 70 239 / var(--tw-divide-opacity)); -} -.divide-fuchsia-600 > :not([hidden]) ~ :not([hidden]){ - --tw-divide-opacity: 1; - border-color: rgb(192 38 211 / var(--tw-divide-opacity)); -} -.divide-fuchsia-700 > :not([hidden]) ~ :not([hidden]){ - --tw-divide-opacity: 1; - border-color: rgb(162 28 175 / var(--tw-divide-opacity)); -} -.divide-fuchsia-800 > :not([hidden]) ~ :not([hidden]){ - --tw-divide-opacity: 1; - border-color: rgb(134 25 143 / var(--tw-divide-opacity)); -} -.divide-fuchsia-900 > :not([hidden]) ~ :not([hidden]){ - --tw-divide-opacity: 1; - border-color: rgb(112 26 117 / var(--tw-divide-opacity)); -} .divide-pink-50 > :not([hidden]) ~ :not([hidden]){ --tw-divide-opacity: 1; border-color: rgb(253 242 248 / var(--tw-divide-opacity)); @@ -16123,6 +15677,30 @@ input[type="date"]::-webkit-inner-spin-button, --tw-divide-opacity: 1; border-color: rgb(117 26 61 / var(--tw-divide-opacity)); } +.divide-lilac-100 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgb(245 247 250 / var(--tw-divide-opacity)); +} +.divide-lilac-300 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgb(237 240 252 / var(--tw-divide-opacity)); +} +.divide-lilac-900 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgb(220 226 249 / var(--tw-divide-opacity)); +} +.divide-lilac > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgb(248 249 254 / var(--tw-divide-opacity)); +} +.divide-golden-900 > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgb(191 184 130 / var(--tw-divide-opacity)); +} +.divide-golden > :not([hidden]) ~ :not([hidden]){ + --tw-divide-opacity: 1; + border-color: rgb(209 201 137 / var(--tw-divide-opacity)); +} .divide-rose-50 > :not([hidden]) ~ :not([hidden]){ --tw-divide-opacity: 1; border-color: rgb(255 241 242 / var(--tw-divide-opacity)); @@ -16167,30 +15745,6 @@ input[type="date"]::-webkit-inner-spin-button, --tw-divide-opacity: 1; border-color: rgb(244 63 94 / var(--tw-divide-opacity)); } -.divide-lilac-100 > :not([hidden]) ~ :not([hidden]){ - --tw-divide-opacity: 1; - border-color: rgb(245 247 250 / var(--tw-divide-opacity)); -} -.divide-lilac-300 > :not([hidden]) ~ :not([hidden]){ - --tw-divide-opacity: 1; - border-color: rgb(237 240 252 / var(--tw-divide-opacity)); -} -.divide-lilac-900 > :not([hidden]) ~ :not([hidden]){ - --tw-divide-opacity: 1; - border-color: rgb(220 226 249 / var(--tw-divide-opacity)); -} -.divide-lilac > :not([hidden]) ~ :not([hidden]){ - --tw-divide-opacity: 1; - border-color: rgb(248 249 254 / var(--tw-divide-opacity)); -} -.divide-golden-900 > :not([hidden]) ~ :not([hidden]){ - --tw-divide-opacity: 1; - border-color: rgb(191 184 130 / var(--tw-divide-opacity)); -} -.divide-golden > :not([hidden]) ~ :not([hidden]){ - --tw-divide-opacity: 1; - border-color: rgb(209 201 137 / var(--tw-divide-opacity)); -} .divide-status-success > :not([hidden]) ~ :not([hidden]){ --tw-divide-opacity: 1; border-color: rgb(241 246 238 / var(--tw-divide-opacity)); @@ -16913,15 +16467,13 @@ input[type="date"]::-webkit-inner-spin-button, .border-none{ border-style: none; } -.border-inherit{ - border-color: inherit; -} -.border-current{ - border-color: currentColor; -} .border-transparent{ border-color: transparent; } +.border-white{ + --tw-border-opacity: 1; + border-color: rgb(255 255 255 / var(--tw-border-opacity)); +} .border-black-50{ --tw-border-opacity: 1; border-color: rgb(246 246 246 / var(--tw-border-opacity)); @@ -16966,50 +16518,6 @@ input[type="date"]::-webkit-inner-spin-button, --tw-border-opacity: 1; border-color: rgb(66 66 66 / var(--tw-border-opacity)); } -.border-white{ - --tw-border-opacity: 1; - border-color: rgb(255 255 255 / var(--tw-border-opacity)); -} -.border-slate-50{ - --tw-border-opacity: 1; - border-color: rgb(248 250 252 / var(--tw-border-opacity)); -} -.border-slate-100{ - --tw-border-opacity: 1; - border-color: rgb(241 245 249 / var(--tw-border-opacity)); -} -.border-slate-200{ - --tw-border-opacity: 1; - border-color: rgb(226 232 240 / var(--tw-border-opacity)); -} -.border-slate-300{ - --tw-border-opacity: 1; - border-color: rgb(203 213 225 / var(--tw-border-opacity)); -} -.border-slate-400{ - --tw-border-opacity: 1; - border-color: rgb(148 163 184 / var(--tw-border-opacity)); -} -.border-slate-500{ - --tw-border-opacity: 1; - border-color: rgb(100 116 139 / var(--tw-border-opacity)); -} -.border-slate-600{ - --tw-border-opacity: 1; - border-color: rgb(71 85 105 / var(--tw-border-opacity)); -} -.border-slate-700{ - --tw-border-opacity: 1; - border-color: rgb(51 65 85 / var(--tw-border-opacity)); -} -.border-slate-800{ - --tw-border-opacity: 1; - border-color: rgb(30 41 59 / var(--tw-border-opacity)); -} -.border-slate-900{ - --tw-border-opacity: 1; - border-color: rgb(15 23 42 / var(--tw-border-opacity)); -} .border-gray-50{ --tw-border-opacity: 1; border-color: rgb(249 250 251 / var(--tw-border-opacity)); @@ -17050,126 +16558,6 @@ input[type="date"]::-webkit-inner-spin-button, --tw-border-opacity: 1; border-color: rgb(17 24 39 / var(--tw-border-opacity)); } -.border-zinc-50{ - --tw-border-opacity: 1; - border-color: rgb(250 250 250 / var(--tw-border-opacity)); -} -.border-zinc-100{ - --tw-border-opacity: 1; - border-color: rgb(244 244 245 / var(--tw-border-opacity)); -} -.border-zinc-200{ - --tw-border-opacity: 1; - border-color: rgb(228 228 231 / var(--tw-border-opacity)); -} -.border-zinc-300{ - --tw-border-opacity: 1; - border-color: rgb(212 212 216 / var(--tw-border-opacity)); -} -.border-zinc-400{ - --tw-border-opacity: 1; - border-color: rgb(161 161 170 / var(--tw-border-opacity)); -} -.border-zinc-500{ - --tw-border-opacity: 1; - border-color: rgb(113 113 122 / var(--tw-border-opacity)); -} -.border-zinc-600{ - --tw-border-opacity: 1; - border-color: rgb(82 82 91 / var(--tw-border-opacity)); -} -.border-zinc-700{ - --tw-border-opacity: 1; - border-color: rgb(63 63 70 / var(--tw-border-opacity)); -} -.border-zinc-800{ - --tw-border-opacity: 1; - border-color: rgb(39 39 42 / var(--tw-border-opacity)); -} -.border-zinc-900{ - --tw-border-opacity: 1; - border-color: rgb(24 24 27 / var(--tw-border-opacity)); -} -.border-neutral-50{ - --tw-border-opacity: 1; - border-color: rgb(250 250 250 / var(--tw-border-opacity)); -} -.border-neutral-100{ - --tw-border-opacity: 1; - border-color: rgb(245 245 245 / var(--tw-border-opacity)); -} -.border-neutral-200{ - --tw-border-opacity: 1; - border-color: rgb(229 229 229 / var(--tw-border-opacity)); -} -.border-neutral-300{ - --tw-border-opacity: 1; - border-color: rgb(212 212 212 / var(--tw-border-opacity)); -} -.border-neutral-400{ - --tw-border-opacity: 1; - border-color: rgb(163 163 163 / var(--tw-border-opacity)); -} -.border-neutral-500{ - --tw-border-opacity: 1; - border-color: rgb(115 115 115 / var(--tw-border-opacity)); -} -.border-neutral-600{ - --tw-border-opacity: 1; - border-color: rgb(82 82 82 / var(--tw-border-opacity)); -} -.border-neutral-700{ - --tw-border-opacity: 1; - border-color: rgb(64 64 64 / var(--tw-border-opacity)); -} -.border-neutral-800{ - --tw-border-opacity: 1; - border-color: rgb(38 38 38 / var(--tw-border-opacity)); -} -.border-neutral-900{ - --tw-border-opacity: 1; - border-color: rgb(23 23 23 / var(--tw-border-opacity)); -} -.border-stone-50{ - --tw-border-opacity: 1; - border-color: rgb(250 250 249 / var(--tw-border-opacity)); -} -.border-stone-100{ - --tw-border-opacity: 1; - border-color: rgb(245 245 244 / var(--tw-border-opacity)); -} -.border-stone-200{ - --tw-border-opacity: 1; - border-color: rgb(231 229 228 / var(--tw-border-opacity)); -} -.border-stone-300{ - --tw-border-opacity: 1; - border-color: rgb(214 211 209 / var(--tw-border-opacity)); -} -.border-stone-400{ - --tw-border-opacity: 1; - border-color: rgb(168 162 158 / var(--tw-border-opacity)); -} -.border-stone-500{ - --tw-border-opacity: 1; - border-color: rgb(120 113 108 / var(--tw-border-opacity)); -} -.border-stone-600{ - --tw-border-opacity: 1; - border-color: rgb(87 83 78 / var(--tw-border-opacity)); -} -.border-stone-700{ - --tw-border-opacity: 1; - border-color: rgb(68 64 60 / var(--tw-border-opacity)); -} -.border-stone-800{ - --tw-border-opacity: 1; - border-color: rgb(41 37 36 / var(--tw-border-opacity)); -} -.border-stone-900{ - --tw-border-opacity: 1; - border-color: rgb(28 25 23 / var(--tw-border-opacity)); -} .border-red-50{ --tw-border-opacity: 1; border-color: rgb(252 242 242 / var(--tw-border-opacity)); @@ -17258,46 +16646,6 @@ input[type="date"]::-webkit-inner-spin-button, --tw-border-opacity: 1; border-color: rgb(245 158 11 / var(--tw-border-opacity)); } -.border-amber-50{ - --tw-border-opacity: 1; - border-color: rgb(255 251 235 / var(--tw-border-opacity)); -} -.border-amber-100{ - --tw-border-opacity: 1; - border-color: rgb(254 243 199 / var(--tw-border-opacity)); -} -.border-amber-200{ - --tw-border-opacity: 1; - border-color: rgb(253 230 138 / var(--tw-border-opacity)); -} -.border-amber-300{ - --tw-border-opacity: 1; - border-color: rgb(252 211 77 / var(--tw-border-opacity)); -} -.border-amber-400{ - --tw-border-opacity: 1; - border-color: rgb(251 191 36 / var(--tw-border-opacity)); -} -.border-amber-500{ - --tw-border-opacity: 1; - border-color: rgb(245 158 11 / var(--tw-border-opacity)); -} -.border-amber-600{ - --tw-border-opacity: 1; - border-color: rgb(217 119 6 / var(--tw-border-opacity)); -} -.border-amber-700{ - --tw-border-opacity: 1; - border-color: rgb(180 83 9 / var(--tw-border-opacity)); -} -.border-amber-800{ - --tw-border-opacity: 1; - border-color: rgb(146 64 14 / var(--tw-border-opacity)); -} -.border-amber-900{ - --tw-border-opacity: 1; - border-color: rgb(120 53 15 / var(--tw-border-opacity)); -} .border-yellow-50{ --tw-border-opacity: 1; border-color: rgb(253 253 234 / var(--tw-border-opacity)); @@ -17338,46 +16686,6 @@ input[type="date"]::-webkit-inner-spin-button, --tw-border-opacity: 1; border-color: rgb(99 49 18 / var(--tw-border-opacity)); } -.border-lime-50{ - --tw-border-opacity: 1; - border-color: rgb(247 254 231 / var(--tw-border-opacity)); -} -.border-lime-100{ - --tw-border-opacity: 1; - border-color: rgb(236 252 203 / var(--tw-border-opacity)); -} -.border-lime-200{ - --tw-border-opacity: 1; - border-color: rgb(217 249 157 / var(--tw-border-opacity)); -} -.border-lime-300{ - --tw-border-opacity: 1; - border-color: rgb(190 242 100 / var(--tw-border-opacity)); -} -.border-lime-400{ - --tw-border-opacity: 1; - border-color: rgb(163 230 53 / var(--tw-border-opacity)); -} -.border-lime-500{ - --tw-border-opacity: 1; - border-color: rgb(132 204 22 / var(--tw-border-opacity)); -} -.border-lime-600{ - --tw-border-opacity: 1; - border-color: rgb(101 163 13 / var(--tw-border-opacity)); -} -.border-lime-700{ - --tw-border-opacity: 1; - border-color: rgb(77 124 15 / var(--tw-border-opacity)); -} -.border-lime-800{ - --tw-border-opacity: 1; - border-color: rgb(63 98 18 / var(--tw-border-opacity)); -} -.border-lime-900{ - --tw-border-opacity: 1; - border-color: rgb(54 83 20 / var(--tw-border-opacity)); -} .border-green-50{ --tw-border-opacity: 1; border-color: rgb(248 250 246 / var(--tw-border-opacity)); @@ -17422,46 +16730,6 @@ input[type="date"]::-webkit-inner-spin-button, --tw-border-opacity: 1; border-color: rgb(110 161 82 / var(--tw-border-opacity)); } -.border-emerald-50{ - --tw-border-opacity: 1; - border-color: rgb(236 253 245 / var(--tw-border-opacity)); -} -.border-emerald-100{ - --tw-border-opacity: 1; - border-color: rgb(209 250 229 / var(--tw-border-opacity)); -} -.border-emerald-200{ - --tw-border-opacity: 1; - border-color: rgb(167 243 208 / var(--tw-border-opacity)); -} -.border-emerald-300{ - --tw-border-opacity: 1; - border-color: rgb(110 231 183 / var(--tw-border-opacity)); -} -.border-emerald-400{ - --tw-border-opacity: 1; - border-color: rgb(52 211 153 / var(--tw-border-opacity)); -} -.border-emerald-500{ - --tw-border-opacity: 1; - border-color: rgb(16 185 129 / var(--tw-border-opacity)); -} -.border-emerald-600{ - --tw-border-opacity: 1; - border-color: rgb(5 150 105 / var(--tw-border-opacity)); -} -.border-emerald-700{ - --tw-border-opacity: 1; - border-color: rgb(4 120 87 / var(--tw-border-opacity)); -} -.border-emerald-800{ - --tw-border-opacity: 1; - border-color: rgb(6 95 70 / var(--tw-border-opacity)); -} -.border-emerald-900{ - --tw-border-opacity: 1; - border-color: rgb(6 78 59 / var(--tw-border-opacity)); -} .border-teal-50{ --tw-border-opacity: 1; border-color: rgb(237 250 250 / var(--tw-border-opacity)); @@ -17502,86 +16770,6 @@ input[type="date"]::-webkit-inner-spin-button, --tw-border-opacity: 1; border-color: rgb(1 68 81 / var(--tw-border-opacity)); } -.border-cyan-50{ - --tw-border-opacity: 1; - border-color: rgb(236 254 255 / var(--tw-border-opacity)); -} -.border-cyan-100{ - --tw-border-opacity: 1; - border-color: rgb(207 250 254 / var(--tw-border-opacity)); -} -.border-cyan-200{ - --tw-border-opacity: 1; - border-color: rgb(165 243 252 / var(--tw-border-opacity)); -} -.border-cyan-300{ - --tw-border-opacity: 1; - border-color: rgb(103 232 249 / var(--tw-border-opacity)); -} -.border-cyan-400{ - --tw-border-opacity: 1; - border-color: rgb(34 211 238 / var(--tw-border-opacity)); -} -.border-cyan-500{ - --tw-border-opacity: 1; - border-color: rgb(6 182 212 / var(--tw-border-opacity)); -} -.border-cyan-600{ - --tw-border-opacity: 1; - border-color: rgb(8 145 178 / var(--tw-border-opacity)); -} -.border-cyan-700{ - --tw-border-opacity: 1; - border-color: rgb(14 116 144 / var(--tw-border-opacity)); -} -.border-cyan-800{ - --tw-border-opacity: 1; - border-color: rgb(21 94 117 / var(--tw-border-opacity)); -} -.border-cyan-900{ - --tw-border-opacity: 1; - border-color: rgb(22 78 99 / var(--tw-border-opacity)); -} -.border-sky-50{ - --tw-border-opacity: 1; - border-color: rgb(240 249 255 / var(--tw-border-opacity)); -} -.border-sky-100{ - --tw-border-opacity: 1; - border-color: rgb(224 242 254 / var(--tw-border-opacity)); -} -.border-sky-200{ - --tw-border-opacity: 1; - border-color: rgb(186 230 253 / var(--tw-border-opacity)); -} -.border-sky-300{ - --tw-border-opacity: 1; - border-color: rgb(125 211 252 / var(--tw-border-opacity)); -} -.border-sky-400{ - --tw-border-opacity: 1; - border-color: rgb(56 189 248 / var(--tw-border-opacity)); -} -.border-sky-500{ - --tw-border-opacity: 1; - border-color: rgb(14 165 233 / var(--tw-border-opacity)); -} -.border-sky-600{ - --tw-border-opacity: 1; - border-color: rgb(2 132 199 / var(--tw-border-opacity)); -} -.border-sky-700{ - --tw-border-opacity: 1; - border-color: rgb(3 105 161 / var(--tw-border-opacity)); -} -.border-sky-800{ - --tw-border-opacity: 1; - border-color: rgb(7 89 133 / var(--tw-border-opacity)); -} -.border-sky-900{ - --tw-border-opacity: 1; - border-color: rgb(12 74 110 / var(--tw-border-opacity)); -} .border-blue-50{ --tw-border-opacity: 1; border-color: rgb(242 248 251 / var(--tw-border-opacity)); @@ -17666,46 +16854,6 @@ input[type="date"]::-webkit-inner-spin-button, --tw-border-opacity: 1; border-color: rgb(54 47 120 / var(--tw-border-opacity)); } -.border-violet-50{ - --tw-border-opacity: 1; - border-color: rgb(245 243 255 / var(--tw-border-opacity)); -} -.border-violet-100{ - --tw-border-opacity: 1; - border-color: rgb(237 233 254 / var(--tw-border-opacity)); -} -.border-violet-200{ - --tw-border-opacity: 1; - border-color: rgb(221 214 254 / var(--tw-border-opacity)); -} -.border-violet-300{ - --tw-border-opacity: 1; - border-color: rgb(196 181 253 / var(--tw-border-opacity)); -} -.border-violet-400{ - --tw-border-opacity: 1; - border-color: rgb(167 139 250 / var(--tw-border-opacity)); -} -.border-violet-500{ - --tw-border-opacity: 1; - border-color: rgb(139 92 246 / var(--tw-border-opacity)); -} -.border-violet-600{ - --tw-border-opacity: 1; - border-color: rgb(124 58 237 / var(--tw-border-opacity)); -} -.border-violet-700{ - --tw-border-opacity: 1; - border-color: rgb(109 40 217 / var(--tw-border-opacity)); -} -.border-violet-800{ - --tw-border-opacity: 1; - border-color: rgb(91 33 182 / var(--tw-border-opacity)); -} -.border-violet-900{ - --tw-border-opacity: 1; - border-color: rgb(76 29 149 / var(--tw-border-opacity)); -} .border-purple-50{ --tw-border-opacity: 1; border-color: rgb(247 247 249 / var(--tw-border-opacity)); @@ -17750,46 +16898,6 @@ input[type="date"]::-webkit-inner-spin-button, --tw-border-opacity: 1; border-color: rgb(85 88 139 / var(--tw-border-opacity)); } -.border-fuchsia-50{ - --tw-border-opacity: 1; - border-color: rgb(253 244 255 / var(--tw-border-opacity)); -} -.border-fuchsia-100{ - --tw-border-opacity: 1; - border-color: rgb(250 232 255 / var(--tw-border-opacity)); -} -.border-fuchsia-200{ - --tw-border-opacity: 1; - border-color: rgb(245 208 254 / var(--tw-border-opacity)); -} -.border-fuchsia-300{ - --tw-border-opacity: 1; - border-color: rgb(240 171 252 / var(--tw-border-opacity)); -} -.border-fuchsia-400{ - --tw-border-opacity: 1; - border-color: rgb(232 121 249 / var(--tw-border-opacity)); -} -.border-fuchsia-500{ - --tw-border-opacity: 1; - border-color: rgb(217 70 239 / var(--tw-border-opacity)); -} -.border-fuchsia-600{ - --tw-border-opacity: 1; - border-color: rgb(192 38 211 / var(--tw-border-opacity)); -} -.border-fuchsia-700{ - --tw-border-opacity: 1; - border-color: rgb(162 28 175 / var(--tw-border-opacity)); -} -.border-fuchsia-800{ - --tw-border-opacity: 1; - border-color: rgb(134 25 143 / var(--tw-border-opacity)); -} -.border-fuchsia-900{ - --tw-border-opacity: 1; - border-color: rgb(112 26 117 / var(--tw-border-opacity)); -} .border-pink-50{ --tw-border-opacity: 1; border-color: rgb(253 242 248 / var(--tw-border-opacity)); @@ -17830,6 +16938,30 @@ input[type="date"]::-webkit-inner-spin-button, --tw-border-opacity: 1; border-color: rgb(117 26 61 / var(--tw-border-opacity)); } +.border-lilac-100{ + --tw-border-opacity: 1; + border-color: rgb(245 247 250 / var(--tw-border-opacity)); +} +.border-lilac-300{ + --tw-border-opacity: 1; + border-color: rgb(237 240 252 / var(--tw-border-opacity)); +} +.border-lilac-900{ + --tw-border-opacity: 1; + border-color: rgb(220 226 249 / var(--tw-border-opacity)); +} +.border-lilac{ + --tw-border-opacity: 1; + border-color: rgb(248 249 254 / var(--tw-border-opacity)); +} +.border-golden-900{ + --tw-border-opacity: 1; + border-color: rgb(191 184 130 / var(--tw-border-opacity)); +} +.border-golden{ + --tw-border-opacity: 1; + border-color: rgb(209 201 137 / var(--tw-border-opacity)); +} .border-rose-50{ --tw-border-opacity: 1; border-color: rgb(255 241 242 / var(--tw-border-opacity)); @@ -17874,30 +17006,6 @@ input[type="date"]::-webkit-inner-spin-button, --tw-border-opacity: 1; border-color: rgb(244 63 94 / var(--tw-border-opacity)); } -.border-lilac-100{ - --tw-border-opacity: 1; - border-color: rgb(245 247 250 / var(--tw-border-opacity)); -} -.border-lilac-300{ - --tw-border-opacity: 1; - border-color: rgb(237 240 252 / var(--tw-border-opacity)); -} -.border-lilac-900{ - --tw-border-opacity: 1; - border-color: rgb(220 226 249 / var(--tw-border-opacity)); -} -.border-lilac{ - --tw-border-opacity: 1; - border-color: rgb(248 249 254 / var(--tw-border-opacity)); -} -.border-golden-900{ - --tw-border-opacity: 1; - border-color: rgb(191 184 130 / var(--tw-border-opacity)); -} -.border-golden{ - --tw-border-opacity: 1; - border-color: rgb(209 201 137 / var(--tw-border-opacity)); -} .border-status-success{ --tw-border-opacity: 1; border-color: rgb(241 246 238 / var(--tw-border-opacity)); @@ -17989,18 +17097,15 @@ input[type="date"]::-webkit-inner-spin-button, --tw-border-opacity: 1; border-color: rgb(147 95 7 / var(--tw-border-opacity)); } -.border-x-inherit{ - border-left-color: inherit; - border-right-color: inherit; -} -.border-x-current{ - border-left-color: currentColor; - border-right-color: currentColor; -} .border-x-transparent{ border-left-color: transparent; border-right-color: transparent; } +.border-x-white{ + --tw-border-opacity: 1; + border-left-color: rgb(255 255 255 / var(--tw-border-opacity)); + border-right-color: rgb(255 255 255 / var(--tw-border-opacity)); +} .border-x-black-50{ --tw-border-opacity: 1; border-left-color: rgb(246 246 246 / var(--tw-border-opacity)); @@ -18056,61 +17161,6 @@ input[type="date"]::-webkit-inner-spin-button, border-left-color: rgb(66 66 66 / var(--tw-border-opacity)); border-right-color: rgb(66 66 66 / var(--tw-border-opacity)); } -.border-x-white{ - --tw-border-opacity: 1; - border-left-color: rgb(255 255 255 / var(--tw-border-opacity)); - border-right-color: rgb(255 255 255 / var(--tw-border-opacity)); -} -.border-x-slate-50{ - --tw-border-opacity: 1; - border-left-color: rgb(248 250 252 / var(--tw-border-opacity)); - border-right-color: rgb(248 250 252 / var(--tw-border-opacity)); -} -.border-x-slate-100{ - --tw-border-opacity: 1; - border-left-color: rgb(241 245 249 / var(--tw-border-opacity)); - border-right-color: rgb(241 245 249 / var(--tw-border-opacity)); -} -.border-x-slate-200{ - --tw-border-opacity: 1; - border-left-color: rgb(226 232 240 / var(--tw-border-opacity)); - border-right-color: rgb(226 232 240 / var(--tw-border-opacity)); -} -.border-x-slate-300{ - --tw-border-opacity: 1; - border-left-color: rgb(203 213 225 / var(--tw-border-opacity)); - border-right-color: rgb(203 213 225 / var(--tw-border-opacity)); -} -.border-x-slate-400{ - --tw-border-opacity: 1; - border-left-color: rgb(148 163 184 / var(--tw-border-opacity)); - border-right-color: rgb(148 163 184 / var(--tw-border-opacity)); -} -.border-x-slate-500{ - --tw-border-opacity: 1; - border-left-color: rgb(100 116 139 / var(--tw-border-opacity)); - border-right-color: rgb(100 116 139 / var(--tw-border-opacity)); -} -.border-x-slate-600{ - --tw-border-opacity: 1; - border-left-color: rgb(71 85 105 / var(--tw-border-opacity)); - border-right-color: rgb(71 85 105 / var(--tw-border-opacity)); -} -.border-x-slate-700{ - --tw-border-opacity: 1; - border-left-color: rgb(51 65 85 / var(--tw-border-opacity)); - border-right-color: rgb(51 65 85 / var(--tw-border-opacity)); -} -.border-x-slate-800{ - --tw-border-opacity: 1; - border-left-color: rgb(30 41 59 / var(--tw-border-opacity)); - border-right-color: rgb(30 41 59 / var(--tw-border-opacity)); -} -.border-x-slate-900{ - --tw-border-opacity: 1; - border-left-color: rgb(15 23 42 / var(--tw-border-opacity)); - border-right-color: rgb(15 23 42 / var(--tw-border-opacity)); -} .border-x-gray-50{ --tw-border-opacity: 1; border-left-color: rgb(249 250 251 / var(--tw-border-opacity)); @@ -18161,156 +17211,6 @@ input[type="date"]::-webkit-inner-spin-button, border-left-color: rgb(17 24 39 / var(--tw-border-opacity)); border-right-color: rgb(17 24 39 / var(--tw-border-opacity)); } -.border-x-zinc-50{ - --tw-border-opacity: 1; - border-left-color: rgb(250 250 250 / var(--tw-border-opacity)); - border-right-color: rgb(250 250 250 / var(--tw-border-opacity)); -} -.border-x-zinc-100{ - --tw-border-opacity: 1; - border-left-color: rgb(244 244 245 / var(--tw-border-opacity)); - border-right-color: rgb(244 244 245 / var(--tw-border-opacity)); -} -.border-x-zinc-200{ - --tw-border-opacity: 1; - border-left-color: rgb(228 228 231 / var(--tw-border-opacity)); - border-right-color: rgb(228 228 231 / var(--tw-border-opacity)); -} -.border-x-zinc-300{ - --tw-border-opacity: 1; - border-left-color: rgb(212 212 216 / var(--tw-border-opacity)); - border-right-color: rgb(212 212 216 / var(--tw-border-opacity)); -} -.border-x-zinc-400{ - --tw-border-opacity: 1; - border-left-color: rgb(161 161 170 / var(--tw-border-opacity)); - border-right-color: rgb(161 161 170 / var(--tw-border-opacity)); -} -.border-x-zinc-500{ - --tw-border-opacity: 1; - border-left-color: rgb(113 113 122 / var(--tw-border-opacity)); - border-right-color: rgb(113 113 122 / var(--tw-border-opacity)); -} -.border-x-zinc-600{ - --tw-border-opacity: 1; - border-left-color: rgb(82 82 91 / var(--tw-border-opacity)); - border-right-color: rgb(82 82 91 / var(--tw-border-opacity)); -} -.border-x-zinc-700{ - --tw-border-opacity: 1; - border-left-color: rgb(63 63 70 / var(--tw-border-opacity)); - border-right-color: rgb(63 63 70 / var(--tw-border-opacity)); -} -.border-x-zinc-800{ - --tw-border-opacity: 1; - border-left-color: rgb(39 39 42 / var(--tw-border-opacity)); - border-right-color: rgb(39 39 42 / var(--tw-border-opacity)); -} -.border-x-zinc-900{ - --tw-border-opacity: 1; - border-left-color: rgb(24 24 27 / var(--tw-border-opacity)); - border-right-color: rgb(24 24 27 / var(--tw-border-opacity)); -} -.border-x-neutral-50{ - --tw-border-opacity: 1; - border-left-color: rgb(250 250 250 / var(--tw-border-opacity)); - border-right-color: rgb(250 250 250 / var(--tw-border-opacity)); -} -.border-x-neutral-100{ - --tw-border-opacity: 1; - border-left-color: rgb(245 245 245 / var(--tw-border-opacity)); - border-right-color: rgb(245 245 245 / var(--tw-border-opacity)); -} -.border-x-neutral-200{ - --tw-border-opacity: 1; - border-left-color: rgb(229 229 229 / var(--tw-border-opacity)); - border-right-color: rgb(229 229 229 / var(--tw-border-opacity)); -} -.border-x-neutral-300{ - --tw-border-opacity: 1; - border-left-color: rgb(212 212 212 / var(--tw-border-opacity)); - border-right-color: rgb(212 212 212 / var(--tw-border-opacity)); -} -.border-x-neutral-400{ - --tw-border-opacity: 1; - border-left-color: rgb(163 163 163 / var(--tw-border-opacity)); - border-right-color: rgb(163 163 163 / var(--tw-border-opacity)); -} -.border-x-neutral-500{ - --tw-border-opacity: 1; - border-left-color: rgb(115 115 115 / var(--tw-border-opacity)); - border-right-color: rgb(115 115 115 / var(--tw-border-opacity)); -} -.border-x-neutral-600{ - --tw-border-opacity: 1; - border-left-color: rgb(82 82 82 / var(--tw-border-opacity)); - border-right-color: rgb(82 82 82 / var(--tw-border-opacity)); -} -.border-x-neutral-700{ - --tw-border-opacity: 1; - border-left-color: rgb(64 64 64 / var(--tw-border-opacity)); - border-right-color: rgb(64 64 64 / var(--tw-border-opacity)); -} -.border-x-neutral-800{ - --tw-border-opacity: 1; - border-left-color: rgb(38 38 38 / var(--tw-border-opacity)); - border-right-color: rgb(38 38 38 / var(--tw-border-opacity)); -} -.border-x-neutral-900{ - --tw-border-opacity: 1; - border-left-color: rgb(23 23 23 / var(--tw-border-opacity)); - border-right-color: rgb(23 23 23 / var(--tw-border-opacity)); -} -.border-x-stone-50{ - --tw-border-opacity: 1; - border-left-color: rgb(250 250 249 / var(--tw-border-opacity)); - border-right-color: rgb(250 250 249 / var(--tw-border-opacity)); -} -.border-x-stone-100{ - --tw-border-opacity: 1; - border-left-color: rgb(245 245 244 / var(--tw-border-opacity)); - border-right-color: rgb(245 245 244 / var(--tw-border-opacity)); -} -.border-x-stone-200{ - --tw-border-opacity: 1; - border-left-color: rgb(231 229 228 / var(--tw-border-opacity)); - border-right-color: rgb(231 229 228 / var(--tw-border-opacity)); -} -.border-x-stone-300{ - --tw-border-opacity: 1; - border-left-color: rgb(214 211 209 / var(--tw-border-opacity)); - border-right-color: rgb(214 211 209 / var(--tw-border-opacity)); -} -.border-x-stone-400{ - --tw-border-opacity: 1; - border-left-color: rgb(168 162 158 / var(--tw-border-opacity)); - border-right-color: rgb(168 162 158 / var(--tw-border-opacity)); -} -.border-x-stone-500{ - --tw-border-opacity: 1; - border-left-color: rgb(120 113 108 / var(--tw-border-opacity)); - border-right-color: rgb(120 113 108 / var(--tw-border-opacity)); -} -.border-x-stone-600{ - --tw-border-opacity: 1; - border-left-color: rgb(87 83 78 / var(--tw-border-opacity)); - border-right-color: rgb(87 83 78 / var(--tw-border-opacity)); -} -.border-x-stone-700{ - --tw-border-opacity: 1; - border-left-color: rgb(68 64 60 / var(--tw-border-opacity)); - border-right-color: rgb(68 64 60 / var(--tw-border-opacity)); -} -.border-x-stone-800{ - --tw-border-opacity: 1; - border-left-color: rgb(41 37 36 / var(--tw-border-opacity)); - border-right-color: rgb(41 37 36 / var(--tw-border-opacity)); -} -.border-x-stone-900{ - --tw-border-opacity: 1; - border-left-color: rgb(28 25 23 / var(--tw-border-opacity)); - border-right-color: rgb(28 25 23 / var(--tw-border-opacity)); -} .border-x-red-50{ --tw-border-opacity: 1; border-left-color: rgb(252 242 242 / var(--tw-border-opacity)); @@ -18421,56 +17321,6 @@ input[type="date"]::-webkit-inner-spin-button, border-left-color: rgb(245 158 11 / var(--tw-border-opacity)); border-right-color: rgb(245 158 11 / var(--tw-border-opacity)); } -.border-x-amber-50{ - --tw-border-opacity: 1; - border-left-color: rgb(255 251 235 / var(--tw-border-opacity)); - border-right-color: rgb(255 251 235 / var(--tw-border-opacity)); -} -.border-x-amber-100{ - --tw-border-opacity: 1; - border-left-color: rgb(254 243 199 / var(--tw-border-opacity)); - border-right-color: rgb(254 243 199 / var(--tw-border-opacity)); -} -.border-x-amber-200{ - --tw-border-opacity: 1; - border-left-color: rgb(253 230 138 / var(--tw-border-opacity)); - border-right-color: rgb(253 230 138 / var(--tw-border-opacity)); -} -.border-x-amber-300{ - --tw-border-opacity: 1; - border-left-color: rgb(252 211 77 / var(--tw-border-opacity)); - border-right-color: rgb(252 211 77 / var(--tw-border-opacity)); -} -.border-x-amber-400{ - --tw-border-opacity: 1; - border-left-color: rgb(251 191 36 / var(--tw-border-opacity)); - border-right-color: rgb(251 191 36 / var(--tw-border-opacity)); -} -.border-x-amber-500{ - --tw-border-opacity: 1; - border-left-color: rgb(245 158 11 / var(--tw-border-opacity)); - border-right-color: rgb(245 158 11 / var(--tw-border-opacity)); -} -.border-x-amber-600{ - --tw-border-opacity: 1; - border-left-color: rgb(217 119 6 / var(--tw-border-opacity)); - border-right-color: rgb(217 119 6 / var(--tw-border-opacity)); -} -.border-x-amber-700{ - --tw-border-opacity: 1; - border-left-color: rgb(180 83 9 / var(--tw-border-opacity)); - border-right-color: rgb(180 83 9 / var(--tw-border-opacity)); -} -.border-x-amber-800{ - --tw-border-opacity: 1; - border-left-color: rgb(146 64 14 / var(--tw-border-opacity)); - border-right-color: rgb(146 64 14 / var(--tw-border-opacity)); -} -.border-x-amber-900{ - --tw-border-opacity: 1; - border-left-color: rgb(120 53 15 / var(--tw-border-opacity)); - border-right-color: rgb(120 53 15 / var(--tw-border-opacity)); -} .border-x-yellow-50{ --tw-border-opacity: 1; border-left-color: rgb(253 253 234 / var(--tw-border-opacity)); @@ -18521,56 +17371,6 @@ input[type="date"]::-webkit-inner-spin-button, border-left-color: rgb(99 49 18 / var(--tw-border-opacity)); border-right-color: rgb(99 49 18 / var(--tw-border-opacity)); } -.border-x-lime-50{ - --tw-border-opacity: 1; - border-left-color: rgb(247 254 231 / var(--tw-border-opacity)); - border-right-color: rgb(247 254 231 / var(--tw-border-opacity)); -} -.border-x-lime-100{ - --tw-border-opacity: 1; - border-left-color: rgb(236 252 203 / var(--tw-border-opacity)); - border-right-color: rgb(236 252 203 / var(--tw-border-opacity)); -} -.border-x-lime-200{ - --tw-border-opacity: 1; - border-left-color: rgb(217 249 157 / var(--tw-border-opacity)); - border-right-color: rgb(217 249 157 / var(--tw-border-opacity)); -} -.border-x-lime-300{ - --tw-border-opacity: 1; - border-left-color: rgb(190 242 100 / var(--tw-border-opacity)); - border-right-color: rgb(190 242 100 / var(--tw-border-opacity)); -} -.border-x-lime-400{ - --tw-border-opacity: 1; - border-left-color: rgb(163 230 53 / var(--tw-border-opacity)); - border-right-color: rgb(163 230 53 / var(--tw-border-opacity)); -} -.border-x-lime-500{ - --tw-border-opacity: 1; - border-left-color: rgb(132 204 22 / var(--tw-border-opacity)); - border-right-color: rgb(132 204 22 / var(--tw-border-opacity)); -} -.border-x-lime-600{ - --tw-border-opacity: 1; - border-left-color: rgb(101 163 13 / var(--tw-border-opacity)); - border-right-color: rgb(101 163 13 / var(--tw-border-opacity)); -} -.border-x-lime-700{ - --tw-border-opacity: 1; - border-left-color: rgb(77 124 15 / var(--tw-border-opacity)); - border-right-color: rgb(77 124 15 / var(--tw-border-opacity)); -} -.border-x-lime-800{ - --tw-border-opacity: 1; - border-left-color: rgb(63 98 18 / var(--tw-border-opacity)); - border-right-color: rgb(63 98 18 / var(--tw-border-opacity)); -} -.border-x-lime-900{ - --tw-border-opacity: 1; - border-left-color: rgb(54 83 20 / var(--tw-border-opacity)); - border-right-color: rgb(54 83 20 / var(--tw-border-opacity)); -} .border-x-green-50{ --tw-border-opacity: 1; border-left-color: rgb(248 250 246 / var(--tw-border-opacity)); @@ -18626,56 +17426,6 @@ input[type="date"]::-webkit-inner-spin-button, border-left-color: rgb(110 161 82 / var(--tw-border-opacity)); border-right-color: rgb(110 161 82 / var(--tw-border-opacity)); } -.border-x-emerald-50{ - --tw-border-opacity: 1; - border-left-color: rgb(236 253 245 / var(--tw-border-opacity)); - border-right-color: rgb(236 253 245 / var(--tw-border-opacity)); -} -.border-x-emerald-100{ - --tw-border-opacity: 1; - border-left-color: rgb(209 250 229 / var(--tw-border-opacity)); - border-right-color: rgb(209 250 229 / var(--tw-border-opacity)); -} -.border-x-emerald-200{ - --tw-border-opacity: 1; - border-left-color: rgb(167 243 208 / var(--tw-border-opacity)); - border-right-color: rgb(167 243 208 / var(--tw-border-opacity)); -} -.border-x-emerald-300{ - --tw-border-opacity: 1; - border-left-color: rgb(110 231 183 / var(--tw-border-opacity)); - border-right-color: rgb(110 231 183 / var(--tw-border-opacity)); -} -.border-x-emerald-400{ - --tw-border-opacity: 1; - border-left-color: rgb(52 211 153 / var(--tw-border-opacity)); - border-right-color: rgb(52 211 153 / var(--tw-border-opacity)); -} -.border-x-emerald-500{ - --tw-border-opacity: 1; - border-left-color: rgb(16 185 129 / var(--tw-border-opacity)); - border-right-color: rgb(16 185 129 / var(--tw-border-opacity)); -} -.border-x-emerald-600{ - --tw-border-opacity: 1; - border-left-color: rgb(5 150 105 / var(--tw-border-opacity)); - border-right-color: rgb(5 150 105 / var(--tw-border-opacity)); -} -.border-x-emerald-700{ - --tw-border-opacity: 1; - border-left-color: rgb(4 120 87 / var(--tw-border-opacity)); - border-right-color: rgb(4 120 87 / var(--tw-border-opacity)); -} -.border-x-emerald-800{ - --tw-border-opacity: 1; - border-left-color: rgb(6 95 70 / var(--tw-border-opacity)); - border-right-color: rgb(6 95 70 / var(--tw-border-opacity)); -} -.border-x-emerald-900{ - --tw-border-opacity: 1; - border-left-color: rgb(6 78 59 / var(--tw-border-opacity)); - border-right-color: rgb(6 78 59 / var(--tw-border-opacity)); -} .border-x-teal-50{ --tw-border-opacity: 1; border-left-color: rgb(237 250 250 / var(--tw-border-opacity)); @@ -18726,106 +17476,6 @@ input[type="date"]::-webkit-inner-spin-button, border-left-color: rgb(1 68 81 / var(--tw-border-opacity)); border-right-color: rgb(1 68 81 / var(--tw-border-opacity)); } -.border-x-cyan-50{ - --tw-border-opacity: 1; - border-left-color: rgb(236 254 255 / var(--tw-border-opacity)); - border-right-color: rgb(236 254 255 / var(--tw-border-opacity)); -} -.border-x-cyan-100{ - --tw-border-opacity: 1; - border-left-color: rgb(207 250 254 / var(--tw-border-opacity)); - border-right-color: rgb(207 250 254 / var(--tw-border-opacity)); -} -.border-x-cyan-200{ - --tw-border-opacity: 1; - border-left-color: rgb(165 243 252 / var(--tw-border-opacity)); - border-right-color: rgb(165 243 252 / var(--tw-border-opacity)); -} -.border-x-cyan-300{ - --tw-border-opacity: 1; - border-left-color: rgb(103 232 249 / var(--tw-border-opacity)); - border-right-color: rgb(103 232 249 / var(--tw-border-opacity)); -} -.border-x-cyan-400{ - --tw-border-opacity: 1; - border-left-color: rgb(34 211 238 / var(--tw-border-opacity)); - border-right-color: rgb(34 211 238 / var(--tw-border-opacity)); -} -.border-x-cyan-500{ - --tw-border-opacity: 1; - border-left-color: rgb(6 182 212 / var(--tw-border-opacity)); - border-right-color: rgb(6 182 212 / var(--tw-border-opacity)); -} -.border-x-cyan-600{ - --tw-border-opacity: 1; - border-left-color: rgb(8 145 178 / var(--tw-border-opacity)); - border-right-color: rgb(8 145 178 / var(--tw-border-opacity)); -} -.border-x-cyan-700{ - --tw-border-opacity: 1; - border-left-color: rgb(14 116 144 / var(--tw-border-opacity)); - border-right-color: rgb(14 116 144 / var(--tw-border-opacity)); -} -.border-x-cyan-800{ - --tw-border-opacity: 1; - border-left-color: rgb(21 94 117 / var(--tw-border-opacity)); - border-right-color: rgb(21 94 117 / var(--tw-border-opacity)); -} -.border-x-cyan-900{ - --tw-border-opacity: 1; - border-left-color: rgb(22 78 99 / var(--tw-border-opacity)); - border-right-color: rgb(22 78 99 / var(--tw-border-opacity)); -} -.border-x-sky-50{ - --tw-border-opacity: 1; - border-left-color: rgb(240 249 255 / var(--tw-border-opacity)); - border-right-color: rgb(240 249 255 / var(--tw-border-opacity)); -} -.border-x-sky-100{ - --tw-border-opacity: 1; - border-left-color: rgb(224 242 254 / var(--tw-border-opacity)); - border-right-color: rgb(224 242 254 / var(--tw-border-opacity)); -} -.border-x-sky-200{ - --tw-border-opacity: 1; - border-left-color: rgb(186 230 253 / var(--tw-border-opacity)); - border-right-color: rgb(186 230 253 / var(--tw-border-opacity)); -} -.border-x-sky-300{ - --tw-border-opacity: 1; - border-left-color: rgb(125 211 252 / var(--tw-border-opacity)); - border-right-color: rgb(125 211 252 / var(--tw-border-opacity)); -} -.border-x-sky-400{ - --tw-border-opacity: 1; - border-left-color: rgb(56 189 248 / var(--tw-border-opacity)); - border-right-color: rgb(56 189 248 / var(--tw-border-opacity)); -} -.border-x-sky-500{ - --tw-border-opacity: 1; - border-left-color: rgb(14 165 233 / var(--tw-border-opacity)); - border-right-color: rgb(14 165 233 / var(--tw-border-opacity)); -} -.border-x-sky-600{ - --tw-border-opacity: 1; - border-left-color: rgb(2 132 199 / var(--tw-border-opacity)); - border-right-color: rgb(2 132 199 / var(--tw-border-opacity)); -} -.border-x-sky-700{ - --tw-border-opacity: 1; - border-left-color: rgb(3 105 161 / var(--tw-border-opacity)); - border-right-color: rgb(3 105 161 / var(--tw-border-opacity)); -} -.border-x-sky-800{ - --tw-border-opacity: 1; - border-left-color: rgb(7 89 133 / var(--tw-border-opacity)); - border-right-color: rgb(7 89 133 / var(--tw-border-opacity)); -} -.border-x-sky-900{ - --tw-border-opacity: 1; - border-left-color: rgb(12 74 110 / var(--tw-border-opacity)); - border-right-color: rgb(12 74 110 / var(--tw-border-opacity)); -} .border-x-blue-50{ --tw-border-opacity: 1; border-left-color: rgb(242 248 251 / var(--tw-border-opacity)); @@ -18931,56 +17581,6 @@ input[type="date"]::-webkit-inner-spin-button, border-left-color: rgb(54 47 120 / var(--tw-border-opacity)); border-right-color: rgb(54 47 120 / var(--tw-border-opacity)); } -.border-x-violet-50{ - --tw-border-opacity: 1; - border-left-color: rgb(245 243 255 / var(--tw-border-opacity)); - border-right-color: rgb(245 243 255 / var(--tw-border-opacity)); -} -.border-x-violet-100{ - --tw-border-opacity: 1; - border-left-color: rgb(237 233 254 / var(--tw-border-opacity)); - border-right-color: rgb(237 233 254 / var(--tw-border-opacity)); -} -.border-x-violet-200{ - --tw-border-opacity: 1; - border-left-color: rgb(221 214 254 / var(--tw-border-opacity)); - border-right-color: rgb(221 214 254 / var(--tw-border-opacity)); -} -.border-x-violet-300{ - --tw-border-opacity: 1; - border-left-color: rgb(196 181 253 / var(--tw-border-opacity)); - border-right-color: rgb(196 181 253 / var(--tw-border-opacity)); -} -.border-x-violet-400{ - --tw-border-opacity: 1; - border-left-color: rgb(167 139 250 / var(--tw-border-opacity)); - border-right-color: rgb(167 139 250 / var(--tw-border-opacity)); -} -.border-x-violet-500{ - --tw-border-opacity: 1; - border-left-color: rgb(139 92 246 / var(--tw-border-opacity)); - border-right-color: rgb(139 92 246 / var(--tw-border-opacity)); -} -.border-x-violet-600{ - --tw-border-opacity: 1; - border-left-color: rgb(124 58 237 / var(--tw-border-opacity)); - border-right-color: rgb(124 58 237 / var(--tw-border-opacity)); -} -.border-x-violet-700{ - --tw-border-opacity: 1; - border-left-color: rgb(109 40 217 / var(--tw-border-opacity)); - border-right-color: rgb(109 40 217 / var(--tw-border-opacity)); -} -.border-x-violet-800{ - --tw-border-opacity: 1; - border-left-color: rgb(91 33 182 / var(--tw-border-opacity)); - border-right-color: rgb(91 33 182 / var(--tw-border-opacity)); -} -.border-x-violet-900{ - --tw-border-opacity: 1; - border-left-color: rgb(76 29 149 / var(--tw-border-opacity)); - border-right-color: rgb(76 29 149 / var(--tw-border-opacity)); -} .border-x-purple-50{ --tw-border-opacity: 1; border-left-color: rgb(247 247 249 / var(--tw-border-opacity)); @@ -19036,56 +17636,6 @@ input[type="date"]::-webkit-inner-spin-button, border-left-color: rgb(85 88 139 / var(--tw-border-opacity)); border-right-color: rgb(85 88 139 / var(--tw-border-opacity)); } -.border-x-fuchsia-50{ - --tw-border-opacity: 1; - border-left-color: rgb(253 244 255 / var(--tw-border-opacity)); - border-right-color: rgb(253 244 255 / var(--tw-border-opacity)); -} -.border-x-fuchsia-100{ - --tw-border-opacity: 1; - border-left-color: rgb(250 232 255 / var(--tw-border-opacity)); - border-right-color: rgb(250 232 255 / var(--tw-border-opacity)); -} -.border-x-fuchsia-200{ - --tw-border-opacity: 1; - border-left-color: rgb(245 208 254 / var(--tw-border-opacity)); - border-right-color: rgb(245 208 254 / var(--tw-border-opacity)); -} -.border-x-fuchsia-300{ - --tw-border-opacity: 1; - border-left-color: rgb(240 171 252 / var(--tw-border-opacity)); - border-right-color: rgb(240 171 252 / var(--tw-border-opacity)); -} -.border-x-fuchsia-400{ - --tw-border-opacity: 1; - border-left-color: rgb(232 121 249 / var(--tw-border-opacity)); - border-right-color: rgb(232 121 249 / var(--tw-border-opacity)); -} -.border-x-fuchsia-500{ - --tw-border-opacity: 1; - border-left-color: rgb(217 70 239 / var(--tw-border-opacity)); - border-right-color: rgb(217 70 239 / var(--tw-border-opacity)); -} -.border-x-fuchsia-600{ - --tw-border-opacity: 1; - border-left-color: rgb(192 38 211 / var(--tw-border-opacity)); - border-right-color: rgb(192 38 211 / var(--tw-border-opacity)); -} -.border-x-fuchsia-700{ - --tw-border-opacity: 1; - border-left-color: rgb(162 28 175 / var(--tw-border-opacity)); - border-right-color: rgb(162 28 175 / var(--tw-border-opacity)); -} -.border-x-fuchsia-800{ - --tw-border-opacity: 1; - border-left-color: rgb(134 25 143 / var(--tw-border-opacity)); - border-right-color: rgb(134 25 143 / var(--tw-border-opacity)); -} -.border-x-fuchsia-900{ - --tw-border-opacity: 1; - border-left-color: rgb(112 26 117 / var(--tw-border-opacity)); - border-right-color: rgb(112 26 117 / var(--tw-border-opacity)); -} .border-x-pink-50{ --tw-border-opacity: 1; border-left-color: rgb(253 242 248 / var(--tw-border-opacity)); @@ -19136,6 +17686,36 @@ input[type="date"]::-webkit-inner-spin-button, border-left-color: rgb(117 26 61 / var(--tw-border-opacity)); border-right-color: rgb(117 26 61 / var(--tw-border-opacity)); } +.border-x-lilac-100{ + --tw-border-opacity: 1; + border-left-color: rgb(245 247 250 / var(--tw-border-opacity)); + border-right-color: rgb(245 247 250 / var(--tw-border-opacity)); +} +.border-x-lilac-300{ + --tw-border-opacity: 1; + border-left-color: rgb(237 240 252 / var(--tw-border-opacity)); + border-right-color: rgb(237 240 252 / var(--tw-border-opacity)); +} +.border-x-lilac-900{ + --tw-border-opacity: 1; + border-left-color: rgb(220 226 249 / var(--tw-border-opacity)); + border-right-color: rgb(220 226 249 / var(--tw-border-opacity)); +} +.border-x-lilac{ + --tw-border-opacity: 1; + border-left-color: rgb(248 249 254 / var(--tw-border-opacity)); + border-right-color: rgb(248 249 254 / var(--tw-border-opacity)); +} +.border-x-golden-900{ + --tw-border-opacity: 1; + border-left-color: rgb(191 184 130 / var(--tw-border-opacity)); + border-right-color: rgb(191 184 130 / var(--tw-border-opacity)); +} +.border-x-golden{ + --tw-border-opacity: 1; + border-left-color: rgb(209 201 137 / var(--tw-border-opacity)); + border-right-color: rgb(209 201 137 / var(--tw-border-opacity)); +} .border-x-rose-50{ --tw-border-opacity: 1; border-left-color: rgb(255 241 242 / var(--tw-border-opacity)); @@ -19191,36 +17771,6 @@ input[type="date"]::-webkit-inner-spin-button, border-left-color: rgb(244 63 94 / var(--tw-border-opacity)); border-right-color: rgb(244 63 94 / var(--tw-border-opacity)); } -.border-x-lilac-100{ - --tw-border-opacity: 1; - border-left-color: rgb(245 247 250 / var(--tw-border-opacity)); - border-right-color: rgb(245 247 250 / var(--tw-border-opacity)); -} -.border-x-lilac-300{ - --tw-border-opacity: 1; - border-left-color: rgb(237 240 252 / var(--tw-border-opacity)); - border-right-color: rgb(237 240 252 / var(--tw-border-opacity)); -} -.border-x-lilac-900{ - --tw-border-opacity: 1; - border-left-color: rgb(220 226 249 / var(--tw-border-opacity)); - border-right-color: rgb(220 226 249 / var(--tw-border-opacity)); -} -.border-x-lilac{ - --tw-border-opacity: 1; - border-left-color: rgb(248 249 254 / var(--tw-border-opacity)); - border-right-color: rgb(248 249 254 / var(--tw-border-opacity)); -} -.border-x-golden-900{ - --tw-border-opacity: 1; - border-left-color: rgb(191 184 130 / var(--tw-border-opacity)); - border-right-color: rgb(191 184 130 / var(--tw-border-opacity)); -} -.border-x-golden{ - --tw-border-opacity: 1; - border-left-color: rgb(209 201 137 / var(--tw-border-opacity)); - border-right-color: rgb(209 201 137 / var(--tw-border-opacity)); -} .border-x-status-success{ --tw-border-opacity: 1; border-left-color: rgb(241 246 238 / var(--tw-border-opacity)); @@ -19335,18 +17885,15 @@ input[type="date"]::-webkit-inner-spin-button, border-left-color: rgb(147 95 7 / var(--tw-border-opacity)); border-right-color: rgb(147 95 7 / var(--tw-border-opacity)); } -.border-y-inherit{ - border-top-color: inherit; - border-bottom-color: inherit; -} -.border-y-current{ - border-top-color: currentColor; - border-bottom-color: currentColor; -} .border-y-transparent{ border-top-color: transparent; border-bottom-color: transparent; } +.border-y-white{ + --tw-border-opacity: 1; + border-top-color: rgb(255 255 255 / var(--tw-border-opacity)); + border-bottom-color: rgb(255 255 255 / var(--tw-border-opacity)); +} .border-y-black-50{ --tw-border-opacity: 1; border-top-color: rgb(246 246 246 / var(--tw-border-opacity)); @@ -19402,61 +17949,6 @@ input[type="date"]::-webkit-inner-spin-button, border-top-color: rgb(66 66 66 / var(--tw-border-opacity)); border-bottom-color: rgb(66 66 66 / var(--tw-border-opacity)); } -.border-y-white{ - --tw-border-opacity: 1; - border-top-color: rgb(255 255 255 / var(--tw-border-opacity)); - border-bottom-color: rgb(255 255 255 / var(--tw-border-opacity)); -} -.border-y-slate-50{ - --tw-border-opacity: 1; - border-top-color: rgb(248 250 252 / var(--tw-border-opacity)); - border-bottom-color: rgb(248 250 252 / var(--tw-border-opacity)); -} -.border-y-slate-100{ - --tw-border-opacity: 1; - border-top-color: rgb(241 245 249 / var(--tw-border-opacity)); - border-bottom-color: rgb(241 245 249 / var(--tw-border-opacity)); -} -.border-y-slate-200{ - --tw-border-opacity: 1; - border-top-color: rgb(226 232 240 / var(--tw-border-opacity)); - border-bottom-color: rgb(226 232 240 / var(--tw-border-opacity)); -} -.border-y-slate-300{ - --tw-border-opacity: 1; - border-top-color: rgb(203 213 225 / var(--tw-border-opacity)); - border-bottom-color: rgb(203 213 225 / var(--tw-border-opacity)); -} -.border-y-slate-400{ - --tw-border-opacity: 1; - border-top-color: rgb(148 163 184 / var(--tw-border-opacity)); - border-bottom-color: rgb(148 163 184 / var(--tw-border-opacity)); -} -.border-y-slate-500{ - --tw-border-opacity: 1; - border-top-color: rgb(100 116 139 / var(--tw-border-opacity)); - border-bottom-color: rgb(100 116 139 / var(--tw-border-opacity)); -} -.border-y-slate-600{ - --tw-border-opacity: 1; - border-top-color: rgb(71 85 105 / var(--tw-border-opacity)); - border-bottom-color: rgb(71 85 105 / var(--tw-border-opacity)); -} -.border-y-slate-700{ - --tw-border-opacity: 1; - border-top-color: rgb(51 65 85 / var(--tw-border-opacity)); - border-bottom-color: rgb(51 65 85 / var(--tw-border-opacity)); -} -.border-y-slate-800{ - --tw-border-opacity: 1; - border-top-color: rgb(30 41 59 / var(--tw-border-opacity)); - border-bottom-color: rgb(30 41 59 / var(--tw-border-opacity)); -} -.border-y-slate-900{ - --tw-border-opacity: 1; - border-top-color: rgb(15 23 42 / var(--tw-border-opacity)); - border-bottom-color: rgb(15 23 42 / var(--tw-border-opacity)); -} .border-y-gray-50{ --tw-border-opacity: 1; border-top-color: rgb(249 250 251 / var(--tw-border-opacity)); @@ -19507,156 +17999,6 @@ input[type="date"]::-webkit-inner-spin-button, border-top-color: rgb(17 24 39 / var(--tw-border-opacity)); border-bottom-color: rgb(17 24 39 / var(--tw-border-opacity)); } -.border-y-zinc-50{ - --tw-border-opacity: 1; - border-top-color: rgb(250 250 250 / var(--tw-border-opacity)); - border-bottom-color: rgb(250 250 250 / var(--tw-border-opacity)); -} -.border-y-zinc-100{ - --tw-border-opacity: 1; - border-top-color: rgb(244 244 245 / var(--tw-border-opacity)); - border-bottom-color: rgb(244 244 245 / var(--tw-border-opacity)); -} -.border-y-zinc-200{ - --tw-border-opacity: 1; - border-top-color: rgb(228 228 231 / var(--tw-border-opacity)); - border-bottom-color: rgb(228 228 231 / var(--tw-border-opacity)); -} -.border-y-zinc-300{ - --tw-border-opacity: 1; - border-top-color: rgb(212 212 216 / var(--tw-border-opacity)); - border-bottom-color: rgb(212 212 216 / var(--tw-border-opacity)); -} -.border-y-zinc-400{ - --tw-border-opacity: 1; - border-top-color: rgb(161 161 170 / var(--tw-border-opacity)); - border-bottom-color: rgb(161 161 170 / var(--tw-border-opacity)); -} -.border-y-zinc-500{ - --tw-border-opacity: 1; - border-top-color: rgb(113 113 122 / var(--tw-border-opacity)); - border-bottom-color: rgb(113 113 122 / var(--tw-border-opacity)); -} -.border-y-zinc-600{ - --tw-border-opacity: 1; - border-top-color: rgb(82 82 91 / var(--tw-border-opacity)); - border-bottom-color: rgb(82 82 91 / var(--tw-border-opacity)); -} -.border-y-zinc-700{ - --tw-border-opacity: 1; - border-top-color: rgb(63 63 70 / var(--tw-border-opacity)); - border-bottom-color: rgb(63 63 70 / var(--tw-border-opacity)); -} -.border-y-zinc-800{ - --tw-border-opacity: 1; - border-top-color: rgb(39 39 42 / var(--tw-border-opacity)); - border-bottom-color: rgb(39 39 42 / var(--tw-border-opacity)); -} -.border-y-zinc-900{ - --tw-border-opacity: 1; - border-top-color: rgb(24 24 27 / var(--tw-border-opacity)); - border-bottom-color: rgb(24 24 27 / var(--tw-border-opacity)); -} -.border-y-neutral-50{ - --tw-border-opacity: 1; - border-top-color: rgb(250 250 250 / var(--tw-border-opacity)); - border-bottom-color: rgb(250 250 250 / var(--tw-border-opacity)); -} -.border-y-neutral-100{ - --tw-border-opacity: 1; - border-top-color: rgb(245 245 245 / var(--tw-border-opacity)); - border-bottom-color: rgb(245 245 245 / var(--tw-border-opacity)); -} -.border-y-neutral-200{ - --tw-border-opacity: 1; - border-top-color: rgb(229 229 229 / var(--tw-border-opacity)); - border-bottom-color: rgb(229 229 229 / var(--tw-border-opacity)); -} -.border-y-neutral-300{ - --tw-border-opacity: 1; - border-top-color: rgb(212 212 212 / var(--tw-border-opacity)); - border-bottom-color: rgb(212 212 212 / var(--tw-border-opacity)); -} -.border-y-neutral-400{ - --tw-border-opacity: 1; - border-top-color: rgb(163 163 163 / var(--tw-border-opacity)); - border-bottom-color: rgb(163 163 163 / var(--tw-border-opacity)); -} -.border-y-neutral-500{ - --tw-border-opacity: 1; - border-top-color: rgb(115 115 115 / var(--tw-border-opacity)); - border-bottom-color: rgb(115 115 115 / var(--tw-border-opacity)); -} -.border-y-neutral-600{ - --tw-border-opacity: 1; - border-top-color: rgb(82 82 82 / var(--tw-border-opacity)); - border-bottom-color: rgb(82 82 82 / var(--tw-border-opacity)); -} -.border-y-neutral-700{ - --tw-border-opacity: 1; - border-top-color: rgb(64 64 64 / var(--tw-border-opacity)); - border-bottom-color: rgb(64 64 64 / var(--tw-border-opacity)); -} -.border-y-neutral-800{ - --tw-border-opacity: 1; - border-top-color: rgb(38 38 38 / var(--tw-border-opacity)); - border-bottom-color: rgb(38 38 38 / var(--tw-border-opacity)); -} -.border-y-neutral-900{ - --tw-border-opacity: 1; - border-top-color: rgb(23 23 23 / var(--tw-border-opacity)); - border-bottom-color: rgb(23 23 23 / var(--tw-border-opacity)); -} -.border-y-stone-50{ - --tw-border-opacity: 1; - border-top-color: rgb(250 250 249 / var(--tw-border-opacity)); - border-bottom-color: rgb(250 250 249 / var(--tw-border-opacity)); -} -.border-y-stone-100{ - --tw-border-opacity: 1; - border-top-color: rgb(245 245 244 / var(--tw-border-opacity)); - border-bottom-color: rgb(245 245 244 / var(--tw-border-opacity)); -} -.border-y-stone-200{ - --tw-border-opacity: 1; - border-top-color: rgb(231 229 228 / var(--tw-border-opacity)); - border-bottom-color: rgb(231 229 228 / var(--tw-border-opacity)); -} -.border-y-stone-300{ - --tw-border-opacity: 1; - border-top-color: rgb(214 211 209 / var(--tw-border-opacity)); - border-bottom-color: rgb(214 211 209 / var(--tw-border-opacity)); -} -.border-y-stone-400{ - --tw-border-opacity: 1; - border-top-color: rgb(168 162 158 / var(--tw-border-opacity)); - border-bottom-color: rgb(168 162 158 / var(--tw-border-opacity)); -} -.border-y-stone-500{ - --tw-border-opacity: 1; - border-top-color: rgb(120 113 108 / var(--tw-border-opacity)); - border-bottom-color: rgb(120 113 108 / var(--tw-border-opacity)); -} -.border-y-stone-600{ - --tw-border-opacity: 1; - border-top-color: rgb(87 83 78 / var(--tw-border-opacity)); - border-bottom-color: rgb(87 83 78 / var(--tw-border-opacity)); -} -.border-y-stone-700{ - --tw-border-opacity: 1; - border-top-color: rgb(68 64 60 / var(--tw-border-opacity)); - border-bottom-color: rgb(68 64 60 / var(--tw-border-opacity)); -} -.border-y-stone-800{ - --tw-border-opacity: 1; - border-top-color: rgb(41 37 36 / var(--tw-border-opacity)); - border-bottom-color: rgb(41 37 36 / var(--tw-border-opacity)); -} -.border-y-stone-900{ - --tw-border-opacity: 1; - border-top-color: rgb(28 25 23 / var(--tw-border-opacity)); - border-bottom-color: rgb(28 25 23 / var(--tw-border-opacity)); -} .border-y-red-50{ --tw-border-opacity: 1; border-top-color: rgb(252 242 242 / var(--tw-border-opacity)); @@ -19767,56 +18109,6 @@ input[type="date"]::-webkit-inner-spin-button, border-top-color: rgb(245 158 11 / var(--tw-border-opacity)); border-bottom-color: rgb(245 158 11 / var(--tw-border-opacity)); } -.border-y-amber-50{ - --tw-border-opacity: 1; - border-top-color: rgb(255 251 235 / var(--tw-border-opacity)); - border-bottom-color: rgb(255 251 235 / var(--tw-border-opacity)); -} -.border-y-amber-100{ - --tw-border-opacity: 1; - border-top-color: rgb(254 243 199 / var(--tw-border-opacity)); - border-bottom-color: rgb(254 243 199 / var(--tw-border-opacity)); -} -.border-y-amber-200{ - --tw-border-opacity: 1; - border-top-color: rgb(253 230 138 / var(--tw-border-opacity)); - border-bottom-color: rgb(253 230 138 / var(--tw-border-opacity)); -} -.border-y-amber-300{ - --tw-border-opacity: 1; - border-top-color: rgb(252 211 77 / var(--tw-border-opacity)); - border-bottom-color: rgb(252 211 77 / var(--tw-border-opacity)); -} -.border-y-amber-400{ - --tw-border-opacity: 1; - border-top-color: rgb(251 191 36 / var(--tw-border-opacity)); - border-bottom-color: rgb(251 191 36 / var(--tw-border-opacity)); -} -.border-y-amber-500{ - --tw-border-opacity: 1; - border-top-color: rgb(245 158 11 / var(--tw-border-opacity)); - border-bottom-color: rgb(245 158 11 / var(--tw-border-opacity)); -} -.border-y-amber-600{ - --tw-border-opacity: 1; - border-top-color: rgb(217 119 6 / var(--tw-border-opacity)); - border-bottom-color: rgb(217 119 6 / var(--tw-border-opacity)); -} -.border-y-amber-700{ - --tw-border-opacity: 1; - border-top-color: rgb(180 83 9 / var(--tw-border-opacity)); - border-bottom-color: rgb(180 83 9 / var(--tw-border-opacity)); -} -.border-y-amber-800{ - --tw-border-opacity: 1; - border-top-color: rgb(146 64 14 / var(--tw-border-opacity)); - border-bottom-color: rgb(146 64 14 / var(--tw-border-opacity)); -} -.border-y-amber-900{ - --tw-border-opacity: 1; - border-top-color: rgb(120 53 15 / var(--tw-border-opacity)); - border-bottom-color: rgb(120 53 15 / var(--tw-border-opacity)); -} .border-y-yellow-50{ --tw-border-opacity: 1; border-top-color: rgb(253 253 234 / var(--tw-border-opacity)); @@ -19867,56 +18159,6 @@ input[type="date"]::-webkit-inner-spin-button, border-top-color: rgb(99 49 18 / var(--tw-border-opacity)); border-bottom-color: rgb(99 49 18 / var(--tw-border-opacity)); } -.border-y-lime-50{ - --tw-border-opacity: 1; - border-top-color: rgb(247 254 231 / var(--tw-border-opacity)); - border-bottom-color: rgb(247 254 231 / var(--tw-border-opacity)); -} -.border-y-lime-100{ - --tw-border-opacity: 1; - border-top-color: rgb(236 252 203 / var(--tw-border-opacity)); - border-bottom-color: rgb(236 252 203 / var(--tw-border-opacity)); -} -.border-y-lime-200{ - --tw-border-opacity: 1; - border-top-color: rgb(217 249 157 / var(--tw-border-opacity)); - border-bottom-color: rgb(217 249 157 / var(--tw-border-opacity)); -} -.border-y-lime-300{ - --tw-border-opacity: 1; - border-top-color: rgb(190 242 100 / var(--tw-border-opacity)); - border-bottom-color: rgb(190 242 100 / var(--tw-border-opacity)); -} -.border-y-lime-400{ - --tw-border-opacity: 1; - border-top-color: rgb(163 230 53 / var(--tw-border-opacity)); - border-bottom-color: rgb(163 230 53 / var(--tw-border-opacity)); -} -.border-y-lime-500{ - --tw-border-opacity: 1; - border-top-color: rgb(132 204 22 / var(--tw-border-opacity)); - border-bottom-color: rgb(132 204 22 / var(--tw-border-opacity)); -} -.border-y-lime-600{ - --tw-border-opacity: 1; - border-top-color: rgb(101 163 13 / var(--tw-border-opacity)); - border-bottom-color: rgb(101 163 13 / var(--tw-border-opacity)); -} -.border-y-lime-700{ - --tw-border-opacity: 1; - border-top-color: rgb(77 124 15 / var(--tw-border-opacity)); - border-bottom-color: rgb(77 124 15 / var(--tw-border-opacity)); -} -.border-y-lime-800{ - --tw-border-opacity: 1; - border-top-color: rgb(63 98 18 / var(--tw-border-opacity)); - border-bottom-color: rgb(63 98 18 / var(--tw-border-opacity)); -} -.border-y-lime-900{ - --tw-border-opacity: 1; - border-top-color: rgb(54 83 20 / var(--tw-border-opacity)); - border-bottom-color: rgb(54 83 20 / var(--tw-border-opacity)); -} .border-y-green-50{ --tw-border-opacity: 1; border-top-color: rgb(248 250 246 / var(--tw-border-opacity)); @@ -19972,56 +18214,6 @@ input[type="date"]::-webkit-inner-spin-button, border-top-color: rgb(110 161 82 / var(--tw-border-opacity)); border-bottom-color: rgb(110 161 82 / var(--tw-border-opacity)); } -.border-y-emerald-50{ - --tw-border-opacity: 1; - border-top-color: rgb(236 253 245 / var(--tw-border-opacity)); - border-bottom-color: rgb(236 253 245 / var(--tw-border-opacity)); -} -.border-y-emerald-100{ - --tw-border-opacity: 1; - border-top-color: rgb(209 250 229 / var(--tw-border-opacity)); - border-bottom-color: rgb(209 250 229 / var(--tw-border-opacity)); -} -.border-y-emerald-200{ - --tw-border-opacity: 1; - border-top-color: rgb(167 243 208 / var(--tw-border-opacity)); - border-bottom-color: rgb(167 243 208 / var(--tw-border-opacity)); -} -.border-y-emerald-300{ - --tw-border-opacity: 1; - border-top-color: rgb(110 231 183 / var(--tw-border-opacity)); - border-bottom-color: rgb(110 231 183 / var(--tw-border-opacity)); -} -.border-y-emerald-400{ - --tw-border-opacity: 1; - border-top-color: rgb(52 211 153 / var(--tw-border-opacity)); - border-bottom-color: rgb(52 211 153 / var(--tw-border-opacity)); -} -.border-y-emerald-500{ - --tw-border-opacity: 1; - border-top-color: rgb(16 185 129 / var(--tw-border-opacity)); - border-bottom-color: rgb(16 185 129 / var(--tw-border-opacity)); -} -.border-y-emerald-600{ - --tw-border-opacity: 1; - border-top-color: rgb(5 150 105 / var(--tw-border-opacity)); - border-bottom-color: rgb(5 150 105 / var(--tw-border-opacity)); -} -.border-y-emerald-700{ - --tw-border-opacity: 1; - border-top-color: rgb(4 120 87 / var(--tw-border-opacity)); - border-bottom-color: rgb(4 120 87 / var(--tw-border-opacity)); -} -.border-y-emerald-800{ - --tw-border-opacity: 1; - border-top-color: rgb(6 95 70 / var(--tw-border-opacity)); - border-bottom-color: rgb(6 95 70 / var(--tw-border-opacity)); -} -.border-y-emerald-900{ - --tw-border-opacity: 1; - border-top-color: rgb(6 78 59 / var(--tw-border-opacity)); - border-bottom-color: rgb(6 78 59 / var(--tw-border-opacity)); -} .border-y-teal-50{ --tw-border-opacity: 1; border-top-color: rgb(237 250 250 / var(--tw-border-opacity)); @@ -20072,106 +18264,6 @@ input[type="date"]::-webkit-inner-spin-button, border-top-color: rgb(1 68 81 / var(--tw-border-opacity)); border-bottom-color: rgb(1 68 81 / var(--tw-border-opacity)); } -.border-y-cyan-50{ - --tw-border-opacity: 1; - border-top-color: rgb(236 254 255 / var(--tw-border-opacity)); - border-bottom-color: rgb(236 254 255 / var(--tw-border-opacity)); -} -.border-y-cyan-100{ - --tw-border-opacity: 1; - border-top-color: rgb(207 250 254 / var(--tw-border-opacity)); - border-bottom-color: rgb(207 250 254 / var(--tw-border-opacity)); -} -.border-y-cyan-200{ - --tw-border-opacity: 1; - border-top-color: rgb(165 243 252 / var(--tw-border-opacity)); - border-bottom-color: rgb(165 243 252 / var(--tw-border-opacity)); -} -.border-y-cyan-300{ - --tw-border-opacity: 1; - border-top-color: rgb(103 232 249 / var(--tw-border-opacity)); - border-bottom-color: rgb(103 232 249 / var(--tw-border-opacity)); -} -.border-y-cyan-400{ - --tw-border-opacity: 1; - border-top-color: rgb(34 211 238 / var(--tw-border-opacity)); - border-bottom-color: rgb(34 211 238 / var(--tw-border-opacity)); -} -.border-y-cyan-500{ - --tw-border-opacity: 1; - border-top-color: rgb(6 182 212 / var(--tw-border-opacity)); - border-bottom-color: rgb(6 182 212 / var(--tw-border-opacity)); -} -.border-y-cyan-600{ - --tw-border-opacity: 1; - border-top-color: rgb(8 145 178 / var(--tw-border-opacity)); - border-bottom-color: rgb(8 145 178 / var(--tw-border-opacity)); -} -.border-y-cyan-700{ - --tw-border-opacity: 1; - border-top-color: rgb(14 116 144 / var(--tw-border-opacity)); - border-bottom-color: rgb(14 116 144 / var(--tw-border-opacity)); -} -.border-y-cyan-800{ - --tw-border-opacity: 1; - border-top-color: rgb(21 94 117 / var(--tw-border-opacity)); - border-bottom-color: rgb(21 94 117 / var(--tw-border-opacity)); -} -.border-y-cyan-900{ - --tw-border-opacity: 1; - border-top-color: rgb(22 78 99 / var(--tw-border-opacity)); - border-bottom-color: rgb(22 78 99 / var(--tw-border-opacity)); -} -.border-y-sky-50{ - --tw-border-opacity: 1; - border-top-color: rgb(240 249 255 / var(--tw-border-opacity)); - border-bottom-color: rgb(240 249 255 / var(--tw-border-opacity)); -} -.border-y-sky-100{ - --tw-border-opacity: 1; - border-top-color: rgb(224 242 254 / var(--tw-border-opacity)); - border-bottom-color: rgb(224 242 254 / var(--tw-border-opacity)); -} -.border-y-sky-200{ - --tw-border-opacity: 1; - border-top-color: rgb(186 230 253 / var(--tw-border-opacity)); - border-bottom-color: rgb(186 230 253 / var(--tw-border-opacity)); -} -.border-y-sky-300{ - --tw-border-opacity: 1; - border-top-color: rgb(125 211 252 / var(--tw-border-opacity)); - border-bottom-color: rgb(125 211 252 / var(--tw-border-opacity)); -} -.border-y-sky-400{ - --tw-border-opacity: 1; - border-top-color: rgb(56 189 248 / var(--tw-border-opacity)); - border-bottom-color: rgb(56 189 248 / var(--tw-border-opacity)); -} -.border-y-sky-500{ - --tw-border-opacity: 1; - border-top-color: rgb(14 165 233 / var(--tw-border-opacity)); - border-bottom-color: rgb(14 165 233 / var(--tw-border-opacity)); -} -.border-y-sky-600{ - --tw-border-opacity: 1; - border-top-color: rgb(2 132 199 / var(--tw-border-opacity)); - border-bottom-color: rgb(2 132 199 / var(--tw-border-opacity)); -} -.border-y-sky-700{ - --tw-border-opacity: 1; - border-top-color: rgb(3 105 161 / var(--tw-border-opacity)); - border-bottom-color: rgb(3 105 161 / var(--tw-border-opacity)); -} -.border-y-sky-800{ - --tw-border-opacity: 1; - border-top-color: rgb(7 89 133 / var(--tw-border-opacity)); - border-bottom-color: rgb(7 89 133 / var(--tw-border-opacity)); -} -.border-y-sky-900{ - --tw-border-opacity: 1; - border-top-color: rgb(12 74 110 / var(--tw-border-opacity)); - border-bottom-color: rgb(12 74 110 / var(--tw-border-opacity)); -} .border-y-blue-50{ --tw-border-opacity: 1; border-top-color: rgb(242 248 251 / var(--tw-border-opacity)); @@ -20277,56 +18369,6 @@ input[type="date"]::-webkit-inner-spin-button, border-top-color: rgb(54 47 120 / var(--tw-border-opacity)); border-bottom-color: rgb(54 47 120 / var(--tw-border-opacity)); } -.border-y-violet-50{ - --tw-border-opacity: 1; - border-top-color: rgb(245 243 255 / var(--tw-border-opacity)); - border-bottom-color: rgb(245 243 255 / var(--tw-border-opacity)); -} -.border-y-violet-100{ - --tw-border-opacity: 1; - border-top-color: rgb(237 233 254 / var(--tw-border-opacity)); - border-bottom-color: rgb(237 233 254 / var(--tw-border-opacity)); -} -.border-y-violet-200{ - --tw-border-opacity: 1; - border-top-color: rgb(221 214 254 / var(--tw-border-opacity)); - border-bottom-color: rgb(221 214 254 / var(--tw-border-opacity)); -} -.border-y-violet-300{ - --tw-border-opacity: 1; - border-top-color: rgb(196 181 253 / var(--tw-border-opacity)); - border-bottom-color: rgb(196 181 253 / var(--tw-border-opacity)); -} -.border-y-violet-400{ - --tw-border-opacity: 1; - border-top-color: rgb(167 139 250 / var(--tw-border-opacity)); - border-bottom-color: rgb(167 139 250 / var(--tw-border-opacity)); -} -.border-y-violet-500{ - --tw-border-opacity: 1; - border-top-color: rgb(139 92 246 / var(--tw-border-opacity)); - border-bottom-color: rgb(139 92 246 / var(--tw-border-opacity)); -} -.border-y-violet-600{ - --tw-border-opacity: 1; - border-top-color: rgb(124 58 237 / var(--tw-border-opacity)); - border-bottom-color: rgb(124 58 237 / var(--tw-border-opacity)); -} -.border-y-violet-700{ - --tw-border-opacity: 1; - border-top-color: rgb(109 40 217 / var(--tw-border-opacity)); - border-bottom-color: rgb(109 40 217 / var(--tw-border-opacity)); -} -.border-y-violet-800{ - --tw-border-opacity: 1; - border-top-color: rgb(91 33 182 / var(--tw-border-opacity)); - border-bottom-color: rgb(91 33 182 / var(--tw-border-opacity)); -} -.border-y-violet-900{ - --tw-border-opacity: 1; - border-top-color: rgb(76 29 149 / var(--tw-border-opacity)); - border-bottom-color: rgb(76 29 149 / var(--tw-border-opacity)); -} .border-y-purple-50{ --tw-border-opacity: 1; border-top-color: rgb(247 247 249 / var(--tw-border-opacity)); @@ -20382,56 +18424,6 @@ input[type="date"]::-webkit-inner-spin-button, border-top-color: rgb(85 88 139 / var(--tw-border-opacity)); border-bottom-color: rgb(85 88 139 / var(--tw-border-opacity)); } -.border-y-fuchsia-50{ - --tw-border-opacity: 1; - border-top-color: rgb(253 244 255 / var(--tw-border-opacity)); - border-bottom-color: rgb(253 244 255 / var(--tw-border-opacity)); -} -.border-y-fuchsia-100{ - --tw-border-opacity: 1; - border-top-color: rgb(250 232 255 / var(--tw-border-opacity)); - border-bottom-color: rgb(250 232 255 / var(--tw-border-opacity)); -} -.border-y-fuchsia-200{ - --tw-border-opacity: 1; - border-top-color: rgb(245 208 254 / var(--tw-border-opacity)); - border-bottom-color: rgb(245 208 254 / var(--tw-border-opacity)); -} -.border-y-fuchsia-300{ - --tw-border-opacity: 1; - border-top-color: rgb(240 171 252 / var(--tw-border-opacity)); - border-bottom-color: rgb(240 171 252 / var(--tw-border-opacity)); -} -.border-y-fuchsia-400{ - --tw-border-opacity: 1; - border-top-color: rgb(232 121 249 / var(--tw-border-opacity)); - border-bottom-color: rgb(232 121 249 / var(--tw-border-opacity)); -} -.border-y-fuchsia-500{ - --tw-border-opacity: 1; - border-top-color: rgb(217 70 239 / var(--tw-border-opacity)); - border-bottom-color: rgb(217 70 239 / var(--tw-border-opacity)); -} -.border-y-fuchsia-600{ - --tw-border-opacity: 1; - border-top-color: rgb(192 38 211 / var(--tw-border-opacity)); - border-bottom-color: rgb(192 38 211 / var(--tw-border-opacity)); -} -.border-y-fuchsia-700{ - --tw-border-opacity: 1; - border-top-color: rgb(162 28 175 / var(--tw-border-opacity)); - border-bottom-color: rgb(162 28 175 / var(--tw-border-opacity)); -} -.border-y-fuchsia-800{ - --tw-border-opacity: 1; - border-top-color: rgb(134 25 143 / var(--tw-border-opacity)); - border-bottom-color: rgb(134 25 143 / var(--tw-border-opacity)); -} -.border-y-fuchsia-900{ - --tw-border-opacity: 1; - border-top-color: rgb(112 26 117 / var(--tw-border-opacity)); - border-bottom-color: rgb(112 26 117 / var(--tw-border-opacity)); -} .border-y-pink-50{ --tw-border-opacity: 1; border-top-color: rgb(253 242 248 / var(--tw-border-opacity)); @@ -20482,6 +18474,36 @@ input[type="date"]::-webkit-inner-spin-button, border-top-color: rgb(117 26 61 / var(--tw-border-opacity)); border-bottom-color: rgb(117 26 61 / var(--tw-border-opacity)); } +.border-y-lilac-100{ + --tw-border-opacity: 1; + border-top-color: rgb(245 247 250 / var(--tw-border-opacity)); + border-bottom-color: rgb(245 247 250 / var(--tw-border-opacity)); +} +.border-y-lilac-300{ + --tw-border-opacity: 1; + border-top-color: rgb(237 240 252 / var(--tw-border-opacity)); + border-bottom-color: rgb(237 240 252 / var(--tw-border-opacity)); +} +.border-y-lilac-900{ + --tw-border-opacity: 1; + border-top-color: rgb(220 226 249 / var(--tw-border-opacity)); + border-bottom-color: rgb(220 226 249 / var(--tw-border-opacity)); +} +.border-y-lilac{ + --tw-border-opacity: 1; + border-top-color: rgb(248 249 254 / var(--tw-border-opacity)); + border-bottom-color: rgb(248 249 254 / var(--tw-border-opacity)); +} +.border-y-golden-900{ + --tw-border-opacity: 1; + border-top-color: rgb(191 184 130 / var(--tw-border-opacity)); + border-bottom-color: rgb(191 184 130 / var(--tw-border-opacity)); +} +.border-y-golden{ + --tw-border-opacity: 1; + border-top-color: rgb(209 201 137 / var(--tw-border-opacity)); + border-bottom-color: rgb(209 201 137 / var(--tw-border-opacity)); +} .border-y-rose-50{ --tw-border-opacity: 1; border-top-color: rgb(255 241 242 / var(--tw-border-opacity)); @@ -20537,36 +18559,6 @@ input[type="date"]::-webkit-inner-spin-button, border-top-color: rgb(244 63 94 / var(--tw-border-opacity)); border-bottom-color: rgb(244 63 94 / var(--tw-border-opacity)); } -.border-y-lilac-100{ - --tw-border-opacity: 1; - border-top-color: rgb(245 247 250 / var(--tw-border-opacity)); - border-bottom-color: rgb(245 247 250 / var(--tw-border-opacity)); -} -.border-y-lilac-300{ - --tw-border-opacity: 1; - border-top-color: rgb(237 240 252 / var(--tw-border-opacity)); - border-bottom-color: rgb(237 240 252 / var(--tw-border-opacity)); -} -.border-y-lilac-900{ - --tw-border-opacity: 1; - border-top-color: rgb(220 226 249 / var(--tw-border-opacity)); - border-bottom-color: rgb(220 226 249 / var(--tw-border-opacity)); -} -.border-y-lilac{ - --tw-border-opacity: 1; - border-top-color: rgb(248 249 254 / var(--tw-border-opacity)); - border-bottom-color: rgb(248 249 254 / var(--tw-border-opacity)); -} -.border-y-golden-900{ - --tw-border-opacity: 1; - border-top-color: rgb(191 184 130 / var(--tw-border-opacity)); - border-bottom-color: rgb(191 184 130 / var(--tw-border-opacity)); -} -.border-y-golden{ - --tw-border-opacity: 1; - border-top-color: rgb(209 201 137 / var(--tw-border-opacity)); - border-bottom-color: rgb(209 201 137 / var(--tw-border-opacity)); -} .border-y-status-success{ --tw-border-opacity: 1; border-top-color: rgb(241 246 238 / var(--tw-border-opacity)); @@ -20681,15 +18673,13 @@ input[type="date"]::-webkit-inner-spin-button, border-top-color: rgb(147 95 7 / var(--tw-border-opacity)); border-bottom-color: rgb(147 95 7 / var(--tw-border-opacity)); } -.border-t-inherit{ - border-top-color: inherit; -} -.border-t-current{ - border-top-color: currentColor; -} .border-t-transparent{ border-top-color: transparent; } +.border-t-white{ + --tw-border-opacity: 1; + border-top-color: rgb(255 255 255 / var(--tw-border-opacity)); +} .border-t-black-50{ --tw-border-opacity: 1; border-top-color: rgb(246 246 246 / var(--tw-border-opacity)); @@ -20734,50 +18724,6 @@ input[type="date"]::-webkit-inner-spin-button, --tw-border-opacity: 1; border-top-color: rgb(66 66 66 / var(--tw-border-opacity)); } -.border-t-white{ - --tw-border-opacity: 1; - border-top-color: rgb(255 255 255 / var(--tw-border-opacity)); -} -.border-t-slate-50{ - --tw-border-opacity: 1; - border-top-color: rgb(248 250 252 / var(--tw-border-opacity)); -} -.border-t-slate-100{ - --tw-border-opacity: 1; - border-top-color: rgb(241 245 249 / var(--tw-border-opacity)); -} -.border-t-slate-200{ - --tw-border-opacity: 1; - border-top-color: rgb(226 232 240 / var(--tw-border-opacity)); -} -.border-t-slate-300{ - --tw-border-opacity: 1; - border-top-color: rgb(203 213 225 / var(--tw-border-opacity)); -} -.border-t-slate-400{ - --tw-border-opacity: 1; - border-top-color: rgb(148 163 184 / var(--tw-border-opacity)); -} -.border-t-slate-500{ - --tw-border-opacity: 1; - border-top-color: rgb(100 116 139 / var(--tw-border-opacity)); -} -.border-t-slate-600{ - --tw-border-opacity: 1; - border-top-color: rgb(71 85 105 / var(--tw-border-opacity)); -} -.border-t-slate-700{ - --tw-border-opacity: 1; - border-top-color: rgb(51 65 85 / var(--tw-border-opacity)); -} -.border-t-slate-800{ - --tw-border-opacity: 1; - border-top-color: rgb(30 41 59 / var(--tw-border-opacity)); -} -.border-t-slate-900{ - --tw-border-opacity: 1; - border-top-color: rgb(15 23 42 / var(--tw-border-opacity)); -} .border-t-gray-50{ --tw-border-opacity: 1; border-top-color: rgb(249 250 251 / var(--tw-border-opacity)); @@ -20818,126 +18764,6 @@ input[type="date"]::-webkit-inner-spin-button, --tw-border-opacity: 1; border-top-color: rgb(17 24 39 / var(--tw-border-opacity)); } -.border-t-zinc-50{ - --tw-border-opacity: 1; - border-top-color: rgb(250 250 250 / var(--tw-border-opacity)); -} -.border-t-zinc-100{ - --tw-border-opacity: 1; - border-top-color: rgb(244 244 245 / var(--tw-border-opacity)); -} -.border-t-zinc-200{ - --tw-border-opacity: 1; - border-top-color: rgb(228 228 231 / var(--tw-border-opacity)); -} -.border-t-zinc-300{ - --tw-border-opacity: 1; - border-top-color: rgb(212 212 216 / var(--tw-border-opacity)); -} -.border-t-zinc-400{ - --tw-border-opacity: 1; - border-top-color: rgb(161 161 170 / var(--tw-border-opacity)); -} -.border-t-zinc-500{ - --tw-border-opacity: 1; - border-top-color: rgb(113 113 122 / var(--tw-border-opacity)); -} -.border-t-zinc-600{ - --tw-border-opacity: 1; - border-top-color: rgb(82 82 91 / var(--tw-border-opacity)); -} -.border-t-zinc-700{ - --tw-border-opacity: 1; - border-top-color: rgb(63 63 70 / var(--tw-border-opacity)); -} -.border-t-zinc-800{ - --tw-border-opacity: 1; - border-top-color: rgb(39 39 42 / var(--tw-border-opacity)); -} -.border-t-zinc-900{ - --tw-border-opacity: 1; - border-top-color: rgb(24 24 27 / var(--tw-border-opacity)); -} -.border-t-neutral-50{ - --tw-border-opacity: 1; - border-top-color: rgb(250 250 250 / var(--tw-border-opacity)); -} -.border-t-neutral-100{ - --tw-border-opacity: 1; - border-top-color: rgb(245 245 245 / var(--tw-border-opacity)); -} -.border-t-neutral-200{ - --tw-border-opacity: 1; - border-top-color: rgb(229 229 229 / var(--tw-border-opacity)); -} -.border-t-neutral-300{ - --tw-border-opacity: 1; - border-top-color: rgb(212 212 212 / var(--tw-border-opacity)); -} -.border-t-neutral-400{ - --tw-border-opacity: 1; - border-top-color: rgb(163 163 163 / var(--tw-border-opacity)); -} -.border-t-neutral-500{ - --tw-border-opacity: 1; - border-top-color: rgb(115 115 115 / var(--tw-border-opacity)); -} -.border-t-neutral-600{ - --tw-border-opacity: 1; - border-top-color: rgb(82 82 82 / var(--tw-border-opacity)); -} -.border-t-neutral-700{ - --tw-border-opacity: 1; - border-top-color: rgb(64 64 64 / var(--tw-border-opacity)); -} -.border-t-neutral-800{ - --tw-border-opacity: 1; - border-top-color: rgb(38 38 38 / var(--tw-border-opacity)); -} -.border-t-neutral-900{ - --tw-border-opacity: 1; - border-top-color: rgb(23 23 23 / var(--tw-border-opacity)); -} -.border-t-stone-50{ - --tw-border-opacity: 1; - border-top-color: rgb(250 250 249 / var(--tw-border-opacity)); -} -.border-t-stone-100{ - --tw-border-opacity: 1; - border-top-color: rgb(245 245 244 / var(--tw-border-opacity)); -} -.border-t-stone-200{ - --tw-border-opacity: 1; - border-top-color: rgb(231 229 228 / var(--tw-border-opacity)); -} -.border-t-stone-300{ - --tw-border-opacity: 1; - border-top-color: rgb(214 211 209 / var(--tw-border-opacity)); -} -.border-t-stone-400{ - --tw-border-opacity: 1; - border-top-color: rgb(168 162 158 / var(--tw-border-opacity)); -} -.border-t-stone-500{ - --tw-border-opacity: 1; - border-top-color: rgb(120 113 108 / var(--tw-border-opacity)); -} -.border-t-stone-600{ - --tw-border-opacity: 1; - border-top-color: rgb(87 83 78 / var(--tw-border-opacity)); -} -.border-t-stone-700{ - --tw-border-opacity: 1; - border-top-color: rgb(68 64 60 / var(--tw-border-opacity)); -} -.border-t-stone-800{ - --tw-border-opacity: 1; - border-top-color: rgb(41 37 36 / var(--tw-border-opacity)); -} -.border-t-stone-900{ - --tw-border-opacity: 1; - border-top-color: rgb(28 25 23 / var(--tw-border-opacity)); -} .border-t-red-50{ --tw-border-opacity: 1; border-top-color: rgb(252 242 242 / var(--tw-border-opacity)); @@ -21026,46 +18852,6 @@ input[type="date"]::-webkit-inner-spin-button, --tw-border-opacity: 1; border-top-color: rgb(245 158 11 / var(--tw-border-opacity)); } -.border-t-amber-50{ - --tw-border-opacity: 1; - border-top-color: rgb(255 251 235 / var(--tw-border-opacity)); -} -.border-t-amber-100{ - --tw-border-opacity: 1; - border-top-color: rgb(254 243 199 / var(--tw-border-opacity)); -} -.border-t-amber-200{ - --tw-border-opacity: 1; - border-top-color: rgb(253 230 138 / var(--tw-border-opacity)); -} -.border-t-amber-300{ - --tw-border-opacity: 1; - border-top-color: rgb(252 211 77 / var(--tw-border-opacity)); -} -.border-t-amber-400{ - --tw-border-opacity: 1; - border-top-color: rgb(251 191 36 / var(--tw-border-opacity)); -} -.border-t-amber-500{ - --tw-border-opacity: 1; - border-top-color: rgb(245 158 11 / var(--tw-border-opacity)); -} -.border-t-amber-600{ - --tw-border-opacity: 1; - border-top-color: rgb(217 119 6 / var(--tw-border-opacity)); -} -.border-t-amber-700{ - --tw-border-opacity: 1; - border-top-color: rgb(180 83 9 / var(--tw-border-opacity)); -} -.border-t-amber-800{ - --tw-border-opacity: 1; - border-top-color: rgb(146 64 14 / var(--tw-border-opacity)); -} -.border-t-amber-900{ - --tw-border-opacity: 1; - border-top-color: rgb(120 53 15 / var(--tw-border-opacity)); -} .border-t-yellow-50{ --tw-border-opacity: 1; border-top-color: rgb(253 253 234 / var(--tw-border-opacity)); @@ -21106,46 +18892,6 @@ input[type="date"]::-webkit-inner-spin-button, --tw-border-opacity: 1; border-top-color: rgb(99 49 18 / var(--tw-border-opacity)); } -.border-t-lime-50{ - --tw-border-opacity: 1; - border-top-color: rgb(247 254 231 / var(--tw-border-opacity)); -} -.border-t-lime-100{ - --tw-border-opacity: 1; - border-top-color: rgb(236 252 203 / var(--tw-border-opacity)); -} -.border-t-lime-200{ - --tw-border-opacity: 1; - border-top-color: rgb(217 249 157 / var(--tw-border-opacity)); -} -.border-t-lime-300{ - --tw-border-opacity: 1; - border-top-color: rgb(190 242 100 / var(--tw-border-opacity)); -} -.border-t-lime-400{ - --tw-border-opacity: 1; - border-top-color: rgb(163 230 53 / var(--tw-border-opacity)); -} -.border-t-lime-500{ - --tw-border-opacity: 1; - border-top-color: rgb(132 204 22 / var(--tw-border-opacity)); -} -.border-t-lime-600{ - --tw-border-opacity: 1; - border-top-color: rgb(101 163 13 / var(--tw-border-opacity)); -} -.border-t-lime-700{ - --tw-border-opacity: 1; - border-top-color: rgb(77 124 15 / var(--tw-border-opacity)); -} -.border-t-lime-800{ - --tw-border-opacity: 1; - border-top-color: rgb(63 98 18 / var(--tw-border-opacity)); -} -.border-t-lime-900{ - --tw-border-opacity: 1; - border-top-color: rgb(54 83 20 / var(--tw-border-opacity)); -} .border-t-green-50{ --tw-border-opacity: 1; border-top-color: rgb(248 250 246 / var(--tw-border-opacity)); @@ -21190,46 +18936,6 @@ input[type="date"]::-webkit-inner-spin-button, --tw-border-opacity: 1; border-top-color: rgb(110 161 82 / var(--tw-border-opacity)); } -.border-t-emerald-50{ - --tw-border-opacity: 1; - border-top-color: rgb(236 253 245 / var(--tw-border-opacity)); -} -.border-t-emerald-100{ - --tw-border-opacity: 1; - border-top-color: rgb(209 250 229 / var(--tw-border-opacity)); -} -.border-t-emerald-200{ - --tw-border-opacity: 1; - border-top-color: rgb(167 243 208 / var(--tw-border-opacity)); -} -.border-t-emerald-300{ - --tw-border-opacity: 1; - border-top-color: rgb(110 231 183 / var(--tw-border-opacity)); -} -.border-t-emerald-400{ - --tw-border-opacity: 1; - border-top-color: rgb(52 211 153 / var(--tw-border-opacity)); -} -.border-t-emerald-500{ - --tw-border-opacity: 1; - border-top-color: rgb(16 185 129 / var(--tw-border-opacity)); -} -.border-t-emerald-600{ - --tw-border-opacity: 1; - border-top-color: rgb(5 150 105 / var(--tw-border-opacity)); -} -.border-t-emerald-700{ - --tw-border-opacity: 1; - border-top-color: rgb(4 120 87 / var(--tw-border-opacity)); -} -.border-t-emerald-800{ - --tw-border-opacity: 1; - border-top-color: rgb(6 95 70 / var(--tw-border-opacity)); -} -.border-t-emerald-900{ - --tw-border-opacity: 1; - border-top-color: rgb(6 78 59 / var(--tw-border-opacity)); -} .border-t-teal-50{ --tw-border-opacity: 1; border-top-color: rgb(237 250 250 / var(--tw-border-opacity)); @@ -21270,86 +18976,6 @@ input[type="date"]::-webkit-inner-spin-button, --tw-border-opacity: 1; border-top-color: rgb(1 68 81 / var(--tw-border-opacity)); } -.border-t-cyan-50{ - --tw-border-opacity: 1; - border-top-color: rgb(236 254 255 / var(--tw-border-opacity)); -} -.border-t-cyan-100{ - --tw-border-opacity: 1; - border-top-color: rgb(207 250 254 / var(--tw-border-opacity)); -} -.border-t-cyan-200{ - --tw-border-opacity: 1; - border-top-color: rgb(165 243 252 / var(--tw-border-opacity)); -} -.border-t-cyan-300{ - --tw-border-opacity: 1; - border-top-color: rgb(103 232 249 / var(--tw-border-opacity)); -} -.border-t-cyan-400{ - --tw-border-opacity: 1; - border-top-color: rgb(34 211 238 / var(--tw-border-opacity)); -} -.border-t-cyan-500{ - --tw-border-opacity: 1; - border-top-color: rgb(6 182 212 / var(--tw-border-opacity)); -} -.border-t-cyan-600{ - --tw-border-opacity: 1; - border-top-color: rgb(8 145 178 / var(--tw-border-opacity)); -} -.border-t-cyan-700{ - --tw-border-opacity: 1; - border-top-color: rgb(14 116 144 / var(--tw-border-opacity)); -} -.border-t-cyan-800{ - --tw-border-opacity: 1; - border-top-color: rgb(21 94 117 / var(--tw-border-opacity)); -} -.border-t-cyan-900{ - --tw-border-opacity: 1; - border-top-color: rgb(22 78 99 / var(--tw-border-opacity)); -} -.border-t-sky-50{ - --tw-border-opacity: 1; - border-top-color: rgb(240 249 255 / var(--tw-border-opacity)); -} -.border-t-sky-100{ - --tw-border-opacity: 1; - border-top-color: rgb(224 242 254 / var(--tw-border-opacity)); -} -.border-t-sky-200{ - --tw-border-opacity: 1; - border-top-color: rgb(186 230 253 / var(--tw-border-opacity)); -} -.border-t-sky-300{ - --tw-border-opacity: 1; - border-top-color: rgb(125 211 252 / var(--tw-border-opacity)); -} -.border-t-sky-400{ - --tw-border-opacity: 1; - border-top-color: rgb(56 189 248 / var(--tw-border-opacity)); -} -.border-t-sky-500{ - --tw-border-opacity: 1; - border-top-color: rgb(14 165 233 / var(--tw-border-opacity)); -} -.border-t-sky-600{ - --tw-border-opacity: 1; - border-top-color: rgb(2 132 199 / var(--tw-border-opacity)); -} -.border-t-sky-700{ - --tw-border-opacity: 1; - border-top-color: rgb(3 105 161 / var(--tw-border-opacity)); -} -.border-t-sky-800{ - --tw-border-opacity: 1; - border-top-color: rgb(7 89 133 / var(--tw-border-opacity)); -} -.border-t-sky-900{ - --tw-border-opacity: 1; - border-top-color: rgb(12 74 110 / var(--tw-border-opacity)); -} .border-t-blue-50{ --tw-border-opacity: 1; border-top-color: rgb(242 248 251 / var(--tw-border-opacity)); @@ -21434,46 +19060,6 @@ input[type="date"]::-webkit-inner-spin-button, --tw-border-opacity: 1; border-top-color: rgb(54 47 120 / var(--tw-border-opacity)); } -.border-t-violet-50{ - --tw-border-opacity: 1; - border-top-color: rgb(245 243 255 / var(--tw-border-opacity)); -} -.border-t-violet-100{ - --tw-border-opacity: 1; - border-top-color: rgb(237 233 254 / var(--tw-border-opacity)); -} -.border-t-violet-200{ - --tw-border-opacity: 1; - border-top-color: rgb(221 214 254 / var(--tw-border-opacity)); -} -.border-t-violet-300{ - --tw-border-opacity: 1; - border-top-color: rgb(196 181 253 / var(--tw-border-opacity)); -} -.border-t-violet-400{ - --tw-border-opacity: 1; - border-top-color: rgb(167 139 250 / var(--tw-border-opacity)); -} -.border-t-violet-500{ - --tw-border-opacity: 1; - border-top-color: rgb(139 92 246 / var(--tw-border-opacity)); -} -.border-t-violet-600{ - --tw-border-opacity: 1; - border-top-color: rgb(124 58 237 / var(--tw-border-opacity)); -} -.border-t-violet-700{ - --tw-border-opacity: 1; - border-top-color: rgb(109 40 217 / var(--tw-border-opacity)); -} -.border-t-violet-800{ - --tw-border-opacity: 1; - border-top-color: rgb(91 33 182 / var(--tw-border-opacity)); -} -.border-t-violet-900{ - --tw-border-opacity: 1; - border-top-color: rgb(76 29 149 / var(--tw-border-opacity)); -} .border-t-purple-50{ --tw-border-opacity: 1; border-top-color: rgb(247 247 249 / var(--tw-border-opacity)); @@ -21518,46 +19104,6 @@ input[type="date"]::-webkit-inner-spin-button, --tw-border-opacity: 1; border-top-color: rgb(85 88 139 / var(--tw-border-opacity)); } -.border-t-fuchsia-50{ - --tw-border-opacity: 1; - border-top-color: rgb(253 244 255 / var(--tw-border-opacity)); -} -.border-t-fuchsia-100{ - --tw-border-opacity: 1; - border-top-color: rgb(250 232 255 / var(--tw-border-opacity)); -} -.border-t-fuchsia-200{ - --tw-border-opacity: 1; - border-top-color: rgb(245 208 254 / var(--tw-border-opacity)); -} -.border-t-fuchsia-300{ - --tw-border-opacity: 1; - border-top-color: rgb(240 171 252 / var(--tw-border-opacity)); -} -.border-t-fuchsia-400{ - --tw-border-opacity: 1; - border-top-color: rgb(232 121 249 / var(--tw-border-opacity)); -} -.border-t-fuchsia-500{ - --tw-border-opacity: 1; - border-top-color: rgb(217 70 239 / var(--tw-border-opacity)); -} -.border-t-fuchsia-600{ - --tw-border-opacity: 1; - border-top-color: rgb(192 38 211 / var(--tw-border-opacity)); -} -.border-t-fuchsia-700{ - --tw-border-opacity: 1; - border-top-color: rgb(162 28 175 / var(--tw-border-opacity)); -} -.border-t-fuchsia-800{ - --tw-border-opacity: 1; - border-top-color: rgb(134 25 143 / var(--tw-border-opacity)); -} -.border-t-fuchsia-900{ - --tw-border-opacity: 1; - border-top-color: rgb(112 26 117 / var(--tw-border-opacity)); -} .border-t-pink-50{ --tw-border-opacity: 1; border-top-color: rgb(253 242 248 / var(--tw-border-opacity)); @@ -21598,6 +19144,30 @@ input[type="date"]::-webkit-inner-spin-button, --tw-border-opacity: 1; border-top-color: rgb(117 26 61 / var(--tw-border-opacity)); } +.border-t-lilac-100{ + --tw-border-opacity: 1; + border-top-color: rgb(245 247 250 / var(--tw-border-opacity)); +} +.border-t-lilac-300{ + --tw-border-opacity: 1; + border-top-color: rgb(237 240 252 / var(--tw-border-opacity)); +} +.border-t-lilac-900{ + --tw-border-opacity: 1; + border-top-color: rgb(220 226 249 / var(--tw-border-opacity)); +} +.border-t-lilac{ + --tw-border-opacity: 1; + border-top-color: rgb(248 249 254 / var(--tw-border-opacity)); +} +.border-t-golden-900{ + --tw-border-opacity: 1; + border-top-color: rgb(191 184 130 / var(--tw-border-opacity)); +} +.border-t-golden{ + --tw-border-opacity: 1; + border-top-color: rgb(209 201 137 / var(--tw-border-opacity)); +} .border-t-rose-50{ --tw-border-opacity: 1; border-top-color: rgb(255 241 242 / var(--tw-border-opacity)); @@ -21642,30 +19212,6 @@ input[type="date"]::-webkit-inner-spin-button, --tw-border-opacity: 1; border-top-color: rgb(244 63 94 / var(--tw-border-opacity)); } -.border-t-lilac-100{ - --tw-border-opacity: 1; - border-top-color: rgb(245 247 250 / var(--tw-border-opacity)); -} -.border-t-lilac-300{ - --tw-border-opacity: 1; - border-top-color: rgb(237 240 252 / var(--tw-border-opacity)); -} -.border-t-lilac-900{ - --tw-border-opacity: 1; - border-top-color: rgb(220 226 249 / var(--tw-border-opacity)); -} -.border-t-lilac{ - --tw-border-opacity: 1; - border-top-color: rgb(248 249 254 / var(--tw-border-opacity)); -} -.border-t-golden-900{ - --tw-border-opacity: 1; - border-top-color: rgb(191 184 130 / var(--tw-border-opacity)); -} -.border-t-golden{ - --tw-border-opacity: 1; - border-top-color: rgb(209 201 137 / var(--tw-border-opacity)); -} .border-t-status-success{ --tw-border-opacity: 1; border-top-color: rgb(241 246 238 / var(--tw-border-opacity)); @@ -21757,15 +19303,13 @@ input[type="date"]::-webkit-inner-spin-button, --tw-border-opacity: 1; border-top-color: rgb(147 95 7 / var(--tw-border-opacity)); } -.border-r-inherit{ - border-right-color: inherit; -} -.border-r-current{ - border-right-color: currentColor; -} .border-r-transparent{ border-right-color: transparent; } +.border-r-white{ + --tw-border-opacity: 1; + border-right-color: rgb(255 255 255 / var(--tw-border-opacity)); +} .border-r-black-50{ --tw-border-opacity: 1; border-right-color: rgb(246 246 246 / var(--tw-border-opacity)); @@ -21810,50 +19354,6 @@ input[type="date"]::-webkit-inner-spin-button, --tw-border-opacity: 1; border-right-color: rgb(66 66 66 / var(--tw-border-opacity)); } -.border-r-white{ - --tw-border-opacity: 1; - border-right-color: rgb(255 255 255 / var(--tw-border-opacity)); -} -.border-r-slate-50{ - --tw-border-opacity: 1; - border-right-color: rgb(248 250 252 / var(--tw-border-opacity)); -} -.border-r-slate-100{ - --tw-border-opacity: 1; - border-right-color: rgb(241 245 249 / var(--tw-border-opacity)); -} -.border-r-slate-200{ - --tw-border-opacity: 1; - border-right-color: rgb(226 232 240 / var(--tw-border-opacity)); -} -.border-r-slate-300{ - --tw-border-opacity: 1; - border-right-color: rgb(203 213 225 / var(--tw-border-opacity)); -} -.border-r-slate-400{ - --tw-border-opacity: 1; - border-right-color: rgb(148 163 184 / var(--tw-border-opacity)); -} -.border-r-slate-500{ - --tw-border-opacity: 1; - border-right-color: rgb(100 116 139 / var(--tw-border-opacity)); -} -.border-r-slate-600{ - --tw-border-opacity: 1; - border-right-color: rgb(71 85 105 / var(--tw-border-opacity)); -} -.border-r-slate-700{ - --tw-border-opacity: 1; - border-right-color: rgb(51 65 85 / var(--tw-border-opacity)); -} -.border-r-slate-800{ - --tw-border-opacity: 1; - border-right-color: rgb(30 41 59 / var(--tw-border-opacity)); -} -.border-r-slate-900{ - --tw-border-opacity: 1; - border-right-color: rgb(15 23 42 / var(--tw-border-opacity)); -} .border-r-gray-50{ --tw-border-opacity: 1; border-right-color: rgb(249 250 251 / var(--tw-border-opacity)); @@ -21894,126 +19394,6 @@ input[type="date"]::-webkit-inner-spin-button, --tw-border-opacity: 1; border-right-color: rgb(17 24 39 / var(--tw-border-opacity)); } -.border-r-zinc-50{ - --tw-border-opacity: 1; - border-right-color: rgb(250 250 250 / var(--tw-border-opacity)); -} -.border-r-zinc-100{ - --tw-border-opacity: 1; - border-right-color: rgb(244 244 245 / var(--tw-border-opacity)); -} -.border-r-zinc-200{ - --tw-border-opacity: 1; - border-right-color: rgb(228 228 231 / var(--tw-border-opacity)); -} -.border-r-zinc-300{ - --tw-border-opacity: 1; - border-right-color: rgb(212 212 216 / var(--tw-border-opacity)); -} -.border-r-zinc-400{ - --tw-border-opacity: 1; - border-right-color: rgb(161 161 170 / var(--tw-border-opacity)); -} -.border-r-zinc-500{ - --tw-border-opacity: 1; - border-right-color: rgb(113 113 122 / var(--tw-border-opacity)); -} -.border-r-zinc-600{ - --tw-border-opacity: 1; - border-right-color: rgb(82 82 91 / var(--tw-border-opacity)); -} -.border-r-zinc-700{ - --tw-border-opacity: 1; - border-right-color: rgb(63 63 70 / var(--tw-border-opacity)); -} -.border-r-zinc-800{ - --tw-border-opacity: 1; - border-right-color: rgb(39 39 42 / var(--tw-border-opacity)); -} -.border-r-zinc-900{ - --tw-border-opacity: 1; - border-right-color: rgb(24 24 27 / var(--tw-border-opacity)); -} -.border-r-neutral-50{ - --tw-border-opacity: 1; - border-right-color: rgb(250 250 250 / var(--tw-border-opacity)); -} -.border-r-neutral-100{ - --tw-border-opacity: 1; - border-right-color: rgb(245 245 245 / var(--tw-border-opacity)); -} -.border-r-neutral-200{ - --tw-border-opacity: 1; - border-right-color: rgb(229 229 229 / var(--tw-border-opacity)); -} -.border-r-neutral-300{ - --tw-border-opacity: 1; - border-right-color: rgb(212 212 212 / var(--tw-border-opacity)); -} -.border-r-neutral-400{ - --tw-border-opacity: 1; - border-right-color: rgb(163 163 163 / var(--tw-border-opacity)); -} -.border-r-neutral-500{ - --tw-border-opacity: 1; - border-right-color: rgb(115 115 115 / var(--tw-border-opacity)); -} -.border-r-neutral-600{ - --tw-border-opacity: 1; - border-right-color: rgb(82 82 82 / var(--tw-border-opacity)); -} -.border-r-neutral-700{ - --tw-border-opacity: 1; - border-right-color: rgb(64 64 64 / var(--tw-border-opacity)); -} -.border-r-neutral-800{ - --tw-border-opacity: 1; - border-right-color: rgb(38 38 38 / var(--tw-border-opacity)); -} -.border-r-neutral-900{ - --tw-border-opacity: 1; - border-right-color: rgb(23 23 23 / var(--tw-border-opacity)); -} -.border-r-stone-50{ - --tw-border-opacity: 1; - border-right-color: rgb(250 250 249 / var(--tw-border-opacity)); -} -.border-r-stone-100{ - --tw-border-opacity: 1; - border-right-color: rgb(245 245 244 / var(--tw-border-opacity)); -} -.border-r-stone-200{ - --tw-border-opacity: 1; - border-right-color: rgb(231 229 228 / var(--tw-border-opacity)); -} -.border-r-stone-300{ - --tw-border-opacity: 1; - border-right-color: rgb(214 211 209 / var(--tw-border-opacity)); -} -.border-r-stone-400{ - --tw-border-opacity: 1; - border-right-color: rgb(168 162 158 / var(--tw-border-opacity)); -} -.border-r-stone-500{ - --tw-border-opacity: 1; - border-right-color: rgb(120 113 108 / var(--tw-border-opacity)); -} -.border-r-stone-600{ - --tw-border-opacity: 1; - border-right-color: rgb(87 83 78 / var(--tw-border-opacity)); -} -.border-r-stone-700{ - --tw-border-opacity: 1; - border-right-color: rgb(68 64 60 / var(--tw-border-opacity)); -} -.border-r-stone-800{ - --tw-border-opacity: 1; - border-right-color: rgb(41 37 36 / var(--tw-border-opacity)); -} -.border-r-stone-900{ - --tw-border-opacity: 1; - border-right-color: rgb(28 25 23 / var(--tw-border-opacity)); -} .border-r-red-50{ --tw-border-opacity: 1; border-right-color: rgb(252 242 242 / var(--tw-border-opacity)); @@ -22102,46 +19482,6 @@ input[type="date"]::-webkit-inner-spin-button, --tw-border-opacity: 1; border-right-color: rgb(245 158 11 / var(--tw-border-opacity)); } -.border-r-amber-50{ - --tw-border-opacity: 1; - border-right-color: rgb(255 251 235 / var(--tw-border-opacity)); -} -.border-r-amber-100{ - --tw-border-opacity: 1; - border-right-color: rgb(254 243 199 / var(--tw-border-opacity)); -} -.border-r-amber-200{ - --tw-border-opacity: 1; - border-right-color: rgb(253 230 138 / var(--tw-border-opacity)); -} -.border-r-amber-300{ - --tw-border-opacity: 1; - border-right-color: rgb(252 211 77 / var(--tw-border-opacity)); -} -.border-r-amber-400{ - --tw-border-opacity: 1; - border-right-color: rgb(251 191 36 / var(--tw-border-opacity)); -} -.border-r-amber-500{ - --tw-border-opacity: 1; - border-right-color: rgb(245 158 11 / var(--tw-border-opacity)); -} -.border-r-amber-600{ - --tw-border-opacity: 1; - border-right-color: rgb(217 119 6 / var(--tw-border-opacity)); -} -.border-r-amber-700{ - --tw-border-opacity: 1; - border-right-color: rgb(180 83 9 / var(--tw-border-opacity)); -} -.border-r-amber-800{ - --tw-border-opacity: 1; - border-right-color: rgb(146 64 14 / var(--tw-border-opacity)); -} -.border-r-amber-900{ - --tw-border-opacity: 1; - border-right-color: rgb(120 53 15 / var(--tw-border-opacity)); -} .border-r-yellow-50{ --tw-border-opacity: 1; border-right-color: rgb(253 253 234 / var(--tw-border-opacity)); @@ -22182,46 +19522,6 @@ input[type="date"]::-webkit-inner-spin-button, --tw-border-opacity: 1; border-right-color: rgb(99 49 18 / var(--tw-border-opacity)); } -.border-r-lime-50{ - --tw-border-opacity: 1; - border-right-color: rgb(247 254 231 / var(--tw-border-opacity)); -} -.border-r-lime-100{ - --tw-border-opacity: 1; - border-right-color: rgb(236 252 203 / var(--tw-border-opacity)); -} -.border-r-lime-200{ - --tw-border-opacity: 1; - border-right-color: rgb(217 249 157 / var(--tw-border-opacity)); -} -.border-r-lime-300{ - --tw-border-opacity: 1; - border-right-color: rgb(190 242 100 / var(--tw-border-opacity)); -} -.border-r-lime-400{ - --tw-border-opacity: 1; - border-right-color: rgb(163 230 53 / var(--tw-border-opacity)); -} -.border-r-lime-500{ - --tw-border-opacity: 1; - border-right-color: rgb(132 204 22 / var(--tw-border-opacity)); -} -.border-r-lime-600{ - --tw-border-opacity: 1; - border-right-color: rgb(101 163 13 / var(--tw-border-opacity)); -} -.border-r-lime-700{ - --tw-border-opacity: 1; - border-right-color: rgb(77 124 15 / var(--tw-border-opacity)); -} -.border-r-lime-800{ - --tw-border-opacity: 1; - border-right-color: rgb(63 98 18 / var(--tw-border-opacity)); -} -.border-r-lime-900{ - --tw-border-opacity: 1; - border-right-color: rgb(54 83 20 / var(--tw-border-opacity)); -} .border-r-green-50{ --tw-border-opacity: 1; border-right-color: rgb(248 250 246 / var(--tw-border-opacity)); @@ -22266,46 +19566,6 @@ input[type="date"]::-webkit-inner-spin-button, --tw-border-opacity: 1; border-right-color: rgb(110 161 82 / var(--tw-border-opacity)); } -.border-r-emerald-50{ - --tw-border-opacity: 1; - border-right-color: rgb(236 253 245 / var(--tw-border-opacity)); -} -.border-r-emerald-100{ - --tw-border-opacity: 1; - border-right-color: rgb(209 250 229 / var(--tw-border-opacity)); -} -.border-r-emerald-200{ - --tw-border-opacity: 1; - border-right-color: rgb(167 243 208 / var(--tw-border-opacity)); -} -.border-r-emerald-300{ - --tw-border-opacity: 1; - border-right-color: rgb(110 231 183 / var(--tw-border-opacity)); -} -.border-r-emerald-400{ - --tw-border-opacity: 1; - border-right-color: rgb(52 211 153 / var(--tw-border-opacity)); -} -.border-r-emerald-500{ - --tw-border-opacity: 1; - border-right-color: rgb(16 185 129 / var(--tw-border-opacity)); -} -.border-r-emerald-600{ - --tw-border-opacity: 1; - border-right-color: rgb(5 150 105 / var(--tw-border-opacity)); -} -.border-r-emerald-700{ - --tw-border-opacity: 1; - border-right-color: rgb(4 120 87 / var(--tw-border-opacity)); -} -.border-r-emerald-800{ - --tw-border-opacity: 1; - border-right-color: rgb(6 95 70 / var(--tw-border-opacity)); -} -.border-r-emerald-900{ - --tw-border-opacity: 1; - border-right-color: rgb(6 78 59 / var(--tw-border-opacity)); -} .border-r-teal-50{ --tw-border-opacity: 1; border-right-color: rgb(237 250 250 / var(--tw-border-opacity)); @@ -22346,86 +19606,6 @@ input[type="date"]::-webkit-inner-spin-button, --tw-border-opacity: 1; border-right-color: rgb(1 68 81 / var(--tw-border-opacity)); } -.border-r-cyan-50{ - --tw-border-opacity: 1; - border-right-color: rgb(236 254 255 / var(--tw-border-opacity)); -} -.border-r-cyan-100{ - --tw-border-opacity: 1; - border-right-color: rgb(207 250 254 / var(--tw-border-opacity)); -} -.border-r-cyan-200{ - --tw-border-opacity: 1; - border-right-color: rgb(165 243 252 / var(--tw-border-opacity)); -} -.border-r-cyan-300{ - --tw-border-opacity: 1; - border-right-color: rgb(103 232 249 / var(--tw-border-opacity)); -} -.border-r-cyan-400{ - --tw-border-opacity: 1; - border-right-color: rgb(34 211 238 / var(--tw-border-opacity)); -} -.border-r-cyan-500{ - --tw-border-opacity: 1; - border-right-color: rgb(6 182 212 / var(--tw-border-opacity)); -} -.border-r-cyan-600{ - --tw-border-opacity: 1; - border-right-color: rgb(8 145 178 / var(--tw-border-opacity)); -} -.border-r-cyan-700{ - --tw-border-opacity: 1; - border-right-color: rgb(14 116 144 / var(--tw-border-opacity)); -} -.border-r-cyan-800{ - --tw-border-opacity: 1; - border-right-color: rgb(21 94 117 / var(--tw-border-opacity)); -} -.border-r-cyan-900{ - --tw-border-opacity: 1; - border-right-color: rgb(22 78 99 / var(--tw-border-opacity)); -} -.border-r-sky-50{ - --tw-border-opacity: 1; - border-right-color: rgb(240 249 255 / var(--tw-border-opacity)); -} -.border-r-sky-100{ - --tw-border-opacity: 1; - border-right-color: rgb(224 242 254 / var(--tw-border-opacity)); -} -.border-r-sky-200{ - --tw-border-opacity: 1; - border-right-color: rgb(186 230 253 / var(--tw-border-opacity)); -} -.border-r-sky-300{ - --tw-border-opacity: 1; - border-right-color: rgb(125 211 252 / var(--tw-border-opacity)); -} -.border-r-sky-400{ - --tw-border-opacity: 1; - border-right-color: rgb(56 189 248 / var(--tw-border-opacity)); -} -.border-r-sky-500{ - --tw-border-opacity: 1; - border-right-color: rgb(14 165 233 / var(--tw-border-opacity)); -} -.border-r-sky-600{ - --tw-border-opacity: 1; - border-right-color: rgb(2 132 199 / var(--tw-border-opacity)); -} -.border-r-sky-700{ - --tw-border-opacity: 1; - border-right-color: rgb(3 105 161 / var(--tw-border-opacity)); -} -.border-r-sky-800{ - --tw-border-opacity: 1; - border-right-color: rgb(7 89 133 / var(--tw-border-opacity)); -} -.border-r-sky-900{ - --tw-border-opacity: 1; - border-right-color: rgb(12 74 110 / var(--tw-border-opacity)); -} .border-r-blue-50{ --tw-border-opacity: 1; border-right-color: rgb(242 248 251 / var(--tw-border-opacity)); @@ -22510,46 +19690,6 @@ input[type="date"]::-webkit-inner-spin-button, --tw-border-opacity: 1; border-right-color: rgb(54 47 120 / var(--tw-border-opacity)); } -.border-r-violet-50{ - --tw-border-opacity: 1; - border-right-color: rgb(245 243 255 / var(--tw-border-opacity)); -} -.border-r-violet-100{ - --tw-border-opacity: 1; - border-right-color: rgb(237 233 254 / var(--tw-border-opacity)); -} -.border-r-violet-200{ - --tw-border-opacity: 1; - border-right-color: rgb(221 214 254 / var(--tw-border-opacity)); -} -.border-r-violet-300{ - --tw-border-opacity: 1; - border-right-color: rgb(196 181 253 / var(--tw-border-opacity)); -} -.border-r-violet-400{ - --tw-border-opacity: 1; - border-right-color: rgb(167 139 250 / var(--tw-border-opacity)); -} -.border-r-violet-500{ - --tw-border-opacity: 1; - border-right-color: rgb(139 92 246 / var(--tw-border-opacity)); -} -.border-r-violet-600{ - --tw-border-opacity: 1; - border-right-color: rgb(124 58 237 / var(--tw-border-opacity)); -} -.border-r-violet-700{ - --tw-border-opacity: 1; - border-right-color: rgb(109 40 217 / var(--tw-border-opacity)); -} -.border-r-violet-800{ - --tw-border-opacity: 1; - border-right-color: rgb(91 33 182 / var(--tw-border-opacity)); -} -.border-r-violet-900{ - --tw-border-opacity: 1; - border-right-color: rgb(76 29 149 / var(--tw-border-opacity)); -} .border-r-purple-50{ --tw-border-opacity: 1; border-right-color: rgb(247 247 249 / var(--tw-border-opacity)); @@ -22594,46 +19734,6 @@ input[type="date"]::-webkit-inner-spin-button, --tw-border-opacity: 1; border-right-color: rgb(85 88 139 / var(--tw-border-opacity)); } -.border-r-fuchsia-50{ - --tw-border-opacity: 1; - border-right-color: rgb(253 244 255 / var(--tw-border-opacity)); -} -.border-r-fuchsia-100{ - --tw-border-opacity: 1; - border-right-color: rgb(250 232 255 / var(--tw-border-opacity)); -} -.border-r-fuchsia-200{ - --tw-border-opacity: 1; - border-right-color: rgb(245 208 254 / var(--tw-border-opacity)); -} -.border-r-fuchsia-300{ - --tw-border-opacity: 1; - border-right-color: rgb(240 171 252 / var(--tw-border-opacity)); -} -.border-r-fuchsia-400{ - --tw-border-opacity: 1; - border-right-color: rgb(232 121 249 / var(--tw-border-opacity)); -} -.border-r-fuchsia-500{ - --tw-border-opacity: 1; - border-right-color: rgb(217 70 239 / var(--tw-border-opacity)); -} -.border-r-fuchsia-600{ - --tw-border-opacity: 1; - border-right-color: rgb(192 38 211 / var(--tw-border-opacity)); -} -.border-r-fuchsia-700{ - --tw-border-opacity: 1; - border-right-color: rgb(162 28 175 / var(--tw-border-opacity)); -} -.border-r-fuchsia-800{ - --tw-border-opacity: 1; - border-right-color: rgb(134 25 143 / var(--tw-border-opacity)); -} -.border-r-fuchsia-900{ - --tw-border-opacity: 1; - border-right-color: rgb(112 26 117 / var(--tw-border-opacity)); -} .border-r-pink-50{ --tw-border-opacity: 1; border-right-color: rgb(253 242 248 / var(--tw-border-opacity)); @@ -22674,6 +19774,30 @@ input[type="date"]::-webkit-inner-spin-button, --tw-border-opacity: 1; border-right-color: rgb(117 26 61 / var(--tw-border-opacity)); } +.border-r-lilac-100{ + --tw-border-opacity: 1; + border-right-color: rgb(245 247 250 / var(--tw-border-opacity)); +} +.border-r-lilac-300{ + --tw-border-opacity: 1; + border-right-color: rgb(237 240 252 / var(--tw-border-opacity)); +} +.border-r-lilac-900{ + --tw-border-opacity: 1; + border-right-color: rgb(220 226 249 / var(--tw-border-opacity)); +} +.border-r-lilac{ + --tw-border-opacity: 1; + border-right-color: rgb(248 249 254 / var(--tw-border-opacity)); +} +.border-r-golden-900{ + --tw-border-opacity: 1; + border-right-color: rgb(191 184 130 / var(--tw-border-opacity)); +} +.border-r-golden{ + --tw-border-opacity: 1; + border-right-color: rgb(209 201 137 / var(--tw-border-opacity)); +} .border-r-rose-50{ --tw-border-opacity: 1; border-right-color: rgb(255 241 242 / var(--tw-border-opacity)); @@ -22718,30 +19842,6 @@ input[type="date"]::-webkit-inner-spin-button, --tw-border-opacity: 1; border-right-color: rgb(244 63 94 / var(--tw-border-opacity)); } -.border-r-lilac-100{ - --tw-border-opacity: 1; - border-right-color: rgb(245 247 250 / var(--tw-border-opacity)); -} -.border-r-lilac-300{ - --tw-border-opacity: 1; - border-right-color: rgb(237 240 252 / var(--tw-border-opacity)); -} -.border-r-lilac-900{ - --tw-border-opacity: 1; - border-right-color: rgb(220 226 249 / var(--tw-border-opacity)); -} -.border-r-lilac{ - --tw-border-opacity: 1; - border-right-color: rgb(248 249 254 / var(--tw-border-opacity)); -} -.border-r-golden-900{ - --tw-border-opacity: 1; - border-right-color: rgb(191 184 130 / var(--tw-border-opacity)); -} -.border-r-golden{ - --tw-border-opacity: 1; - border-right-color: rgb(209 201 137 / var(--tw-border-opacity)); -} .border-r-status-success{ --tw-border-opacity: 1; border-right-color: rgb(241 246 238 / var(--tw-border-opacity)); @@ -22833,15 +19933,13 @@ input[type="date"]::-webkit-inner-spin-button, --tw-border-opacity: 1; border-right-color: rgb(147 95 7 / var(--tw-border-opacity)); } -.border-b-inherit{ - border-bottom-color: inherit; -} -.border-b-current{ - border-bottom-color: currentColor; -} .border-b-transparent{ border-bottom-color: transparent; } +.border-b-white{ + --tw-border-opacity: 1; + border-bottom-color: rgb(255 255 255 / var(--tw-border-opacity)); +} .border-b-black-50{ --tw-border-opacity: 1; border-bottom-color: rgb(246 246 246 / var(--tw-border-opacity)); @@ -22886,50 +19984,6 @@ input[type="date"]::-webkit-inner-spin-button, --tw-border-opacity: 1; border-bottom-color: rgb(66 66 66 / var(--tw-border-opacity)); } -.border-b-white{ - --tw-border-opacity: 1; - border-bottom-color: rgb(255 255 255 / var(--tw-border-opacity)); -} -.border-b-slate-50{ - --tw-border-opacity: 1; - border-bottom-color: rgb(248 250 252 / var(--tw-border-opacity)); -} -.border-b-slate-100{ - --tw-border-opacity: 1; - border-bottom-color: rgb(241 245 249 / var(--tw-border-opacity)); -} -.border-b-slate-200{ - --tw-border-opacity: 1; - border-bottom-color: rgb(226 232 240 / var(--tw-border-opacity)); -} -.border-b-slate-300{ - --tw-border-opacity: 1; - border-bottom-color: rgb(203 213 225 / var(--tw-border-opacity)); -} -.border-b-slate-400{ - --tw-border-opacity: 1; - border-bottom-color: rgb(148 163 184 / var(--tw-border-opacity)); -} -.border-b-slate-500{ - --tw-border-opacity: 1; - border-bottom-color: rgb(100 116 139 / var(--tw-border-opacity)); -} -.border-b-slate-600{ - --tw-border-opacity: 1; - border-bottom-color: rgb(71 85 105 / var(--tw-border-opacity)); -} -.border-b-slate-700{ - --tw-border-opacity: 1; - border-bottom-color: rgb(51 65 85 / var(--tw-border-opacity)); -} -.border-b-slate-800{ - --tw-border-opacity: 1; - border-bottom-color: rgb(30 41 59 / var(--tw-border-opacity)); -} -.border-b-slate-900{ - --tw-border-opacity: 1; - border-bottom-color: rgb(15 23 42 / var(--tw-border-opacity)); -} .border-b-gray-50{ --tw-border-opacity: 1; border-bottom-color: rgb(249 250 251 / var(--tw-border-opacity)); @@ -22970,126 +20024,6 @@ input[type="date"]::-webkit-inner-spin-button, --tw-border-opacity: 1; border-bottom-color: rgb(17 24 39 / var(--tw-border-opacity)); } -.border-b-zinc-50{ - --tw-border-opacity: 1; - border-bottom-color: rgb(250 250 250 / var(--tw-border-opacity)); -} -.border-b-zinc-100{ - --tw-border-opacity: 1; - border-bottom-color: rgb(244 244 245 / var(--tw-border-opacity)); -} -.border-b-zinc-200{ - --tw-border-opacity: 1; - border-bottom-color: rgb(228 228 231 / var(--tw-border-opacity)); -} -.border-b-zinc-300{ - --tw-border-opacity: 1; - border-bottom-color: rgb(212 212 216 / var(--tw-border-opacity)); -} -.border-b-zinc-400{ - --tw-border-opacity: 1; - border-bottom-color: rgb(161 161 170 / var(--tw-border-opacity)); -} -.border-b-zinc-500{ - --tw-border-opacity: 1; - border-bottom-color: rgb(113 113 122 / var(--tw-border-opacity)); -} -.border-b-zinc-600{ - --tw-border-opacity: 1; - border-bottom-color: rgb(82 82 91 / var(--tw-border-opacity)); -} -.border-b-zinc-700{ - --tw-border-opacity: 1; - border-bottom-color: rgb(63 63 70 / var(--tw-border-opacity)); -} -.border-b-zinc-800{ - --tw-border-opacity: 1; - border-bottom-color: rgb(39 39 42 / var(--tw-border-opacity)); -} -.border-b-zinc-900{ - --tw-border-opacity: 1; - border-bottom-color: rgb(24 24 27 / var(--tw-border-opacity)); -} -.border-b-neutral-50{ - --tw-border-opacity: 1; - border-bottom-color: rgb(250 250 250 / var(--tw-border-opacity)); -} -.border-b-neutral-100{ - --tw-border-opacity: 1; - border-bottom-color: rgb(245 245 245 / var(--tw-border-opacity)); -} -.border-b-neutral-200{ - --tw-border-opacity: 1; - border-bottom-color: rgb(229 229 229 / var(--tw-border-opacity)); -} -.border-b-neutral-300{ - --tw-border-opacity: 1; - border-bottom-color: rgb(212 212 212 / var(--tw-border-opacity)); -} -.border-b-neutral-400{ - --tw-border-opacity: 1; - border-bottom-color: rgb(163 163 163 / var(--tw-border-opacity)); -} -.border-b-neutral-500{ - --tw-border-opacity: 1; - border-bottom-color: rgb(115 115 115 / var(--tw-border-opacity)); -} -.border-b-neutral-600{ - --tw-border-opacity: 1; - border-bottom-color: rgb(82 82 82 / var(--tw-border-opacity)); -} -.border-b-neutral-700{ - --tw-border-opacity: 1; - border-bottom-color: rgb(64 64 64 / var(--tw-border-opacity)); -} -.border-b-neutral-800{ - --tw-border-opacity: 1; - border-bottom-color: rgb(38 38 38 / var(--tw-border-opacity)); -} -.border-b-neutral-900{ - --tw-border-opacity: 1; - border-bottom-color: rgb(23 23 23 / var(--tw-border-opacity)); -} -.border-b-stone-50{ - --tw-border-opacity: 1; - border-bottom-color: rgb(250 250 249 / var(--tw-border-opacity)); -} -.border-b-stone-100{ - --tw-border-opacity: 1; - border-bottom-color: rgb(245 245 244 / var(--tw-border-opacity)); -} -.border-b-stone-200{ - --tw-border-opacity: 1; - border-bottom-color: rgb(231 229 228 / var(--tw-border-opacity)); -} -.border-b-stone-300{ - --tw-border-opacity: 1; - border-bottom-color: rgb(214 211 209 / var(--tw-border-opacity)); -} -.border-b-stone-400{ - --tw-border-opacity: 1; - border-bottom-color: rgb(168 162 158 / var(--tw-border-opacity)); -} -.border-b-stone-500{ - --tw-border-opacity: 1; - border-bottom-color: rgb(120 113 108 / var(--tw-border-opacity)); -} -.border-b-stone-600{ - --tw-border-opacity: 1; - border-bottom-color: rgb(87 83 78 / var(--tw-border-opacity)); -} -.border-b-stone-700{ - --tw-border-opacity: 1; - border-bottom-color: rgb(68 64 60 / var(--tw-border-opacity)); -} -.border-b-stone-800{ - --tw-border-opacity: 1; - border-bottom-color: rgb(41 37 36 / var(--tw-border-opacity)); -} -.border-b-stone-900{ - --tw-border-opacity: 1; - border-bottom-color: rgb(28 25 23 / var(--tw-border-opacity)); -} .border-b-red-50{ --tw-border-opacity: 1; border-bottom-color: rgb(252 242 242 / var(--tw-border-opacity)); @@ -23178,46 +20112,6 @@ input[type="date"]::-webkit-inner-spin-button, --tw-border-opacity: 1; border-bottom-color: rgb(245 158 11 / var(--tw-border-opacity)); } -.border-b-amber-50{ - --tw-border-opacity: 1; - border-bottom-color: rgb(255 251 235 / var(--tw-border-opacity)); -} -.border-b-amber-100{ - --tw-border-opacity: 1; - border-bottom-color: rgb(254 243 199 / var(--tw-border-opacity)); -} -.border-b-amber-200{ - --tw-border-opacity: 1; - border-bottom-color: rgb(253 230 138 / var(--tw-border-opacity)); -} -.border-b-amber-300{ - --tw-border-opacity: 1; - border-bottom-color: rgb(252 211 77 / var(--tw-border-opacity)); -} -.border-b-amber-400{ - --tw-border-opacity: 1; - border-bottom-color: rgb(251 191 36 / var(--tw-border-opacity)); -} -.border-b-amber-500{ - --tw-border-opacity: 1; - border-bottom-color: rgb(245 158 11 / var(--tw-border-opacity)); -} -.border-b-amber-600{ - --tw-border-opacity: 1; - border-bottom-color: rgb(217 119 6 / var(--tw-border-opacity)); -} -.border-b-amber-700{ - --tw-border-opacity: 1; - border-bottom-color: rgb(180 83 9 / var(--tw-border-opacity)); -} -.border-b-amber-800{ - --tw-border-opacity: 1; - border-bottom-color: rgb(146 64 14 / var(--tw-border-opacity)); -} -.border-b-amber-900{ - --tw-border-opacity: 1; - border-bottom-color: rgb(120 53 15 / var(--tw-border-opacity)); -} .border-b-yellow-50{ --tw-border-opacity: 1; border-bottom-color: rgb(253 253 234 / var(--tw-border-opacity)); @@ -23258,46 +20152,6 @@ input[type="date"]::-webkit-inner-spin-button, --tw-border-opacity: 1; border-bottom-color: rgb(99 49 18 / var(--tw-border-opacity)); } -.border-b-lime-50{ - --tw-border-opacity: 1; - border-bottom-color: rgb(247 254 231 / var(--tw-border-opacity)); -} -.border-b-lime-100{ - --tw-border-opacity: 1; - border-bottom-color: rgb(236 252 203 / var(--tw-border-opacity)); -} -.border-b-lime-200{ - --tw-border-opacity: 1; - border-bottom-color: rgb(217 249 157 / var(--tw-border-opacity)); -} -.border-b-lime-300{ - --tw-border-opacity: 1; - border-bottom-color: rgb(190 242 100 / var(--tw-border-opacity)); -} -.border-b-lime-400{ - --tw-border-opacity: 1; - border-bottom-color: rgb(163 230 53 / var(--tw-border-opacity)); -} -.border-b-lime-500{ - --tw-border-opacity: 1; - border-bottom-color: rgb(132 204 22 / var(--tw-border-opacity)); -} -.border-b-lime-600{ - --tw-border-opacity: 1; - border-bottom-color: rgb(101 163 13 / var(--tw-border-opacity)); -} -.border-b-lime-700{ - --tw-border-opacity: 1; - border-bottom-color: rgb(77 124 15 / var(--tw-border-opacity)); -} -.border-b-lime-800{ - --tw-border-opacity: 1; - border-bottom-color: rgb(63 98 18 / var(--tw-border-opacity)); -} -.border-b-lime-900{ - --tw-border-opacity: 1; - border-bottom-color: rgb(54 83 20 / var(--tw-border-opacity)); -} .border-b-green-50{ --tw-border-opacity: 1; border-bottom-color: rgb(248 250 246 / var(--tw-border-opacity)); @@ -23342,46 +20196,6 @@ input[type="date"]::-webkit-inner-spin-button, --tw-border-opacity: 1; border-bottom-color: rgb(110 161 82 / var(--tw-border-opacity)); } -.border-b-emerald-50{ - --tw-border-opacity: 1; - border-bottom-color: rgb(236 253 245 / var(--tw-border-opacity)); -} -.border-b-emerald-100{ - --tw-border-opacity: 1; - border-bottom-color: rgb(209 250 229 / var(--tw-border-opacity)); -} -.border-b-emerald-200{ - --tw-border-opacity: 1; - border-bottom-color: rgb(167 243 208 / var(--tw-border-opacity)); -} -.border-b-emerald-300{ - --tw-border-opacity: 1; - border-bottom-color: rgb(110 231 183 / var(--tw-border-opacity)); -} -.border-b-emerald-400{ - --tw-border-opacity: 1; - border-bottom-color: rgb(52 211 153 / var(--tw-border-opacity)); -} -.border-b-emerald-500{ - --tw-border-opacity: 1; - border-bottom-color: rgb(16 185 129 / var(--tw-border-opacity)); -} -.border-b-emerald-600{ - --tw-border-opacity: 1; - border-bottom-color: rgb(5 150 105 / var(--tw-border-opacity)); -} -.border-b-emerald-700{ - --tw-border-opacity: 1; - border-bottom-color: rgb(4 120 87 / var(--tw-border-opacity)); -} -.border-b-emerald-800{ - --tw-border-opacity: 1; - border-bottom-color: rgb(6 95 70 / var(--tw-border-opacity)); -} -.border-b-emerald-900{ - --tw-border-opacity: 1; - border-bottom-color: rgb(6 78 59 / var(--tw-border-opacity)); -} .border-b-teal-50{ --tw-border-opacity: 1; border-bottom-color: rgb(237 250 250 / var(--tw-border-opacity)); @@ -23422,86 +20236,6 @@ input[type="date"]::-webkit-inner-spin-button, --tw-border-opacity: 1; border-bottom-color: rgb(1 68 81 / var(--tw-border-opacity)); } -.border-b-cyan-50{ - --tw-border-opacity: 1; - border-bottom-color: rgb(236 254 255 / var(--tw-border-opacity)); -} -.border-b-cyan-100{ - --tw-border-opacity: 1; - border-bottom-color: rgb(207 250 254 / var(--tw-border-opacity)); -} -.border-b-cyan-200{ - --tw-border-opacity: 1; - border-bottom-color: rgb(165 243 252 / var(--tw-border-opacity)); -} -.border-b-cyan-300{ - --tw-border-opacity: 1; - border-bottom-color: rgb(103 232 249 / var(--tw-border-opacity)); -} -.border-b-cyan-400{ - --tw-border-opacity: 1; - border-bottom-color: rgb(34 211 238 / var(--tw-border-opacity)); -} -.border-b-cyan-500{ - --tw-border-opacity: 1; - border-bottom-color: rgb(6 182 212 / var(--tw-border-opacity)); -} -.border-b-cyan-600{ - --tw-border-opacity: 1; - border-bottom-color: rgb(8 145 178 / var(--tw-border-opacity)); -} -.border-b-cyan-700{ - --tw-border-opacity: 1; - border-bottom-color: rgb(14 116 144 / var(--tw-border-opacity)); -} -.border-b-cyan-800{ - --tw-border-opacity: 1; - border-bottom-color: rgb(21 94 117 / var(--tw-border-opacity)); -} -.border-b-cyan-900{ - --tw-border-opacity: 1; - border-bottom-color: rgb(22 78 99 / var(--tw-border-opacity)); -} -.border-b-sky-50{ - --tw-border-opacity: 1; - border-bottom-color: rgb(240 249 255 / var(--tw-border-opacity)); -} -.border-b-sky-100{ - --tw-border-opacity: 1; - border-bottom-color: rgb(224 242 254 / var(--tw-border-opacity)); -} -.border-b-sky-200{ - --tw-border-opacity: 1; - border-bottom-color: rgb(186 230 253 / var(--tw-border-opacity)); -} -.border-b-sky-300{ - --tw-border-opacity: 1; - border-bottom-color: rgb(125 211 252 / var(--tw-border-opacity)); -} -.border-b-sky-400{ - --tw-border-opacity: 1; - border-bottom-color: rgb(56 189 248 / var(--tw-border-opacity)); -} -.border-b-sky-500{ - --tw-border-opacity: 1; - border-bottom-color: rgb(14 165 233 / var(--tw-border-opacity)); -} -.border-b-sky-600{ - --tw-border-opacity: 1; - border-bottom-color: rgb(2 132 199 / var(--tw-border-opacity)); -} -.border-b-sky-700{ - --tw-border-opacity: 1; - border-bottom-color: rgb(3 105 161 / var(--tw-border-opacity)); -} -.border-b-sky-800{ - --tw-border-opacity: 1; - border-bottom-color: rgb(7 89 133 / var(--tw-border-opacity)); -} -.border-b-sky-900{ - --tw-border-opacity: 1; - border-bottom-color: rgb(12 74 110 / var(--tw-border-opacity)); -} .border-b-blue-50{ --tw-border-opacity: 1; border-bottom-color: rgb(242 248 251 / var(--tw-border-opacity)); @@ -23586,46 +20320,6 @@ input[type="date"]::-webkit-inner-spin-button, --tw-border-opacity: 1; border-bottom-color: rgb(54 47 120 / var(--tw-border-opacity)); } -.border-b-violet-50{ - --tw-border-opacity: 1; - border-bottom-color: rgb(245 243 255 / var(--tw-border-opacity)); -} -.border-b-violet-100{ - --tw-border-opacity: 1; - border-bottom-color: rgb(237 233 254 / var(--tw-border-opacity)); -} -.border-b-violet-200{ - --tw-border-opacity: 1; - border-bottom-color: rgb(221 214 254 / var(--tw-border-opacity)); -} -.border-b-violet-300{ - --tw-border-opacity: 1; - border-bottom-color: rgb(196 181 253 / var(--tw-border-opacity)); -} -.border-b-violet-400{ - --tw-border-opacity: 1; - border-bottom-color: rgb(167 139 250 / var(--tw-border-opacity)); -} -.border-b-violet-500{ - --tw-border-opacity: 1; - border-bottom-color: rgb(139 92 246 / var(--tw-border-opacity)); -} -.border-b-violet-600{ - --tw-border-opacity: 1; - border-bottom-color: rgb(124 58 237 / var(--tw-border-opacity)); -} -.border-b-violet-700{ - --tw-border-opacity: 1; - border-bottom-color: rgb(109 40 217 / var(--tw-border-opacity)); -} -.border-b-violet-800{ - --tw-border-opacity: 1; - border-bottom-color: rgb(91 33 182 / var(--tw-border-opacity)); -} -.border-b-violet-900{ - --tw-border-opacity: 1; - border-bottom-color: rgb(76 29 149 / var(--tw-border-opacity)); -} .border-b-purple-50{ --tw-border-opacity: 1; border-bottom-color: rgb(247 247 249 / var(--tw-border-opacity)); @@ -23670,46 +20364,6 @@ input[type="date"]::-webkit-inner-spin-button, --tw-border-opacity: 1; border-bottom-color: rgb(85 88 139 / var(--tw-border-opacity)); } -.border-b-fuchsia-50{ - --tw-border-opacity: 1; - border-bottom-color: rgb(253 244 255 / var(--tw-border-opacity)); -} -.border-b-fuchsia-100{ - --tw-border-opacity: 1; - border-bottom-color: rgb(250 232 255 / var(--tw-border-opacity)); -} -.border-b-fuchsia-200{ - --tw-border-opacity: 1; - border-bottom-color: rgb(245 208 254 / var(--tw-border-opacity)); -} -.border-b-fuchsia-300{ - --tw-border-opacity: 1; - border-bottom-color: rgb(240 171 252 / var(--tw-border-opacity)); -} -.border-b-fuchsia-400{ - --tw-border-opacity: 1; - border-bottom-color: rgb(232 121 249 / var(--tw-border-opacity)); -} -.border-b-fuchsia-500{ - --tw-border-opacity: 1; - border-bottom-color: rgb(217 70 239 / var(--tw-border-opacity)); -} -.border-b-fuchsia-600{ - --tw-border-opacity: 1; - border-bottom-color: rgb(192 38 211 / var(--tw-border-opacity)); -} -.border-b-fuchsia-700{ - --tw-border-opacity: 1; - border-bottom-color: rgb(162 28 175 / var(--tw-border-opacity)); -} -.border-b-fuchsia-800{ - --tw-border-opacity: 1; - border-bottom-color: rgb(134 25 143 / var(--tw-border-opacity)); -} -.border-b-fuchsia-900{ - --tw-border-opacity: 1; - border-bottom-color: rgb(112 26 117 / var(--tw-border-opacity)); -} .border-b-pink-50{ --tw-border-opacity: 1; border-bottom-color: rgb(253 242 248 / var(--tw-border-opacity)); @@ -23750,6 +20404,30 @@ input[type="date"]::-webkit-inner-spin-button, --tw-border-opacity: 1; border-bottom-color: rgb(117 26 61 / var(--tw-border-opacity)); } +.border-b-lilac-100{ + --tw-border-opacity: 1; + border-bottom-color: rgb(245 247 250 / var(--tw-border-opacity)); +} +.border-b-lilac-300{ + --tw-border-opacity: 1; + border-bottom-color: rgb(237 240 252 / var(--tw-border-opacity)); +} +.border-b-lilac-900{ + --tw-border-opacity: 1; + border-bottom-color: rgb(220 226 249 / var(--tw-border-opacity)); +} +.border-b-lilac{ + --tw-border-opacity: 1; + border-bottom-color: rgb(248 249 254 / var(--tw-border-opacity)); +} +.border-b-golden-900{ + --tw-border-opacity: 1; + border-bottom-color: rgb(191 184 130 / var(--tw-border-opacity)); +} +.border-b-golden{ + --tw-border-opacity: 1; + border-bottom-color: rgb(209 201 137 / var(--tw-border-opacity)); +} .border-b-rose-50{ --tw-border-opacity: 1; border-bottom-color: rgb(255 241 242 / var(--tw-border-opacity)); @@ -23794,30 +20472,6 @@ input[type="date"]::-webkit-inner-spin-button, --tw-border-opacity: 1; border-bottom-color: rgb(244 63 94 / var(--tw-border-opacity)); } -.border-b-lilac-100{ - --tw-border-opacity: 1; - border-bottom-color: rgb(245 247 250 / var(--tw-border-opacity)); -} -.border-b-lilac-300{ - --tw-border-opacity: 1; - border-bottom-color: rgb(237 240 252 / var(--tw-border-opacity)); -} -.border-b-lilac-900{ - --tw-border-opacity: 1; - border-bottom-color: rgb(220 226 249 / var(--tw-border-opacity)); -} -.border-b-lilac{ - --tw-border-opacity: 1; - border-bottom-color: rgb(248 249 254 / var(--tw-border-opacity)); -} -.border-b-golden-900{ - --tw-border-opacity: 1; - border-bottom-color: rgb(191 184 130 / var(--tw-border-opacity)); -} -.border-b-golden{ - --tw-border-opacity: 1; - border-bottom-color: rgb(209 201 137 / var(--tw-border-opacity)); -} .border-b-status-success{ --tw-border-opacity: 1; border-bottom-color: rgb(241 246 238 / var(--tw-border-opacity)); @@ -23909,15 +20563,13 @@ input[type="date"]::-webkit-inner-spin-button, --tw-border-opacity: 1; border-bottom-color: rgb(147 95 7 / var(--tw-border-opacity)); } -.border-l-inherit{ - border-left-color: inherit; -} -.border-l-current{ - border-left-color: currentColor; -} .border-l-transparent{ border-left-color: transparent; } +.border-l-white{ + --tw-border-opacity: 1; + border-left-color: rgb(255 255 255 / var(--tw-border-opacity)); +} .border-l-black-50{ --tw-border-opacity: 1; border-left-color: rgb(246 246 246 / var(--tw-border-opacity)); @@ -23962,50 +20614,6 @@ input[type="date"]::-webkit-inner-spin-button, --tw-border-opacity: 1; border-left-color: rgb(66 66 66 / var(--tw-border-opacity)); } -.border-l-white{ - --tw-border-opacity: 1; - border-left-color: rgb(255 255 255 / var(--tw-border-opacity)); -} -.border-l-slate-50{ - --tw-border-opacity: 1; - border-left-color: rgb(248 250 252 / var(--tw-border-opacity)); -} -.border-l-slate-100{ - --tw-border-opacity: 1; - border-left-color: rgb(241 245 249 / var(--tw-border-opacity)); -} -.border-l-slate-200{ - --tw-border-opacity: 1; - border-left-color: rgb(226 232 240 / var(--tw-border-opacity)); -} -.border-l-slate-300{ - --tw-border-opacity: 1; - border-left-color: rgb(203 213 225 / var(--tw-border-opacity)); -} -.border-l-slate-400{ - --tw-border-opacity: 1; - border-left-color: rgb(148 163 184 / var(--tw-border-opacity)); -} -.border-l-slate-500{ - --tw-border-opacity: 1; - border-left-color: rgb(100 116 139 / var(--tw-border-opacity)); -} -.border-l-slate-600{ - --tw-border-opacity: 1; - border-left-color: rgb(71 85 105 / var(--tw-border-opacity)); -} -.border-l-slate-700{ - --tw-border-opacity: 1; - border-left-color: rgb(51 65 85 / var(--tw-border-opacity)); -} -.border-l-slate-800{ - --tw-border-opacity: 1; - border-left-color: rgb(30 41 59 / var(--tw-border-opacity)); -} -.border-l-slate-900{ - --tw-border-opacity: 1; - border-left-color: rgb(15 23 42 / var(--tw-border-opacity)); -} .border-l-gray-50{ --tw-border-opacity: 1; border-left-color: rgb(249 250 251 / var(--tw-border-opacity)); @@ -24046,126 +20654,6 @@ input[type="date"]::-webkit-inner-spin-button, --tw-border-opacity: 1; border-left-color: rgb(17 24 39 / var(--tw-border-opacity)); } -.border-l-zinc-50{ - --tw-border-opacity: 1; - border-left-color: rgb(250 250 250 / var(--tw-border-opacity)); -} -.border-l-zinc-100{ - --tw-border-opacity: 1; - border-left-color: rgb(244 244 245 / var(--tw-border-opacity)); -} -.border-l-zinc-200{ - --tw-border-opacity: 1; - border-left-color: rgb(228 228 231 / var(--tw-border-opacity)); -} -.border-l-zinc-300{ - --tw-border-opacity: 1; - border-left-color: rgb(212 212 216 / var(--tw-border-opacity)); -} -.border-l-zinc-400{ - --tw-border-opacity: 1; - border-left-color: rgb(161 161 170 / var(--tw-border-opacity)); -} -.border-l-zinc-500{ - --tw-border-opacity: 1; - border-left-color: rgb(113 113 122 / var(--tw-border-opacity)); -} -.border-l-zinc-600{ - --tw-border-opacity: 1; - border-left-color: rgb(82 82 91 / var(--tw-border-opacity)); -} -.border-l-zinc-700{ - --tw-border-opacity: 1; - border-left-color: rgb(63 63 70 / var(--tw-border-opacity)); -} -.border-l-zinc-800{ - --tw-border-opacity: 1; - border-left-color: rgb(39 39 42 / var(--tw-border-opacity)); -} -.border-l-zinc-900{ - --tw-border-opacity: 1; - border-left-color: rgb(24 24 27 / var(--tw-border-opacity)); -} -.border-l-neutral-50{ - --tw-border-opacity: 1; - border-left-color: rgb(250 250 250 / var(--tw-border-opacity)); -} -.border-l-neutral-100{ - --tw-border-opacity: 1; - border-left-color: rgb(245 245 245 / var(--tw-border-opacity)); -} -.border-l-neutral-200{ - --tw-border-opacity: 1; - border-left-color: rgb(229 229 229 / var(--tw-border-opacity)); -} -.border-l-neutral-300{ - --tw-border-opacity: 1; - border-left-color: rgb(212 212 212 / var(--tw-border-opacity)); -} -.border-l-neutral-400{ - --tw-border-opacity: 1; - border-left-color: rgb(163 163 163 / var(--tw-border-opacity)); -} -.border-l-neutral-500{ - --tw-border-opacity: 1; - border-left-color: rgb(115 115 115 / var(--tw-border-opacity)); -} -.border-l-neutral-600{ - --tw-border-opacity: 1; - border-left-color: rgb(82 82 82 / var(--tw-border-opacity)); -} -.border-l-neutral-700{ - --tw-border-opacity: 1; - border-left-color: rgb(64 64 64 / var(--tw-border-opacity)); -} -.border-l-neutral-800{ - --tw-border-opacity: 1; - border-left-color: rgb(38 38 38 / var(--tw-border-opacity)); -} -.border-l-neutral-900{ - --tw-border-opacity: 1; - border-left-color: rgb(23 23 23 / var(--tw-border-opacity)); -} -.border-l-stone-50{ - --tw-border-opacity: 1; - border-left-color: rgb(250 250 249 / var(--tw-border-opacity)); -} -.border-l-stone-100{ - --tw-border-opacity: 1; - border-left-color: rgb(245 245 244 / var(--tw-border-opacity)); -} -.border-l-stone-200{ - --tw-border-opacity: 1; - border-left-color: rgb(231 229 228 / var(--tw-border-opacity)); -} -.border-l-stone-300{ - --tw-border-opacity: 1; - border-left-color: rgb(214 211 209 / var(--tw-border-opacity)); -} -.border-l-stone-400{ - --tw-border-opacity: 1; - border-left-color: rgb(168 162 158 / var(--tw-border-opacity)); -} -.border-l-stone-500{ - --tw-border-opacity: 1; - border-left-color: rgb(120 113 108 / var(--tw-border-opacity)); -} -.border-l-stone-600{ - --tw-border-opacity: 1; - border-left-color: rgb(87 83 78 / var(--tw-border-opacity)); -} -.border-l-stone-700{ - --tw-border-opacity: 1; - border-left-color: rgb(68 64 60 / var(--tw-border-opacity)); -} -.border-l-stone-800{ - --tw-border-opacity: 1; - border-left-color: rgb(41 37 36 / var(--tw-border-opacity)); -} -.border-l-stone-900{ - --tw-border-opacity: 1; - border-left-color: rgb(28 25 23 / var(--tw-border-opacity)); -} .border-l-red-50{ --tw-border-opacity: 1; border-left-color: rgb(252 242 242 / var(--tw-border-opacity)); @@ -24254,46 +20742,6 @@ input[type="date"]::-webkit-inner-spin-button, --tw-border-opacity: 1; border-left-color: rgb(245 158 11 / var(--tw-border-opacity)); } -.border-l-amber-50{ - --tw-border-opacity: 1; - border-left-color: rgb(255 251 235 / var(--tw-border-opacity)); -} -.border-l-amber-100{ - --tw-border-opacity: 1; - border-left-color: rgb(254 243 199 / var(--tw-border-opacity)); -} -.border-l-amber-200{ - --tw-border-opacity: 1; - border-left-color: rgb(253 230 138 / var(--tw-border-opacity)); -} -.border-l-amber-300{ - --tw-border-opacity: 1; - border-left-color: rgb(252 211 77 / var(--tw-border-opacity)); -} -.border-l-amber-400{ - --tw-border-opacity: 1; - border-left-color: rgb(251 191 36 / var(--tw-border-opacity)); -} -.border-l-amber-500{ - --tw-border-opacity: 1; - border-left-color: rgb(245 158 11 / var(--tw-border-opacity)); -} -.border-l-amber-600{ - --tw-border-opacity: 1; - border-left-color: rgb(217 119 6 / var(--tw-border-opacity)); -} -.border-l-amber-700{ - --tw-border-opacity: 1; - border-left-color: rgb(180 83 9 / var(--tw-border-opacity)); -} -.border-l-amber-800{ - --tw-border-opacity: 1; - border-left-color: rgb(146 64 14 / var(--tw-border-opacity)); -} -.border-l-amber-900{ - --tw-border-opacity: 1; - border-left-color: rgb(120 53 15 / var(--tw-border-opacity)); -} .border-l-yellow-50{ --tw-border-opacity: 1; border-left-color: rgb(253 253 234 / var(--tw-border-opacity)); @@ -24334,46 +20782,6 @@ input[type="date"]::-webkit-inner-spin-button, --tw-border-opacity: 1; border-left-color: rgb(99 49 18 / var(--tw-border-opacity)); } -.border-l-lime-50{ - --tw-border-opacity: 1; - border-left-color: rgb(247 254 231 / var(--tw-border-opacity)); -} -.border-l-lime-100{ - --tw-border-opacity: 1; - border-left-color: rgb(236 252 203 / var(--tw-border-opacity)); -} -.border-l-lime-200{ - --tw-border-opacity: 1; - border-left-color: rgb(217 249 157 / var(--tw-border-opacity)); -} -.border-l-lime-300{ - --tw-border-opacity: 1; - border-left-color: rgb(190 242 100 / var(--tw-border-opacity)); -} -.border-l-lime-400{ - --tw-border-opacity: 1; - border-left-color: rgb(163 230 53 / var(--tw-border-opacity)); -} -.border-l-lime-500{ - --tw-border-opacity: 1; - border-left-color: rgb(132 204 22 / var(--tw-border-opacity)); -} -.border-l-lime-600{ - --tw-border-opacity: 1; - border-left-color: rgb(101 163 13 / var(--tw-border-opacity)); -} -.border-l-lime-700{ - --tw-border-opacity: 1; - border-left-color: rgb(77 124 15 / var(--tw-border-opacity)); -} -.border-l-lime-800{ - --tw-border-opacity: 1; - border-left-color: rgb(63 98 18 / var(--tw-border-opacity)); -} -.border-l-lime-900{ - --tw-border-opacity: 1; - border-left-color: rgb(54 83 20 / var(--tw-border-opacity)); -} .border-l-green-50{ --tw-border-opacity: 1; border-left-color: rgb(248 250 246 / var(--tw-border-opacity)); @@ -24418,46 +20826,6 @@ input[type="date"]::-webkit-inner-spin-button, --tw-border-opacity: 1; border-left-color: rgb(110 161 82 / var(--tw-border-opacity)); } -.border-l-emerald-50{ - --tw-border-opacity: 1; - border-left-color: rgb(236 253 245 / var(--tw-border-opacity)); -} -.border-l-emerald-100{ - --tw-border-opacity: 1; - border-left-color: rgb(209 250 229 / var(--tw-border-opacity)); -} -.border-l-emerald-200{ - --tw-border-opacity: 1; - border-left-color: rgb(167 243 208 / var(--tw-border-opacity)); -} -.border-l-emerald-300{ - --tw-border-opacity: 1; - border-left-color: rgb(110 231 183 / var(--tw-border-opacity)); -} -.border-l-emerald-400{ - --tw-border-opacity: 1; - border-left-color: rgb(52 211 153 / var(--tw-border-opacity)); -} -.border-l-emerald-500{ - --tw-border-opacity: 1; - border-left-color: rgb(16 185 129 / var(--tw-border-opacity)); -} -.border-l-emerald-600{ - --tw-border-opacity: 1; - border-left-color: rgb(5 150 105 / var(--tw-border-opacity)); -} -.border-l-emerald-700{ - --tw-border-opacity: 1; - border-left-color: rgb(4 120 87 / var(--tw-border-opacity)); -} -.border-l-emerald-800{ - --tw-border-opacity: 1; - border-left-color: rgb(6 95 70 / var(--tw-border-opacity)); -} -.border-l-emerald-900{ - --tw-border-opacity: 1; - border-left-color: rgb(6 78 59 / var(--tw-border-opacity)); -} .border-l-teal-50{ --tw-border-opacity: 1; border-left-color: rgb(237 250 250 / var(--tw-border-opacity)); @@ -24498,86 +20866,6 @@ input[type="date"]::-webkit-inner-spin-button, --tw-border-opacity: 1; border-left-color: rgb(1 68 81 / var(--tw-border-opacity)); } -.border-l-cyan-50{ - --tw-border-opacity: 1; - border-left-color: rgb(236 254 255 / var(--tw-border-opacity)); -} -.border-l-cyan-100{ - --tw-border-opacity: 1; - border-left-color: rgb(207 250 254 / var(--tw-border-opacity)); -} -.border-l-cyan-200{ - --tw-border-opacity: 1; - border-left-color: rgb(165 243 252 / var(--tw-border-opacity)); -} -.border-l-cyan-300{ - --tw-border-opacity: 1; - border-left-color: rgb(103 232 249 / var(--tw-border-opacity)); -} -.border-l-cyan-400{ - --tw-border-opacity: 1; - border-left-color: rgb(34 211 238 / var(--tw-border-opacity)); -} -.border-l-cyan-500{ - --tw-border-opacity: 1; - border-left-color: rgb(6 182 212 / var(--tw-border-opacity)); -} -.border-l-cyan-600{ - --tw-border-opacity: 1; - border-left-color: rgb(8 145 178 / var(--tw-border-opacity)); -} -.border-l-cyan-700{ - --tw-border-opacity: 1; - border-left-color: rgb(14 116 144 / var(--tw-border-opacity)); -} -.border-l-cyan-800{ - --tw-border-opacity: 1; - border-left-color: rgb(21 94 117 / var(--tw-border-opacity)); -} -.border-l-cyan-900{ - --tw-border-opacity: 1; - border-left-color: rgb(22 78 99 / var(--tw-border-opacity)); -} -.border-l-sky-50{ - --tw-border-opacity: 1; - border-left-color: rgb(240 249 255 / var(--tw-border-opacity)); -} -.border-l-sky-100{ - --tw-border-opacity: 1; - border-left-color: rgb(224 242 254 / var(--tw-border-opacity)); -} -.border-l-sky-200{ - --tw-border-opacity: 1; - border-left-color: rgb(186 230 253 / var(--tw-border-opacity)); -} -.border-l-sky-300{ - --tw-border-opacity: 1; - border-left-color: rgb(125 211 252 / var(--tw-border-opacity)); -} -.border-l-sky-400{ - --tw-border-opacity: 1; - border-left-color: rgb(56 189 248 / var(--tw-border-opacity)); -} -.border-l-sky-500{ - --tw-border-opacity: 1; - border-left-color: rgb(14 165 233 / var(--tw-border-opacity)); -} -.border-l-sky-600{ - --tw-border-opacity: 1; - border-left-color: rgb(2 132 199 / var(--tw-border-opacity)); -} -.border-l-sky-700{ - --tw-border-opacity: 1; - border-left-color: rgb(3 105 161 / var(--tw-border-opacity)); -} -.border-l-sky-800{ - --tw-border-opacity: 1; - border-left-color: rgb(7 89 133 / var(--tw-border-opacity)); -} -.border-l-sky-900{ - --tw-border-opacity: 1; - border-left-color: rgb(12 74 110 / var(--tw-border-opacity)); -} .border-l-blue-50{ --tw-border-opacity: 1; border-left-color: rgb(242 248 251 / var(--tw-border-opacity)); @@ -24662,46 +20950,6 @@ input[type="date"]::-webkit-inner-spin-button, --tw-border-opacity: 1; border-left-color: rgb(54 47 120 / var(--tw-border-opacity)); } -.border-l-violet-50{ - --tw-border-opacity: 1; - border-left-color: rgb(245 243 255 / var(--tw-border-opacity)); -} -.border-l-violet-100{ - --tw-border-opacity: 1; - border-left-color: rgb(237 233 254 / var(--tw-border-opacity)); -} -.border-l-violet-200{ - --tw-border-opacity: 1; - border-left-color: rgb(221 214 254 / var(--tw-border-opacity)); -} -.border-l-violet-300{ - --tw-border-opacity: 1; - border-left-color: rgb(196 181 253 / var(--tw-border-opacity)); -} -.border-l-violet-400{ - --tw-border-opacity: 1; - border-left-color: rgb(167 139 250 / var(--tw-border-opacity)); -} -.border-l-violet-500{ - --tw-border-opacity: 1; - border-left-color: rgb(139 92 246 / var(--tw-border-opacity)); -} -.border-l-violet-600{ - --tw-border-opacity: 1; - border-left-color: rgb(124 58 237 / var(--tw-border-opacity)); -} -.border-l-violet-700{ - --tw-border-opacity: 1; - border-left-color: rgb(109 40 217 / var(--tw-border-opacity)); -} -.border-l-violet-800{ - --tw-border-opacity: 1; - border-left-color: rgb(91 33 182 / var(--tw-border-opacity)); -} -.border-l-violet-900{ - --tw-border-opacity: 1; - border-left-color: rgb(76 29 149 / var(--tw-border-opacity)); -} .border-l-purple-50{ --tw-border-opacity: 1; border-left-color: rgb(247 247 249 / var(--tw-border-opacity)); @@ -24746,46 +20994,6 @@ input[type="date"]::-webkit-inner-spin-button, --tw-border-opacity: 1; border-left-color: rgb(85 88 139 / var(--tw-border-opacity)); } -.border-l-fuchsia-50{ - --tw-border-opacity: 1; - border-left-color: rgb(253 244 255 / var(--tw-border-opacity)); -} -.border-l-fuchsia-100{ - --tw-border-opacity: 1; - border-left-color: rgb(250 232 255 / var(--tw-border-opacity)); -} -.border-l-fuchsia-200{ - --tw-border-opacity: 1; - border-left-color: rgb(245 208 254 / var(--tw-border-opacity)); -} -.border-l-fuchsia-300{ - --tw-border-opacity: 1; - border-left-color: rgb(240 171 252 / var(--tw-border-opacity)); -} -.border-l-fuchsia-400{ - --tw-border-opacity: 1; - border-left-color: rgb(232 121 249 / var(--tw-border-opacity)); -} -.border-l-fuchsia-500{ - --tw-border-opacity: 1; - border-left-color: rgb(217 70 239 / var(--tw-border-opacity)); -} -.border-l-fuchsia-600{ - --tw-border-opacity: 1; - border-left-color: rgb(192 38 211 / var(--tw-border-opacity)); -} -.border-l-fuchsia-700{ - --tw-border-opacity: 1; - border-left-color: rgb(162 28 175 / var(--tw-border-opacity)); -} -.border-l-fuchsia-800{ - --tw-border-opacity: 1; - border-left-color: rgb(134 25 143 / var(--tw-border-opacity)); -} -.border-l-fuchsia-900{ - --tw-border-opacity: 1; - border-left-color: rgb(112 26 117 / var(--tw-border-opacity)); -} .border-l-pink-50{ --tw-border-opacity: 1; border-left-color: rgb(253 242 248 / var(--tw-border-opacity)); @@ -24826,6 +21034,30 @@ input[type="date"]::-webkit-inner-spin-button, --tw-border-opacity: 1; border-left-color: rgb(117 26 61 / var(--tw-border-opacity)); } +.border-l-lilac-100{ + --tw-border-opacity: 1; + border-left-color: rgb(245 247 250 / var(--tw-border-opacity)); +} +.border-l-lilac-300{ + --tw-border-opacity: 1; + border-left-color: rgb(237 240 252 / var(--tw-border-opacity)); +} +.border-l-lilac-900{ + --tw-border-opacity: 1; + border-left-color: rgb(220 226 249 / var(--tw-border-opacity)); +} +.border-l-lilac{ + --tw-border-opacity: 1; + border-left-color: rgb(248 249 254 / var(--tw-border-opacity)); +} +.border-l-golden-900{ + --tw-border-opacity: 1; + border-left-color: rgb(191 184 130 / var(--tw-border-opacity)); +} +.border-l-golden{ + --tw-border-opacity: 1; + border-left-color: rgb(209 201 137 / var(--tw-border-opacity)); +} .border-l-rose-50{ --tw-border-opacity: 1; border-left-color: rgb(255 241 242 / var(--tw-border-opacity)); @@ -24870,30 +21102,6 @@ input[type="date"]::-webkit-inner-spin-button, --tw-border-opacity: 1; border-left-color: rgb(244 63 94 / var(--tw-border-opacity)); } -.border-l-lilac-100{ - --tw-border-opacity: 1; - border-left-color: rgb(245 247 250 / var(--tw-border-opacity)); -} -.border-l-lilac-300{ - --tw-border-opacity: 1; - border-left-color: rgb(237 240 252 / var(--tw-border-opacity)); -} -.border-l-lilac-900{ - --tw-border-opacity: 1; - border-left-color: rgb(220 226 249 / var(--tw-border-opacity)); -} -.border-l-lilac{ - --tw-border-opacity: 1; - border-left-color: rgb(248 249 254 / var(--tw-border-opacity)); -} -.border-l-golden-900{ - --tw-border-opacity: 1; - border-left-color: rgb(191 184 130 / var(--tw-border-opacity)); -} -.border-l-golden{ - --tw-border-opacity: 1; - border-left-color: rgb(209 201 137 / var(--tw-border-opacity)); -} .border-l-status-success{ --tw-border-opacity: 1; border-left-color: rgb(241 246 238 / var(--tw-border-opacity)); @@ -25030,15 +21238,13 @@ input[type="date"]::-webkit-inner-spin-button, .border-opacity-100{ --tw-border-opacity: 1; } -.bg-inherit{ - background-color: inherit; -} -.bg-current{ - background-color: currentColor; -} .bg-transparent{ background-color: transparent; } +.bg-white{ + --tw-bg-opacity: 1; + background-color: rgb(255 255 255 / var(--tw-bg-opacity)); +} .bg-black-50{ --tw-bg-opacity: 1; background-color: rgb(246 246 246 / var(--tw-bg-opacity)); @@ -25083,50 +21289,6 @@ input[type="date"]::-webkit-inner-spin-button, --tw-bg-opacity: 1; background-color: rgb(66 66 66 / var(--tw-bg-opacity)); } -.bg-white{ - --tw-bg-opacity: 1; - background-color: rgb(255 255 255 / var(--tw-bg-opacity)); -} -.bg-slate-50{ - --tw-bg-opacity: 1; - background-color: rgb(248 250 252 / var(--tw-bg-opacity)); -} -.bg-slate-100{ - --tw-bg-opacity: 1; - background-color: rgb(241 245 249 / var(--tw-bg-opacity)); -} -.bg-slate-200{ - --tw-bg-opacity: 1; - background-color: rgb(226 232 240 / var(--tw-bg-opacity)); -} -.bg-slate-300{ - --tw-bg-opacity: 1; - background-color: rgb(203 213 225 / var(--tw-bg-opacity)); -} -.bg-slate-400{ - --tw-bg-opacity: 1; - background-color: rgb(148 163 184 / var(--tw-bg-opacity)); -} -.bg-slate-500{ - --tw-bg-opacity: 1; - background-color: rgb(100 116 139 / var(--tw-bg-opacity)); -} -.bg-slate-600{ - --tw-bg-opacity: 1; - background-color: rgb(71 85 105 / var(--tw-bg-opacity)); -} -.bg-slate-700{ - --tw-bg-opacity: 1; - background-color: rgb(51 65 85 / var(--tw-bg-opacity)); -} -.bg-slate-800{ - --tw-bg-opacity: 1; - background-color: rgb(30 41 59 / var(--tw-bg-opacity)); -} -.bg-slate-900{ - --tw-bg-opacity: 1; - background-color: rgb(15 23 42 / var(--tw-bg-opacity)); -} .bg-gray-50{ --tw-bg-opacity: 1; background-color: rgb(249 250 251 / var(--tw-bg-opacity)); @@ -25167,126 +21329,6 @@ input[type="date"]::-webkit-inner-spin-button, --tw-bg-opacity: 1; background-color: rgb(17 24 39 / var(--tw-bg-opacity)); } -.bg-zinc-50{ - --tw-bg-opacity: 1; - background-color: rgb(250 250 250 / var(--tw-bg-opacity)); -} -.bg-zinc-100{ - --tw-bg-opacity: 1; - background-color: rgb(244 244 245 / var(--tw-bg-opacity)); -} -.bg-zinc-200{ - --tw-bg-opacity: 1; - background-color: rgb(228 228 231 / var(--tw-bg-opacity)); -} -.bg-zinc-300{ - --tw-bg-opacity: 1; - background-color: rgb(212 212 216 / var(--tw-bg-opacity)); -} -.bg-zinc-400{ - --tw-bg-opacity: 1; - background-color: rgb(161 161 170 / var(--tw-bg-opacity)); -} -.bg-zinc-500{ - --tw-bg-opacity: 1; - background-color: rgb(113 113 122 / var(--tw-bg-opacity)); -} -.bg-zinc-600{ - --tw-bg-opacity: 1; - background-color: rgb(82 82 91 / var(--tw-bg-opacity)); -} -.bg-zinc-700{ - --tw-bg-opacity: 1; - background-color: rgb(63 63 70 / var(--tw-bg-opacity)); -} -.bg-zinc-800{ - --tw-bg-opacity: 1; - background-color: rgb(39 39 42 / var(--tw-bg-opacity)); -} -.bg-zinc-900{ - --tw-bg-opacity: 1; - background-color: rgb(24 24 27 / var(--tw-bg-opacity)); -} -.bg-neutral-50{ - --tw-bg-opacity: 1; - background-color: rgb(250 250 250 / var(--tw-bg-opacity)); -} -.bg-neutral-100{ - --tw-bg-opacity: 1; - background-color: rgb(245 245 245 / var(--tw-bg-opacity)); -} -.bg-neutral-200{ - --tw-bg-opacity: 1; - background-color: rgb(229 229 229 / var(--tw-bg-opacity)); -} -.bg-neutral-300{ - --tw-bg-opacity: 1; - background-color: rgb(212 212 212 / var(--tw-bg-opacity)); -} -.bg-neutral-400{ - --tw-bg-opacity: 1; - background-color: rgb(163 163 163 / var(--tw-bg-opacity)); -} -.bg-neutral-500{ - --tw-bg-opacity: 1; - background-color: rgb(115 115 115 / var(--tw-bg-opacity)); -} -.bg-neutral-600{ - --tw-bg-opacity: 1; - background-color: rgb(82 82 82 / var(--tw-bg-opacity)); -} -.bg-neutral-700{ - --tw-bg-opacity: 1; - background-color: rgb(64 64 64 / var(--tw-bg-opacity)); -} -.bg-neutral-800{ - --tw-bg-opacity: 1; - background-color: rgb(38 38 38 / var(--tw-bg-opacity)); -} -.bg-neutral-900{ - --tw-bg-opacity: 1; - background-color: rgb(23 23 23 / var(--tw-bg-opacity)); -} -.bg-stone-50{ - --tw-bg-opacity: 1; - background-color: rgb(250 250 249 / var(--tw-bg-opacity)); -} -.bg-stone-100{ - --tw-bg-opacity: 1; - background-color: rgb(245 245 244 / var(--tw-bg-opacity)); -} -.bg-stone-200{ - --tw-bg-opacity: 1; - background-color: rgb(231 229 228 / var(--tw-bg-opacity)); -} -.bg-stone-300{ - --tw-bg-opacity: 1; - background-color: rgb(214 211 209 / var(--tw-bg-opacity)); -} -.bg-stone-400{ - --tw-bg-opacity: 1; - background-color: rgb(168 162 158 / var(--tw-bg-opacity)); -} -.bg-stone-500{ - --tw-bg-opacity: 1; - background-color: rgb(120 113 108 / var(--tw-bg-opacity)); -} -.bg-stone-600{ - --tw-bg-opacity: 1; - background-color: rgb(87 83 78 / var(--tw-bg-opacity)); -} -.bg-stone-700{ - --tw-bg-opacity: 1; - background-color: rgb(68 64 60 / var(--tw-bg-opacity)); -} -.bg-stone-800{ - --tw-bg-opacity: 1; - background-color: rgb(41 37 36 / var(--tw-bg-opacity)); -} -.bg-stone-900{ - --tw-bg-opacity: 1; - background-color: rgb(28 25 23 / var(--tw-bg-opacity)); -} .bg-red-50{ --tw-bg-opacity: 1; background-color: rgb(252 242 242 / var(--tw-bg-opacity)); @@ -25375,46 +21417,6 @@ input[type="date"]::-webkit-inner-spin-button, --tw-bg-opacity: 1; background-color: rgb(245 158 11 / var(--tw-bg-opacity)); } -.bg-amber-50{ - --tw-bg-opacity: 1; - background-color: rgb(255 251 235 / var(--tw-bg-opacity)); -} -.bg-amber-100{ - --tw-bg-opacity: 1; - background-color: rgb(254 243 199 / var(--tw-bg-opacity)); -} -.bg-amber-200{ - --tw-bg-opacity: 1; - background-color: rgb(253 230 138 / var(--tw-bg-opacity)); -} -.bg-amber-300{ - --tw-bg-opacity: 1; - background-color: rgb(252 211 77 / var(--tw-bg-opacity)); -} -.bg-amber-400{ - --tw-bg-opacity: 1; - background-color: rgb(251 191 36 / var(--tw-bg-opacity)); -} -.bg-amber-500{ - --tw-bg-opacity: 1; - background-color: rgb(245 158 11 / var(--tw-bg-opacity)); -} -.bg-amber-600{ - --tw-bg-opacity: 1; - background-color: rgb(217 119 6 / var(--tw-bg-opacity)); -} -.bg-amber-700{ - --tw-bg-opacity: 1; - background-color: rgb(180 83 9 / var(--tw-bg-opacity)); -} -.bg-amber-800{ - --tw-bg-opacity: 1; - background-color: rgb(146 64 14 / var(--tw-bg-opacity)); -} -.bg-amber-900{ - --tw-bg-opacity: 1; - background-color: rgb(120 53 15 / var(--tw-bg-opacity)); -} .bg-yellow-50{ --tw-bg-opacity: 1; background-color: rgb(253 253 234 / var(--tw-bg-opacity)); @@ -25455,46 +21457,6 @@ input[type="date"]::-webkit-inner-spin-button, --tw-bg-opacity: 1; background-color: rgb(99 49 18 / var(--tw-bg-opacity)); } -.bg-lime-50{ - --tw-bg-opacity: 1; - background-color: rgb(247 254 231 / var(--tw-bg-opacity)); -} -.bg-lime-100{ - --tw-bg-opacity: 1; - background-color: rgb(236 252 203 / var(--tw-bg-opacity)); -} -.bg-lime-200{ - --tw-bg-opacity: 1; - background-color: rgb(217 249 157 / var(--tw-bg-opacity)); -} -.bg-lime-300{ - --tw-bg-opacity: 1; - background-color: rgb(190 242 100 / var(--tw-bg-opacity)); -} -.bg-lime-400{ - --tw-bg-opacity: 1; - background-color: rgb(163 230 53 / var(--tw-bg-opacity)); -} -.bg-lime-500{ - --tw-bg-opacity: 1; - background-color: rgb(132 204 22 / var(--tw-bg-opacity)); -} -.bg-lime-600{ - --tw-bg-opacity: 1; - background-color: rgb(101 163 13 / var(--tw-bg-opacity)); -} -.bg-lime-700{ - --tw-bg-opacity: 1; - background-color: rgb(77 124 15 / var(--tw-bg-opacity)); -} -.bg-lime-800{ - --tw-bg-opacity: 1; - background-color: rgb(63 98 18 / var(--tw-bg-opacity)); -} -.bg-lime-900{ - --tw-bg-opacity: 1; - background-color: rgb(54 83 20 / var(--tw-bg-opacity)); -} .bg-green-50{ --tw-bg-opacity: 1; background-color: rgb(248 250 246 / var(--tw-bg-opacity)); @@ -25539,46 +21501,6 @@ input[type="date"]::-webkit-inner-spin-button, --tw-bg-opacity: 1; background-color: rgb(110 161 82 / var(--tw-bg-opacity)); } -.bg-emerald-50{ - --tw-bg-opacity: 1; - background-color: rgb(236 253 245 / var(--tw-bg-opacity)); -} -.bg-emerald-100{ - --tw-bg-opacity: 1; - background-color: rgb(209 250 229 / var(--tw-bg-opacity)); -} -.bg-emerald-200{ - --tw-bg-opacity: 1; - background-color: rgb(167 243 208 / var(--tw-bg-opacity)); -} -.bg-emerald-300{ - --tw-bg-opacity: 1; - background-color: rgb(110 231 183 / var(--tw-bg-opacity)); -} -.bg-emerald-400{ - --tw-bg-opacity: 1; - background-color: rgb(52 211 153 / var(--tw-bg-opacity)); -} -.bg-emerald-500{ - --tw-bg-opacity: 1; - background-color: rgb(16 185 129 / var(--tw-bg-opacity)); -} -.bg-emerald-600{ - --tw-bg-opacity: 1; - background-color: rgb(5 150 105 / var(--tw-bg-opacity)); -} -.bg-emerald-700{ - --tw-bg-opacity: 1; - background-color: rgb(4 120 87 / var(--tw-bg-opacity)); -} -.bg-emerald-800{ - --tw-bg-opacity: 1; - background-color: rgb(6 95 70 / var(--tw-bg-opacity)); -} -.bg-emerald-900{ - --tw-bg-opacity: 1; - background-color: rgb(6 78 59 / var(--tw-bg-opacity)); -} .bg-teal-50{ --tw-bg-opacity: 1; background-color: rgb(237 250 250 / var(--tw-bg-opacity)); @@ -25619,86 +21541,6 @@ input[type="date"]::-webkit-inner-spin-button, --tw-bg-opacity: 1; background-color: rgb(1 68 81 / var(--tw-bg-opacity)); } -.bg-cyan-50{ - --tw-bg-opacity: 1; - background-color: rgb(236 254 255 / var(--tw-bg-opacity)); -} -.bg-cyan-100{ - --tw-bg-opacity: 1; - background-color: rgb(207 250 254 / var(--tw-bg-opacity)); -} -.bg-cyan-200{ - --tw-bg-opacity: 1; - background-color: rgb(165 243 252 / var(--tw-bg-opacity)); -} -.bg-cyan-300{ - --tw-bg-opacity: 1; - background-color: rgb(103 232 249 / var(--tw-bg-opacity)); -} -.bg-cyan-400{ - --tw-bg-opacity: 1; - background-color: rgb(34 211 238 / var(--tw-bg-opacity)); -} -.bg-cyan-500{ - --tw-bg-opacity: 1; - background-color: rgb(6 182 212 / var(--tw-bg-opacity)); -} -.bg-cyan-600{ - --tw-bg-opacity: 1; - background-color: rgb(8 145 178 / var(--tw-bg-opacity)); -} -.bg-cyan-700{ - --tw-bg-opacity: 1; - background-color: rgb(14 116 144 / var(--tw-bg-opacity)); -} -.bg-cyan-800{ - --tw-bg-opacity: 1; - background-color: rgb(21 94 117 / var(--tw-bg-opacity)); -} -.bg-cyan-900{ - --tw-bg-opacity: 1; - background-color: rgb(22 78 99 / var(--tw-bg-opacity)); -} -.bg-sky-50{ - --tw-bg-opacity: 1; - background-color: rgb(240 249 255 / var(--tw-bg-opacity)); -} -.bg-sky-100{ - --tw-bg-opacity: 1; - background-color: rgb(224 242 254 / var(--tw-bg-opacity)); -} -.bg-sky-200{ - --tw-bg-opacity: 1; - background-color: rgb(186 230 253 / var(--tw-bg-opacity)); -} -.bg-sky-300{ - --tw-bg-opacity: 1; - background-color: rgb(125 211 252 / var(--tw-bg-opacity)); -} -.bg-sky-400{ - --tw-bg-opacity: 1; - background-color: rgb(56 189 248 / var(--tw-bg-opacity)); -} -.bg-sky-500{ - --tw-bg-opacity: 1; - background-color: rgb(14 165 233 / var(--tw-bg-opacity)); -} -.bg-sky-600{ - --tw-bg-opacity: 1; - background-color: rgb(2 132 199 / var(--tw-bg-opacity)); -} -.bg-sky-700{ - --tw-bg-opacity: 1; - background-color: rgb(3 105 161 / var(--tw-bg-opacity)); -} -.bg-sky-800{ - --tw-bg-opacity: 1; - background-color: rgb(7 89 133 / var(--tw-bg-opacity)); -} -.bg-sky-900{ - --tw-bg-opacity: 1; - background-color: rgb(12 74 110 / var(--tw-bg-opacity)); -} .bg-blue-50{ --tw-bg-opacity: 1; background-color: rgb(242 248 251 / var(--tw-bg-opacity)); @@ -25783,46 +21625,6 @@ input[type="date"]::-webkit-inner-spin-button, --tw-bg-opacity: 1; background-color: rgb(54 47 120 / var(--tw-bg-opacity)); } -.bg-violet-50{ - --tw-bg-opacity: 1; - background-color: rgb(245 243 255 / var(--tw-bg-opacity)); -} -.bg-violet-100{ - --tw-bg-opacity: 1; - background-color: rgb(237 233 254 / var(--tw-bg-opacity)); -} -.bg-violet-200{ - --tw-bg-opacity: 1; - background-color: rgb(221 214 254 / var(--tw-bg-opacity)); -} -.bg-violet-300{ - --tw-bg-opacity: 1; - background-color: rgb(196 181 253 / var(--tw-bg-opacity)); -} -.bg-violet-400{ - --tw-bg-opacity: 1; - background-color: rgb(167 139 250 / var(--tw-bg-opacity)); -} -.bg-violet-500{ - --tw-bg-opacity: 1; - background-color: rgb(139 92 246 / var(--tw-bg-opacity)); -} -.bg-violet-600{ - --tw-bg-opacity: 1; - background-color: rgb(124 58 237 / var(--tw-bg-opacity)); -} -.bg-violet-700{ - --tw-bg-opacity: 1; - background-color: rgb(109 40 217 / var(--tw-bg-opacity)); -} -.bg-violet-800{ - --tw-bg-opacity: 1; - background-color: rgb(91 33 182 / var(--tw-bg-opacity)); -} -.bg-violet-900{ - --tw-bg-opacity: 1; - background-color: rgb(76 29 149 / var(--tw-bg-opacity)); -} .bg-purple-50{ --tw-bg-opacity: 1; background-color: rgb(247 247 249 / var(--tw-bg-opacity)); @@ -25867,46 +21669,6 @@ input[type="date"]::-webkit-inner-spin-button, --tw-bg-opacity: 1; background-color: rgb(85 88 139 / var(--tw-bg-opacity)); } -.bg-fuchsia-50{ - --tw-bg-opacity: 1; - background-color: rgb(253 244 255 / var(--tw-bg-opacity)); -} -.bg-fuchsia-100{ - --tw-bg-opacity: 1; - background-color: rgb(250 232 255 / var(--tw-bg-opacity)); -} -.bg-fuchsia-200{ - --tw-bg-opacity: 1; - background-color: rgb(245 208 254 / var(--tw-bg-opacity)); -} -.bg-fuchsia-300{ - --tw-bg-opacity: 1; - background-color: rgb(240 171 252 / var(--tw-bg-opacity)); -} -.bg-fuchsia-400{ - --tw-bg-opacity: 1; - background-color: rgb(232 121 249 / var(--tw-bg-opacity)); -} -.bg-fuchsia-500{ - --tw-bg-opacity: 1; - background-color: rgb(217 70 239 / var(--tw-bg-opacity)); -} -.bg-fuchsia-600{ - --tw-bg-opacity: 1; - background-color: rgb(192 38 211 / var(--tw-bg-opacity)); -} -.bg-fuchsia-700{ - --tw-bg-opacity: 1; - background-color: rgb(162 28 175 / var(--tw-bg-opacity)); -} -.bg-fuchsia-800{ - --tw-bg-opacity: 1; - background-color: rgb(134 25 143 / var(--tw-bg-opacity)); -} -.bg-fuchsia-900{ - --tw-bg-opacity: 1; - background-color: rgb(112 26 117 / var(--tw-bg-opacity)); -} .bg-pink-50{ --tw-bg-opacity: 1; background-color: rgb(253 242 248 / var(--tw-bg-opacity)); @@ -25947,6 +21709,30 @@ input[type="date"]::-webkit-inner-spin-button, --tw-bg-opacity: 1; background-color: rgb(117 26 61 / var(--tw-bg-opacity)); } +.bg-lilac-100{ + --tw-bg-opacity: 1; + background-color: rgb(245 247 250 / var(--tw-bg-opacity)); +} +.bg-lilac-300{ + --tw-bg-opacity: 1; + background-color: rgb(237 240 252 / var(--tw-bg-opacity)); +} +.bg-lilac-900{ + --tw-bg-opacity: 1; + background-color: rgb(220 226 249 / var(--tw-bg-opacity)); +} +.bg-lilac{ + --tw-bg-opacity: 1; + background-color: rgb(248 249 254 / var(--tw-bg-opacity)); +} +.bg-golden-900{ + --tw-bg-opacity: 1; + background-color: rgb(191 184 130 / var(--tw-bg-opacity)); +} +.bg-golden{ + --tw-bg-opacity: 1; + background-color: rgb(209 201 137 / var(--tw-bg-opacity)); +} .bg-rose-50{ --tw-bg-opacity: 1; background-color: rgb(255 241 242 / var(--tw-bg-opacity)); @@ -25991,30 +21777,6 @@ input[type="date"]::-webkit-inner-spin-button, --tw-bg-opacity: 1; background-color: rgb(244 63 94 / var(--tw-bg-opacity)); } -.bg-lilac-100{ - --tw-bg-opacity: 1; - background-color: rgb(245 247 250 / var(--tw-bg-opacity)); -} -.bg-lilac-300{ - --tw-bg-opacity: 1; - background-color: rgb(237 240 252 / var(--tw-bg-opacity)); -} -.bg-lilac-900{ - --tw-bg-opacity: 1; - background-color: rgb(220 226 249 / var(--tw-bg-opacity)); -} -.bg-lilac{ - --tw-bg-opacity: 1; - background-color: rgb(248 249 254 / var(--tw-bg-opacity)); -} -.bg-golden-900{ - --tw-bg-opacity: 1; - background-color: rgb(191 184 130 / var(--tw-bg-opacity)); -} -.bg-golden{ - --tw-bg-opacity: 1; - background-color: rgb(209 201 137 / var(--tw-bg-opacity)); -} .bg-status-success{ --tw-bg-opacity: 1; background-color: rgb(241 246 238 / var(--tw-bg-opacity)); @@ -26186,18 +21948,14 @@ input[type="date"]::-webkit-inner-spin-button, background-image: -webkit-gradient(linear, right bottom, left top, from(var(--tw-gradient-stops))); background-image: linear-gradient(to top left, var(--tw-gradient-stops)); } -.from-inherit{ - --tw-gradient-from: inherit; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgb(255 255 255 / 0)); -} -.from-current{ - --tw-gradient-from: currentColor; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgb(255 255 255 / 0)); -} .from-transparent{ --tw-gradient-from: transparent; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgb(0 0 0 / 0)); } +.from-white{ + --tw-gradient-from: #ffffff; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgb(255 255 255 / 0)); +} .from-black-50{ --tw-gradient-from: #f6f6f6; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgb(246 246 246 / 0)); @@ -26242,50 +22000,6 @@ input[type="date"]::-webkit-inner-spin-button, --tw-gradient-from: #424242; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgb(66 66 66 / 0)); } -.from-white{ - --tw-gradient-from: #ffffff; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgb(255 255 255 / 0)); -} -.from-slate-50{ - --tw-gradient-from: #f8fafc; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgb(248 250 252 / 0)); -} -.from-slate-100{ - --tw-gradient-from: #f1f5f9; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgb(241 245 249 / 0)); -} -.from-slate-200{ - --tw-gradient-from: #e2e8f0; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgb(226 232 240 / 0)); -} -.from-slate-300{ - --tw-gradient-from: #cbd5e1; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgb(203 213 225 / 0)); -} -.from-slate-400{ - --tw-gradient-from: #94a3b8; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgb(148 163 184 / 0)); -} -.from-slate-500{ - --tw-gradient-from: #64748b; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgb(100 116 139 / 0)); -} -.from-slate-600{ - --tw-gradient-from: #475569; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgb(71 85 105 / 0)); -} -.from-slate-700{ - --tw-gradient-from: #334155; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgb(51 65 85 / 0)); -} -.from-slate-800{ - --tw-gradient-from: #1e293b; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgb(30 41 59 / 0)); -} -.from-slate-900{ - --tw-gradient-from: #0f172a; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgb(15 23 42 / 0)); -} .from-gray-50{ --tw-gradient-from: #F9FAFB; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgb(249 250 251 / 0)); @@ -26326,126 +22040,6 @@ input[type="date"]::-webkit-inner-spin-button, --tw-gradient-from: #111827; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgb(17 24 39 / 0)); } -.from-zinc-50{ - --tw-gradient-from: #fafafa; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgb(250 250 250 / 0)); -} -.from-zinc-100{ - --tw-gradient-from: #f4f4f5; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgb(244 244 245 / 0)); -} -.from-zinc-200{ - --tw-gradient-from: #e4e4e7; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgb(228 228 231 / 0)); -} -.from-zinc-300{ - --tw-gradient-from: #d4d4d8; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgb(212 212 216 / 0)); -} -.from-zinc-400{ - --tw-gradient-from: #a1a1aa; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgb(161 161 170 / 0)); -} -.from-zinc-500{ - --tw-gradient-from: #71717a; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgb(113 113 122 / 0)); -} -.from-zinc-600{ - --tw-gradient-from: #52525b; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgb(82 82 91 / 0)); -} -.from-zinc-700{ - --tw-gradient-from: #3f3f46; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgb(63 63 70 / 0)); -} -.from-zinc-800{ - --tw-gradient-from: #27272a; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgb(39 39 42 / 0)); -} -.from-zinc-900{ - --tw-gradient-from: #18181b; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgb(24 24 27 / 0)); -} -.from-neutral-50{ - --tw-gradient-from: #fafafa; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgb(250 250 250 / 0)); -} -.from-neutral-100{ - --tw-gradient-from: #f5f5f5; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgb(245 245 245 / 0)); -} -.from-neutral-200{ - --tw-gradient-from: #e5e5e5; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgb(229 229 229 / 0)); -} -.from-neutral-300{ - --tw-gradient-from: #d4d4d4; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgb(212 212 212 / 0)); -} -.from-neutral-400{ - --tw-gradient-from: #a3a3a3; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgb(163 163 163 / 0)); -} -.from-neutral-500{ - --tw-gradient-from: #737373; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgb(115 115 115 / 0)); -} -.from-neutral-600{ - --tw-gradient-from: #525252; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgb(82 82 82 / 0)); -} -.from-neutral-700{ - --tw-gradient-from: #404040; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgb(64 64 64 / 0)); -} -.from-neutral-800{ - --tw-gradient-from: #262626; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgb(38 38 38 / 0)); -} -.from-neutral-900{ - --tw-gradient-from: #171717; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgb(23 23 23 / 0)); -} -.from-stone-50{ - --tw-gradient-from: #fafaf9; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgb(250 250 249 / 0)); -} -.from-stone-100{ - --tw-gradient-from: #f5f5f4; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgb(245 245 244 / 0)); -} -.from-stone-200{ - --tw-gradient-from: #e7e5e4; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgb(231 229 228 / 0)); -} -.from-stone-300{ - --tw-gradient-from: #d6d3d1; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgb(214 211 209 / 0)); -} -.from-stone-400{ - --tw-gradient-from: #a8a29e; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgb(168 162 158 / 0)); -} -.from-stone-500{ - --tw-gradient-from: #78716c; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgb(120 113 108 / 0)); -} -.from-stone-600{ - --tw-gradient-from: #57534e; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgb(87 83 78 / 0)); -} -.from-stone-700{ - --tw-gradient-from: #44403c; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgb(68 64 60 / 0)); -} -.from-stone-800{ - --tw-gradient-from: #292524; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgb(41 37 36 / 0)); -} -.from-stone-900{ - --tw-gradient-from: #1c1917; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgb(28 25 23 / 0)); -} .from-red-50{ --tw-gradient-from: #fcf2f2; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgb(252 242 242 / 0)); @@ -26534,46 +22128,6 @@ input[type="date"]::-webkit-inner-spin-button, --tw-gradient-from: #f59e0b; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgb(245 158 11 / 0)); } -.from-amber-50{ - --tw-gradient-from: #fffbeb; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgb(255 251 235 / 0)); -} -.from-amber-100{ - --tw-gradient-from: #fef3c7; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgb(254 243 199 / 0)); -} -.from-amber-200{ - --tw-gradient-from: #fde68a; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgb(253 230 138 / 0)); -} -.from-amber-300{ - --tw-gradient-from: #fcd34d; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgb(252 211 77 / 0)); -} -.from-amber-400{ - --tw-gradient-from: #fbbf24; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgb(251 191 36 / 0)); -} -.from-amber-500{ - --tw-gradient-from: #f59e0b; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgb(245 158 11 / 0)); -} -.from-amber-600{ - --tw-gradient-from: #d97706; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgb(217 119 6 / 0)); -} -.from-amber-700{ - --tw-gradient-from: #b45309; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgb(180 83 9 / 0)); -} -.from-amber-800{ - --tw-gradient-from: #92400e; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgb(146 64 14 / 0)); -} -.from-amber-900{ - --tw-gradient-from: #78350f; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgb(120 53 15 / 0)); -} .from-yellow-50{ --tw-gradient-from: #FDFDEA; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgb(253 253 234 / 0)); @@ -26614,46 +22168,6 @@ input[type="date"]::-webkit-inner-spin-button, --tw-gradient-from: #633112; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgb(99 49 18 / 0)); } -.from-lime-50{ - --tw-gradient-from: #f7fee7; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgb(247 254 231 / 0)); -} -.from-lime-100{ - --tw-gradient-from: #ecfccb; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgb(236 252 203 / 0)); -} -.from-lime-200{ - --tw-gradient-from: #d9f99d; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgb(217 249 157 / 0)); -} -.from-lime-300{ - --tw-gradient-from: #bef264; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgb(190 242 100 / 0)); -} -.from-lime-400{ - --tw-gradient-from: #a3e635; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgb(163 230 53 / 0)); -} -.from-lime-500{ - --tw-gradient-from: #84cc16; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgb(132 204 22 / 0)); -} -.from-lime-600{ - --tw-gradient-from: #65a30d; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgb(101 163 13 / 0)); -} -.from-lime-700{ - --tw-gradient-from: #4d7c0f; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgb(77 124 15 / 0)); -} -.from-lime-800{ - --tw-gradient-from: #3f6212; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgb(63 98 18 / 0)); -} -.from-lime-900{ - --tw-gradient-from: #365314; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgb(54 83 20 / 0)); -} .from-green-50{ --tw-gradient-from: #f8faf6; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgb(248 250 246 / 0)); @@ -26698,46 +22212,6 @@ input[type="date"]::-webkit-inner-spin-button, --tw-gradient-from: #6ea152; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgb(110 161 82 / 0)); } -.from-emerald-50{ - --tw-gradient-from: #ecfdf5; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgb(236 253 245 / 0)); -} -.from-emerald-100{ - --tw-gradient-from: #d1fae5; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgb(209 250 229 / 0)); -} -.from-emerald-200{ - --tw-gradient-from: #a7f3d0; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgb(167 243 208 / 0)); -} -.from-emerald-300{ - --tw-gradient-from: #6ee7b7; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgb(110 231 183 / 0)); -} -.from-emerald-400{ - --tw-gradient-from: #34d399; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgb(52 211 153 / 0)); -} -.from-emerald-500{ - --tw-gradient-from: #10b981; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgb(16 185 129 / 0)); -} -.from-emerald-600{ - --tw-gradient-from: #059669; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgb(5 150 105 / 0)); -} -.from-emerald-700{ - --tw-gradient-from: #047857; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgb(4 120 87 / 0)); -} -.from-emerald-800{ - --tw-gradient-from: #065f46; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgb(6 95 70 / 0)); -} -.from-emerald-900{ - --tw-gradient-from: #064e3b; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgb(6 78 59 / 0)); -} .from-teal-50{ --tw-gradient-from: #EDFAFA; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgb(237 250 250 / 0)); @@ -26778,86 +22252,6 @@ input[type="date"]::-webkit-inner-spin-button, --tw-gradient-from: #014451; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgb(1 68 81 / 0)); } -.from-cyan-50{ - --tw-gradient-from: #ecfeff; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgb(236 254 255 / 0)); -} -.from-cyan-100{ - --tw-gradient-from: #cffafe; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgb(207 250 254 / 0)); -} -.from-cyan-200{ - --tw-gradient-from: #a5f3fc; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgb(165 243 252 / 0)); -} -.from-cyan-300{ - --tw-gradient-from: #67e8f9; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgb(103 232 249 / 0)); -} -.from-cyan-400{ - --tw-gradient-from: #22d3ee; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgb(34 211 238 / 0)); -} -.from-cyan-500{ - --tw-gradient-from: #06b6d4; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgb(6 182 212 / 0)); -} -.from-cyan-600{ - --tw-gradient-from: #0891b2; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgb(8 145 178 / 0)); -} -.from-cyan-700{ - --tw-gradient-from: #0e7490; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgb(14 116 144 / 0)); -} -.from-cyan-800{ - --tw-gradient-from: #155e75; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgb(21 94 117 / 0)); -} -.from-cyan-900{ - --tw-gradient-from: #164e63; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgb(22 78 99 / 0)); -} -.from-sky-50{ - --tw-gradient-from: #f0f9ff; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgb(240 249 255 / 0)); -} -.from-sky-100{ - --tw-gradient-from: #e0f2fe; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgb(224 242 254 / 0)); -} -.from-sky-200{ - --tw-gradient-from: #bae6fd; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgb(186 230 253 / 0)); -} -.from-sky-300{ - --tw-gradient-from: #7dd3fc; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgb(125 211 252 / 0)); -} -.from-sky-400{ - --tw-gradient-from: #38bdf8; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgb(56 189 248 / 0)); -} -.from-sky-500{ - --tw-gradient-from: #0ea5e9; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgb(14 165 233 / 0)); -} -.from-sky-600{ - --tw-gradient-from: #0284c7; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgb(2 132 199 / 0)); -} -.from-sky-700{ - --tw-gradient-from: #0369a1; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgb(3 105 161 / 0)); -} -.from-sky-800{ - --tw-gradient-from: #075985; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgb(7 89 133 / 0)); -} -.from-sky-900{ - --tw-gradient-from: #0c4a6e; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgb(12 74 110 / 0)); -} .from-blue-50{ --tw-gradient-from: #f2f8fb; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgb(242 248 251 / 0)); @@ -26942,46 +22336,6 @@ input[type="date"]::-webkit-inner-spin-button, --tw-gradient-from: #362F78; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgb(54 47 120 / 0)); } -.from-violet-50{ - --tw-gradient-from: #f5f3ff; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgb(245 243 255 / 0)); -} -.from-violet-100{ - --tw-gradient-from: #ede9fe; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgb(237 233 254 / 0)); -} -.from-violet-200{ - --tw-gradient-from: #ddd6fe; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgb(221 214 254 / 0)); -} -.from-violet-300{ - --tw-gradient-from: #c4b5fd; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgb(196 181 253 / 0)); -} -.from-violet-400{ - --tw-gradient-from: #a78bfa; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgb(167 139 250 / 0)); -} -.from-violet-500{ - --tw-gradient-from: #8b5cf6; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgb(139 92 246 / 0)); -} -.from-violet-600{ - --tw-gradient-from: #7c3aed; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgb(124 58 237 / 0)); -} -.from-violet-700{ - --tw-gradient-from: #6d28d9; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgb(109 40 217 / 0)); -} -.from-violet-800{ - --tw-gradient-from: #5b21b6; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgb(91 33 182 / 0)); -} -.from-violet-900{ - --tw-gradient-from: #4c1d95; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgb(76 29 149 / 0)); -} .from-purple-50{ --tw-gradient-from: #f7f7f9; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgb(247 247 249 / 0)); @@ -27026,46 +22380,6 @@ input[type="date"]::-webkit-inner-spin-button, --tw-gradient-from: #55588b; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgb(85 88 139 / 0)); } -.from-fuchsia-50{ - --tw-gradient-from: #fdf4ff; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgb(253 244 255 / 0)); -} -.from-fuchsia-100{ - --tw-gradient-from: #fae8ff; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgb(250 232 255 / 0)); -} -.from-fuchsia-200{ - --tw-gradient-from: #f5d0fe; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgb(245 208 254 / 0)); -} -.from-fuchsia-300{ - --tw-gradient-from: #f0abfc; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgb(240 171 252 / 0)); -} -.from-fuchsia-400{ - --tw-gradient-from: #e879f9; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgb(232 121 249 / 0)); -} -.from-fuchsia-500{ - --tw-gradient-from: #d946ef; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgb(217 70 239 / 0)); -} -.from-fuchsia-600{ - --tw-gradient-from: #c026d3; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgb(192 38 211 / 0)); -} -.from-fuchsia-700{ - --tw-gradient-from: #a21caf; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgb(162 28 175 / 0)); -} -.from-fuchsia-800{ - --tw-gradient-from: #86198f; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgb(134 25 143 / 0)); -} -.from-fuchsia-900{ - --tw-gradient-from: #701a75; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgb(112 26 117 / 0)); -} .from-pink-50{ --tw-gradient-from: #FDF2F8; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgb(253 242 248 / 0)); @@ -27106,6 +22420,30 @@ input[type="date"]::-webkit-inner-spin-button, --tw-gradient-from: #751A3D; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgb(117 26 61 / 0)); } +.from-lilac-100{ + --tw-gradient-from: #F5F7FA; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgb(245 247 250 / 0)); +} +.from-lilac-300{ + --tw-gradient-from: #EDF0FC; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgb(237 240 252 / 0)); +} +.from-lilac-900{ + --tw-gradient-from: #DCE2F9; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgb(220 226 249 / 0)); +} +.from-lilac{ + --tw-gradient-from: #F8F9FE; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgb(248 249 254 / 0)); +} +.from-golden-900{ + --tw-gradient-from: #BFB882; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgb(191 184 130 / 0)); +} +.from-golden{ + --tw-gradient-from: #D1C989; + --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgb(209 201 137 / 0)); +} .from-rose-50{ --tw-gradient-from: #fff1f2; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgb(255 241 242 / 0)); @@ -27150,30 +22488,6 @@ input[type="date"]::-webkit-inner-spin-button, --tw-gradient-from: #f43f5e; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgb(244 63 94 / 0)); } -.from-lilac-100{ - --tw-gradient-from: #F5F7FA; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgb(245 247 250 / 0)); -} -.from-lilac-300{ - --tw-gradient-from: #EDF0FC; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgb(237 240 252 / 0)); -} -.from-lilac-900{ - --tw-gradient-from: #DCE2F9; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgb(220 226 249 / 0)); -} -.from-lilac{ - --tw-gradient-from: #F8F9FE; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgb(248 249 254 / 0)); -} -.from-golden-900{ - --tw-gradient-from: #BFB882; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgb(191 184 130 / 0)); -} -.from-golden{ - --tw-gradient-from: #D1C989; - --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgb(209 201 137 / 0)); -} .from-status-success{ --tw-gradient-from: #F1F6EE; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgb(241 246 238 / 0)); @@ -27266,15 +22580,12 @@ input[type="date"]::-webkit-inner-spin-button, --tw-gradient-from: #935f07; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgb(147 95 7 / 0)); } -.via-inherit{ - --tw-gradient-stops: var(--tw-gradient-from), inherit, var(--tw-gradient-to, rgb(255 255 255 / 0)); -} -.via-current{ - --tw-gradient-stops: var(--tw-gradient-from), currentColor, var(--tw-gradient-to, rgb(255 255 255 / 0)); -} .via-transparent{ --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgb(0 0 0 / 0)); } +.via-white{ + --tw-gradient-stops: var(--tw-gradient-from), #ffffff, var(--tw-gradient-to, rgb(255 255 255 / 0)); +} .via-black-50{ --tw-gradient-stops: var(--tw-gradient-from), #f6f6f6, var(--tw-gradient-to, rgb(246 246 246 / 0)); } @@ -27308,39 +22619,6 @@ input[type="date"]::-webkit-inner-spin-button, .via-black{ --tw-gradient-stops: var(--tw-gradient-from), #424242, var(--tw-gradient-to, rgb(66 66 66 / 0)); } -.via-white{ - --tw-gradient-stops: var(--tw-gradient-from), #ffffff, var(--tw-gradient-to, rgb(255 255 255 / 0)); -} -.via-slate-50{ - --tw-gradient-stops: var(--tw-gradient-from), #f8fafc, var(--tw-gradient-to, rgb(248 250 252 / 0)); -} -.via-slate-100{ - --tw-gradient-stops: var(--tw-gradient-from), #f1f5f9, var(--tw-gradient-to, rgb(241 245 249 / 0)); -} -.via-slate-200{ - --tw-gradient-stops: var(--tw-gradient-from), #e2e8f0, var(--tw-gradient-to, rgb(226 232 240 / 0)); -} -.via-slate-300{ - --tw-gradient-stops: var(--tw-gradient-from), #cbd5e1, var(--tw-gradient-to, rgb(203 213 225 / 0)); -} -.via-slate-400{ - --tw-gradient-stops: var(--tw-gradient-from), #94a3b8, var(--tw-gradient-to, rgb(148 163 184 / 0)); -} -.via-slate-500{ - --tw-gradient-stops: var(--tw-gradient-from), #64748b, var(--tw-gradient-to, rgb(100 116 139 / 0)); -} -.via-slate-600{ - --tw-gradient-stops: var(--tw-gradient-from), #475569, var(--tw-gradient-to, rgb(71 85 105 / 0)); -} -.via-slate-700{ - --tw-gradient-stops: var(--tw-gradient-from), #334155, var(--tw-gradient-to, rgb(51 65 85 / 0)); -} -.via-slate-800{ - --tw-gradient-stops: var(--tw-gradient-from), #1e293b, var(--tw-gradient-to, rgb(30 41 59 / 0)); -} -.via-slate-900{ - --tw-gradient-stops: var(--tw-gradient-from), #0f172a, var(--tw-gradient-to, rgb(15 23 42 / 0)); -} .via-gray-50{ --tw-gradient-stops: var(--tw-gradient-from), #F9FAFB, var(--tw-gradient-to, rgb(249 250 251 / 0)); } @@ -27371,96 +22649,6 @@ input[type="date"]::-webkit-inner-spin-button, .via-gray-900{ --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgb(17 24 39 / 0)); } -.via-zinc-50{ - --tw-gradient-stops: var(--tw-gradient-from), #fafafa, var(--tw-gradient-to, rgb(250 250 250 / 0)); -} -.via-zinc-100{ - --tw-gradient-stops: var(--tw-gradient-from), #f4f4f5, var(--tw-gradient-to, rgb(244 244 245 / 0)); -} -.via-zinc-200{ - --tw-gradient-stops: var(--tw-gradient-from), #e4e4e7, var(--tw-gradient-to, rgb(228 228 231 / 0)); -} -.via-zinc-300{ - --tw-gradient-stops: var(--tw-gradient-from), #d4d4d8, var(--tw-gradient-to, rgb(212 212 216 / 0)); -} -.via-zinc-400{ - --tw-gradient-stops: var(--tw-gradient-from), #a1a1aa, var(--tw-gradient-to, rgb(161 161 170 / 0)); -} -.via-zinc-500{ - --tw-gradient-stops: var(--tw-gradient-from), #71717a, var(--tw-gradient-to, rgb(113 113 122 / 0)); -} -.via-zinc-600{ - --tw-gradient-stops: var(--tw-gradient-from), #52525b, var(--tw-gradient-to, rgb(82 82 91 / 0)); -} -.via-zinc-700{ - --tw-gradient-stops: var(--tw-gradient-from), #3f3f46, var(--tw-gradient-to, rgb(63 63 70 / 0)); -} -.via-zinc-800{ - --tw-gradient-stops: var(--tw-gradient-from), #27272a, var(--tw-gradient-to, rgb(39 39 42 / 0)); -} -.via-zinc-900{ - --tw-gradient-stops: var(--tw-gradient-from), #18181b, var(--tw-gradient-to, rgb(24 24 27 / 0)); -} -.via-neutral-50{ - --tw-gradient-stops: var(--tw-gradient-from), #fafafa, var(--tw-gradient-to, rgb(250 250 250 / 0)); -} -.via-neutral-100{ - --tw-gradient-stops: var(--tw-gradient-from), #f5f5f5, var(--tw-gradient-to, rgb(245 245 245 / 0)); -} -.via-neutral-200{ - --tw-gradient-stops: var(--tw-gradient-from), #e5e5e5, var(--tw-gradient-to, rgb(229 229 229 / 0)); -} -.via-neutral-300{ - --tw-gradient-stops: var(--tw-gradient-from), #d4d4d4, var(--tw-gradient-to, rgb(212 212 212 / 0)); -} -.via-neutral-400{ - --tw-gradient-stops: var(--tw-gradient-from), #a3a3a3, var(--tw-gradient-to, rgb(163 163 163 / 0)); -} -.via-neutral-500{ - --tw-gradient-stops: var(--tw-gradient-from), #737373, var(--tw-gradient-to, rgb(115 115 115 / 0)); -} -.via-neutral-600{ - --tw-gradient-stops: var(--tw-gradient-from), #525252, var(--tw-gradient-to, rgb(82 82 82 / 0)); -} -.via-neutral-700{ - --tw-gradient-stops: var(--tw-gradient-from), #404040, var(--tw-gradient-to, rgb(64 64 64 / 0)); -} -.via-neutral-800{ - --tw-gradient-stops: var(--tw-gradient-from), #262626, var(--tw-gradient-to, rgb(38 38 38 / 0)); -} -.via-neutral-900{ - --tw-gradient-stops: var(--tw-gradient-from), #171717, var(--tw-gradient-to, rgb(23 23 23 / 0)); -} -.via-stone-50{ - --tw-gradient-stops: var(--tw-gradient-from), #fafaf9, var(--tw-gradient-to, rgb(250 250 249 / 0)); -} -.via-stone-100{ - --tw-gradient-stops: var(--tw-gradient-from), #f5f5f4, var(--tw-gradient-to, rgb(245 245 244 / 0)); -} -.via-stone-200{ - --tw-gradient-stops: var(--tw-gradient-from), #e7e5e4, var(--tw-gradient-to, rgb(231 229 228 / 0)); -} -.via-stone-300{ - --tw-gradient-stops: var(--tw-gradient-from), #d6d3d1, var(--tw-gradient-to, rgb(214 211 209 / 0)); -} -.via-stone-400{ - --tw-gradient-stops: var(--tw-gradient-from), #a8a29e, var(--tw-gradient-to, rgb(168 162 158 / 0)); -} -.via-stone-500{ - --tw-gradient-stops: var(--tw-gradient-from), #78716c, var(--tw-gradient-to, rgb(120 113 108 / 0)); -} -.via-stone-600{ - --tw-gradient-stops: var(--tw-gradient-from), #57534e, var(--tw-gradient-to, rgb(87 83 78 / 0)); -} -.via-stone-700{ - --tw-gradient-stops: var(--tw-gradient-from), #44403c, var(--tw-gradient-to, rgb(68 64 60 / 0)); -} -.via-stone-800{ - --tw-gradient-stops: var(--tw-gradient-from), #292524, var(--tw-gradient-to, rgb(41 37 36 / 0)); -} -.via-stone-900{ - --tw-gradient-stops: var(--tw-gradient-from), #1c1917, var(--tw-gradient-to, rgb(28 25 23 / 0)); -} .via-red-50{ --tw-gradient-stops: var(--tw-gradient-from), #fcf2f2, var(--tw-gradient-to, rgb(252 242 242 / 0)); } @@ -27527,36 +22715,6 @@ input[type="date"]::-webkit-inner-spin-button, .via-orange{ --tw-gradient-stops: var(--tw-gradient-from), #f59e0b, var(--tw-gradient-to, rgb(245 158 11 / 0)); } -.via-amber-50{ - --tw-gradient-stops: var(--tw-gradient-from), #fffbeb, var(--tw-gradient-to, rgb(255 251 235 / 0)); -} -.via-amber-100{ - --tw-gradient-stops: var(--tw-gradient-from), #fef3c7, var(--tw-gradient-to, rgb(254 243 199 / 0)); -} -.via-amber-200{ - --tw-gradient-stops: var(--tw-gradient-from), #fde68a, var(--tw-gradient-to, rgb(253 230 138 / 0)); -} -.via-amber-300{ - --tw-gradient-stops: var(--tw-gradient-from), #fcd34d, var(--tw-gradient-to, rgb(252 211 77 / 0)); -} -.via-amber-400{ - --tw-gradient-stops: var(--tw-gradient-from), #fbbf24, var(--tw-gradient-to, rgb(251 191 36 / 0)); -} -.via-amber-500{ - --tw-gradient-stops: var(--tw-gradient-from), #f59e0b, var(--tw-gradient-to, rgb(245 158 11 / 0)); -} -.via-amber-600{ - --tw-gradient-stops: var(--tw-gradient-from), #d97706, var(--tw-gradient-to, rgb(217 119 6 / 0)); -} -.via-amber-700{ - --tw-gradient-stops: var(--tw-gradient-from), #b45309, var(--tw-gradient-to, rgb(180 83 9 / 0)); -} -.via-amber-800{ - --tw-gradient-stops: var(--tw-gradient-from), #92400e, var(--tw-gradient-to, rgb(146 64 14 / 0)); -} -.via-amber-900{ - --tw-gradient-stops: var(--tw-gradient-from), #78350f, var(--tw-gradient-to, rgb(120 53 15 / 0)); -} .via-yellow-50{ --tw-gradient-stops: var(--tw-gradient-from), #FDFDEA, var(--tw-gradient-to, rgb(253 253 234 / 0)); } @@ -27587,36 +22745,6 @@ input[type="date"]::-webkit-inner-spin-button, .via-yellow-900{ --tw-gradient-stops: var(--tw-gradient-from), #633112, var(--tw-gradient-to, rgb(99 49 18 / 0)); } -.via-lime-50{ - --tw-gradient-stops: var(--tw-gradient-from), #f7fee7, var(--tw-gradient-to, rgb(247 254 231 / 0)); -} -.via-lime-100{ - --tw-gradient-stops: var(--tw-gradient-from), #ecfccb, var(--tw-gradient-to, rgb(236 252 203 / 0)); -} -.via-lime-200{ - --tw-gradient-stops: var(--tw-gradient-from), #d9f99d, var(--tw-gradient-to, rgb(217 249 157 / 0)); -} -.via-lime-300{ - --tw-gradient-stops: var(--tw-gradient-from), #bef264, var(--tw-gradient-to, rgb(190 242 100 / 0)); -} -.via-lime-400{ - --tw-gradient-stops: var(--tw-gradient-from), #a3e635, var(--tw-gradient-to, rgb(163 230 53 / 0)); -} -.via-lime-500{ - --tw-gradient-stops: var(--tw-gradient-from), #84cc16, var(--tw-gradient-to, rgb(132 204 22 / 0)); -} -.via-lime-600{ - --tw-gradient-stops: var(--tw-gradient-from), #65a30d, var(--tw-gradient-to, rgb(101 163 13 / 0)); -} -.via-lime-700{ - --tw-gradient-stops: var(--tw-gradient-from), #4d7c0f, var(--tw-gradient-to, rgb(77 124 15 / 0)); -} -.via-lime-800{ - --tw-gradient-stops: var(--tw-gradient-from), #3f6212, var(--tw-gradient-to, rgb(63 98 18 / 0)); -} -.via-lime-900{ - --tw-gradient-stops: var(--tw-gradient-from), #365314, var(--tw-gradient-to, rgb(54 83 20 / 0)); -} .via-green-50{ --tw-gradient-stops: var(--tw-gradient-from), #f8faf6, var(--tw-gradient-to, rgb(248 250 246 / 0)); } @@ -27650,36 +22778,6 @@ input[type="date"]::-webkit-inner-spin-button, .via-green{ --tw-gradient-stops: var(--tw-gradient-from), #6ea152, var(--tw-gradient-to, rgb(110 161 82 / 0)); } -.via-emerald-50{ - --tw-gradient-stops: var(--tw-gradient-from), #ecfdf5, var(--tw-gradient-to, rgb(236 253 245 / 0)); -} -.via-emerald-100{ - --tw-gradient-stops: var(--tw-gradient-from), #d1fae5, var(--tw-gradient-to, rgb(209 250 229 / 0)); -} -.via-emerald-200{ - --tw-gradient-stops: var(--tw-gradient-from), #a7f3d0, var(--tw-gradient-to, rgb(167 243 208 / 0)); -} -.via-emerald-300{ - --tw-gradient-stops: var(--tw-gradient-from), #6ee7b7, var(--tw-gradient-to, rgb(110 231 183 / 0)); -} -.via-emerald-400{ - --tw-gradient-stops: var(--tw-gradient-from), #34d399, var(--tw-gradient-to, rgb(52 211 153 / 0)); -} -.via-emerald-500{ - --tw-gradient-stops: var(--tw-gradient-from), #10b981, var(--tw-gradient-to, rgb(16 185 129 / 0)); -} -.via-emerald-600{ - --tw-gradient-stops: var(--tw-gradient-from), #059669, var(--tw-gradient-to, rgb(5 150 105 / 0)); -} -.via-emerald-700{ - --tw-gradient-stops: var(--tw-gradient-from), #047857, var(--tw-gradient-to, rgb(4 120 87 / 0)); -} -.via-emerald-800{ - --tw-gradient-stops: var(--tw-gradient-from), #065f46, var(--tw-gradient-to, rgb(6 95 70 / 0)); -} -.via-emerald-900{ - --tw-gradient-stops: var(--tw-gradient-from), #064e3b, var(--tw-gradient-to, rgb(6 78 59 / 0)); -} .via-teal-50{ --tw-gradient-stops: var(--tw-gradient-from), #EDFAFA, var(--tw-gradient-to, rgb(237 250 250 / 0)); } @@ -27710,66 +22808,6 @@ input[type="date"]::-webkit-inner-spin-button, .via-teal-900{ --tw-gradient-stops: var(--tw-gradient-from), #014451, var(--tw-gradient-to, rgb(1 68 81 / 0)); } -.via-cyan-50{ - --tw-gradient-stops: var(--tw-gradient-from), #ecfeff, var(--tw-gradient-to, rgb(236 254 255 / 0)); -} -.via-cyan-100{ - --tw-gradient-stops: var(--tw-gradient-from), #cffafe, var(--tw-gradient-to, rgb(207 250 254 / 0)); -} -.via-cyan-200{ - --tw-gradient-stops: var(--tw-gradient-from), #a5f3fc, var(--tw-gradient-to, rgb(165 243 252 / 0)); -} -.via-cyan-300{ - --tw-gradient-stops: var(--tw-gradient-from), #67e8f9, var(--tw-gradient-to, rgb(103 232 249 / 0)); -} -.via-cyan-400{ - --tw-gradient-stops: var(--tw-gradient-from), #22d3ee, var(--tw-gradient-to, rgb(34 211 238 / 0)); -} -.via-cyan-500{ - --tw-gradient-stops: var(--tw-gradient-from), #06b6d4, var(--tw-gradient-to, rgb(6 182 212 / 0)); -} -.via-cyan-600{ - --tw-gradient-stops: var(--tw-gradient-from), #0891b2, var(--tw-gradient-to, rgb(8 145 178 / 0)); -} -.via-cyan-700{ - --tw-gradient-stops: var(--tw-gradient-from), #0e7490, var(--tw-gradient-to, rgb(14 116 144 / 0)); -} -.via-cyan-800{ - --tw-gradient-stops: var(--tw-gradient-from), #155e75, var(--tw-gradient-to, rgb(21 94 117 / 0)); -} -.via-cyan-900{ - --tw-gradient-stops: var(--tw-gradient-from), #164e63, var(--tw-gradient-to, rgb(22 78 99 / 0)); -} -.via-sky-50{ - --tw-gradient-stops: var(--tw-gradient-from), #f0f9ff, var(--tw-gradient-to, rgb(240 249 255 / 0)); -} -.via-sky-100{ - --tw-gradient-stops: var(--tw-gradient-from), #e0f2fe, var(--tw-gradient-to, rgb(224 242 254 / 0)); -} -.via-sky-200{ - --tw-gradient-stops: var(--tw-gradient-from), #bae6fd, var(--tw-gradient-to, rgb(186 230 253 / 0)); -} -.via-sky-300{ - --tw-gradient-stops: var(--tw-gradient-from), #7dd3fc, var(--tw-gradient-to, rgb(125 211 252 / 0)); -} -.via-sky-400{ - --tw-gradient-stops: var(--tw-gradient-from), #38bdf8, var(--tw-gradient-to, rgb(56 189 248 / 0)); -} -.via-sky-500{ - --tw-gradient-stops: var(--tw-gradient-from), #0ea5e9, var(--tw-gradient-to, rgb(14 165 233 / 0)); -} -.via-sky-600{ - --tw-gradient-stops: var(--tw-gradient-from), #0284c7, var(--tw-gradient-to, rgb(2 132 199 / 0)); -} -.via-sky-700{ - --tw-gradient-stops: var(--tw-gradient-from), #0369a1, var(--tw-gradient-to, rgb(3 105 161 / 0)); -} -.via-sky-800{ - --tw-gradient-stops: var(--tw-gradient-from), #075985, var(--tw-gradient-to, rgb(7 89 133 / 0)); -} -.via-sky-900{ - --tw-gradient-stops: var(--tw-gradient-from), #0c4a6e, var(--tw-gradient-to, rgb(12 74 110 / 0)); -} .via-blue-50{ --tw-gradient-stops: var(--tw-gradient-from), #f2f8fb, var(--tw-gradient-to, rgb(242 248 251 / 0)); } @@ -27833,36 +22871,6 @@ input[type="date"]::-webkit-inner-spin-button, .via-indigo-900{ --tw-gradient-stops: var(--tw-gradient-from), #362F78, var(--tw-gradient-to, rgb(54 47 120 / 0)); } -.via-violet-50{ - --tw-gradient-stops: var(--tw-gradient-from), #f5f3ff, var(--tw-gradient-to, rgb(245 243 255 / 0)); -} -.via-violet-100{ - --tw-gradient-stops: var(--tw-gradient-from), #ede9fe, var(--tw-gradient-to, rgb(237 233 254 / 0)); -} -.via-violet-200{ - --tw-gradient-stops: var(--tw-gradient-from), #ddd6fe, var(--tw-gradient-to, rgb(221 214 254 / 0)); -} -.via-violet-300{ - --tw-gradient-stops: var(--tw-gradient-from), #c4b5fd, var(--tw-gradient-to, rgb(196 181 253 / 0)); -} -.via-violet-400{ - --tw-gradient-stops: var(--tw-gradient-from), #a78bfa, var(--tw-gradient-to, rgb(167 139 250 / 0)); -} -.via-violet-500{ - --tw-gradient-stops: var(--tw-gradient-from), #8b5cf6, var(--tw-gradient-to, rgb(139 92 246 / 0)); -} -.via-violet-600{ - --tw-gradient-stops: var(--tw-gradient-from), #7c3aed, var(--tw-gradient-to, rgb(124 58 237 / 0)); -} -.via-violet-700{ - --tw-gradient-stops: var(--tw-gradient-from), #6d28d9, var(--tw-gradient-to, rgb(109 40 217 / 0)); -} -.via-violet-800{ - --tw-gradient-stops: var(--tw-gradient-from), #5b21b6, var(--tw-gradient-to, rgb(91 33 182 / 0)); -} -.via-violet-900{ - --tw-gradient-stops: var(--tw-gradient-from), #4c1d95, var(--tw-gradient-to, rgb(76 29 149 / 0)); -} .via-purple-50{ --tw-gradient-stops: var(--tw-gradient-from), #f7f7f9, var(--tw-gradient-to, rgb(247 247 249 / 0)); } @@ -27896,36 +22904,6 @@ input[type="date"]::-webkit-inner-spin-button, .via-purple{ --tw-gradient-stops: var(--tw-gradient-from), #55588b, var(--tw-gradient-to, rgb(85 88 139 / 0)); } -.via-fuchsia-50{ - --tw-gradient-stops: var(--tw-gradient-from), #fdf4ff, var(--tw-gradient-to, rgb(253 244 255 / 0)); -} -.via-fuchsia-100{ - --tw-gradient-stops: var(--tw-gradient-from), #fae8ff, var(--tw-gradient-to, rgb(250 232 255 / 0)); -} -.via-fuchsia-200{ - --tw-gradient-stops: var(--tw-gradient-from), #f5d0fe, var(--tw-gradient-to, rgb(245 208 254 / 0)); -} -.via-fuchsia-300{ - --tw-gradient-stops: var(--tw-gradient-from), #f0abfc, var(--tw-gradient-to, rgb(240 171 252 / 0)); -} -.via-fuchsia-400{ - --tw-gradient-stops: var(--tw-gradient-from), #e879f9, var(--tw-gradient-to, rgb(232 121 249 / 0)); -} -.via-fuchsia-500{ - --tw-gradient-stops: var(--tw-gradient-from), #d946ef, var(--tw-gradient-to, rgb(217 70 239 / 0)); -} -.via-fuchsia-600{ - --tw-gradient-stops: var(--tw-gradient-from), #c026d3, var(--tw-gradient-to, rgb(192 38 211 / 0)); -} -.via-fuchsia-700{ - --tw-gradient-stops: var(--tw-gradient-from), #a21caf, var(--tw-gradient-to, rgb(162 28 175 / 0)); -} -.via-fuchsia-800{ - --tw-gradient-stops: var(--tw-gradient-from), #86198f, var(--tw-gradient-to, rgb(134 25 143 / 0)); -} -.via-fuchsia-900{ - --tw-gradient-stops: var(--tw-gradient-from), #701a75, var(--tw-gradient-to, rgb(112 26 117 / 0)); -} .via-pink-50{ --tw-gradient-stops: var(--tw-gradient-from), #FDF2F8, var(--tw-gradient-to, rgb(253 242 248 / 0)); } @@ -27956,6 +22934,24 @@ input[type="date"]::-webkit-inner-spin-button, .via-pink-900{ --tw-gradient-stops: var(--tw-gradient-from), #751A3D, var(--tw-gradient-to, rgb(117 26 61 / 0)); } +.via-lilac-100{ + --tw-gradient-stops: var(--tw-gradient-from), #F5F7FA, var(--tw-gradient-to, rgb(245 247 250 / 0)); +} +.via-lilac-300{ + --tw-gradient-stops: var(--tw-gradient-from), #EDF0FC, var(--tw-gradient-to, rgb(237 240 252 / 0)); +} +.via-lilac-900{ + --tw-gradient-stops: var(--tw-gradient-from), #DCE2F9, var(--tw-gradient-to, rgb(220 226 249 / 0)); +} +.via-lilac{ + --tw-gradient-stops: var(--tw-gradient-from), #F8F9FE, var(--tw-gradient-to, rgb(248 249 254 / 0)); +} +.via-golden-900{ + --tw-gradient-stops: var(--tw-gradient-from), #BFB882, var(--tw-gradient-to, rgb(191 184 130 / 0)); +} +.via-golden{ + --tw-gradient-stops: var(--tw-gradient-from), #D1C989, var(--tw-gradient-to, rgb(209 201 137 / 0)); +} .via-rose-50{ --tw-gradient-stops: var(--tw-gradient-from), #fff1f2, var(--tw-gradient-to, rgb(255 241 242 / 0)); } @@ -27989,24 +22985,6 @@ input[type="date"]::-webkit-inner-spin-button, .via-rose{ --tw-gradient-stops: var(--tw-gradient-from), #f43f5e, var(--tw-gradient-to, rgb(244 63 94 / 0)); } -.via-lilac-100{ - --tw-gradient-stops: var(--tw-gradient-from), #F5F7FA, var(--tw-gradient-to, rgb(245 247 250 / 0)); -} -.via-lilac-300{ - --tw-gradient-stops: var(--tw-gradient-from), #EDF0FC, var(--tw-gradient-to, rgb(237 240 252 / 0)); -} -.via-lilac-900{ - --tw-gradient-stops: var(--tw-gradient-from), #DCE2F9, var(--tw-gradient-to, rgb(220 226 249 / 0)); -} -.via-lilac{ - --tw-gradient-stops: var(--tw-gradient-from), #F8F9FE, var(--tw-gradient-to, rgb(248 249 254 / 0)); -} -.via-golden-900{ - --tw-gradient-stops: var(--tw-gradient-from), #BFB882, var(--tw-gradient-to, rgb(191 184 130 / 0)); -} -.via-golden{ - --tw-gradient-stops: var(--tw-gradient-from), #D1C989, var(--tw-gradient-to, rgb(209 201 137 / 0)); -} .via-status-success{ --tw-gradient-stops: var(--tw-gradient-from), #F1F6EE, var(--tw-gradient-to, rgb(241 246 238 / 0)); } @@ -28076,15 +23054,12 @@ input[type="date"]::-webkit-inner-spin-button, .via-testing{ --tw-gradient-stops: var(--tw-gradient-from), #935f07, var(--tw-gradient-to, rgb(147 95 7 / 0)); } -.to-inherit{ - --tw-gradient-to: inherit; -} -.to-current{ - --tw-gradient-to: currentColor; -} .to-transparent{ --tw-gradient-to: transparent; } +.to-white{ + --tw-gradient-to: #ffffff; +} .to-black-50{ --tw-gradient-to: #f6f6f6; } @@ -28118,39 +23093,6 @@ input[type="date"]::-webkit-inner-spin-button, .to-black{ --tw-gradient-to: #424242; } -.to-white{ - --tw-gradient-to: #ffffff; -} -.to-slate-50{ - --tw-gradient-to: #f8fafc; -} -.to-slate-100{ - --tw-gradient-to: #f1f5f9; -} -.to-slate-200{ - --tw-gradient-to: #e2e8f0; -} -.to-slate-300{ - --tw-gradient-to: #cbd5e1; -} -.to-slate-400{ - --tw-gradient-to: #94a3b8; -} -.to-slate-500{ - --tw-gradient-to: #64748b; -} -.to-slate-600{ - --tw-gradient-to: #475569; -} -.to-slate-700{ - --tw-gradient-to: #334155; -} -.to-slate-800{ - --tw-gradient-to: #1e293b; -} -.to-slate-900{ - --tw-gradient-to: #0f172a; -} .to-gray-50{ --tw-gradient-to: #F9FAFB; } @@ -28181,96 +23123,6 @@ input[type="date"]::-webkit-inner-spin-button, .to-gray-900{ --tw-gradient-to: #111827; } -.to-zinc-50{ - --tw-gradient-to: #fafafa; -} -.to-zinc-100{ - --tw-gradient-to: #f4f4f5; -} -.to-zinc-200{ - --tw-gradient-to: #e4e4e7; -} -.to-zinc-300{ - --tw-gradient-to: #d4d4d8; -} -.to-zinc-400{ - --tw-gradient-to: #a1a1aa; -} -.to-zinc-500{ - --tw-gradient-to: #71717a; -} -.to-zinc-600{ - --tw-gradient-to: #52525b; -} -.to-zinc-700{ - --tw-gradient-to: #3f3f46; -} -.to-zinc-800{ - --tw-gradient-to: #27272a; -} -.to-zinc-900{ - --tw-gradient-to: #18181b; -} -.to-neutral-50{ - --tw-gradient-to: #fafafa; -} -.to-neutral-100{ - --tw-gradient-to: #f5f5f5; -} -.to-neutral-200{ - --tw-gradient-to: #e5e5e5; -} -.to-neutral-300{ - --tw-gradient-to: #d4d4d4; -} -.to-neutral-400{ - --tw-gradient-to: #a3a3a3; -} -.to-neutral-500{ - --tw-gradient-to: #737373; -} -.to-neutral-600{ - --tw-gradient-to: #525252; -} -.to-neutral-700{ - --tw-gradient-to: #404040; -} -.to-neutral-800{ - --tw-gradient-to: #262626; -} -.to-neutral-900{ - --tw-gradient-to: #171717; -} -.to-stone-50{ - --tw-gradient-to: #fafaf9; -} -.to-stone-100{ - --tw-gradient-to: #f5f5f4; -} -.to-stone-200{ - --tw-gradient-to: #e7e5e4; -} -.to-stone-300{ - --tw-gradient-to: #d6d3d1; -} -.to-stone-400{ - --tw-gradient-to: #a8a29e; -} -.to-stone-500{ - --tw-gradient-to: #78716c; -} -.to-stone-600{ - --tw-gradient-to: #57534e; -} -.to-stone-700{ - --tw-gradient-to: #44403c; -} -.to-stone-800{ - --tw-gradient-to: #292524; -} -.to-stone-900{ - --tw-gradient-to: #1c1917; -} .to-red-50{ --tw-gradient-to: #fcf2f2; } @@ -28337,36 +23189,6 @@ input[type="date"]::-webkit-inner-spin-button, .to-orange{ --tw-gradient-to: #f59e0b; } -.to-amber-50{ - --tw-gradient-to: #fffbeb; -} -.to-amber-100{ - --tw-gradient-to: #fef3c7; -} -.to-amber-200{ - --tw-gradient-to: #fde68a; -} -.to-amber-300{ - --tw-gradient-to: #fcd34d; -} -.to-amber-400{ - --tw-gradient-to: #fbbf24; -} -.to-amber-500{ - --tw-gradient-to: #f59e0b; -} -.to-amber-600{ - --tw-gradient-to: #d97706; -} -.to-amber-700{ - --tw-gradient-to: #b45309; -} -.to-amber-800{ - --tw-gradient-to: #92400e; -} -.to-amber-900{ - --tw-gradient-to: #78350f; -} .to-yellow-50{ --tw-gradient-to: #FDFDEA; } @@ -28397,36 +23219,6 @@ input[type="date"]::-webkit-inner-spin-button, .to-yellow-900{ --tw-gradient-to: #633112; } -.to-lime-50{ - --tw-gradient-to: #f7fee7; -} -.to-lime-100{ - --tw-gradient-to: #ecfccb; -} -.to-lime-200{ - --tw-gradient-to: #d9f99d; -} -.to-lime-300{ - --tw-gradient-to: #bef264; -} -.to-lime-400{ - --tw-gradient-to: #a3e635; -} -.to-lime-500{ - --tw-gradient-to: #84cc16; -} -.to-lime-600{ - --tw-gradient-to: #65a30d; -} -.to-lime-700{ - --tw-gradient-to: #4d7c0f; -} -.to-lime-800{ - --tw-gradient-to: #3f6212; -} -.to-lime-900{ - --tw-gradient-to: #365314; -} .to-green-50{ --tw-gradient-to: #f8faf6; } @@ -28460,36 +23252,6 @@ input[type="date"]::-webkit-inner-spin-button, .to-green{ --tw-gradient-to: #6ea152; } -.to-emerald-50{ - --tw-gradient-to: #ecfdf5; -} -.to-emerald-100{ - --tw-gradient-to: #d1fae5; -} -.to-emerald-200{ - --tw-gradient-to: #a7f3d0; -} -.to-emerald-300{ - --tw-gradient-to: #6ee7b7; -} -.to-emerald-400{ - --tw-gradient-to: #34d399; -} -.to-emerald-500{ - --tw-gradient-to: #10b981; -} -.to-emerald-600{ - --tw-gradient-to: #059669; -} -.to-emerald-700{ - --tw-gradient-to: #047857; -} -.to-emerald-800{ - --tw-gradient-to: #065f46; -} -.to-emerald-900{ - --tw-gradient-to: #064e3b; -} .to-teal-50{ --tw-gradient-to: #EDFAFA; } @@ -28520,66 +23282,6 @@ input[type="date"]::-webkit-inner-spin-button, .to-teal-900{ --tw-gradient-to: #014451; } -.to-cyan-50{ - --tw-gradient-to: #ecfeff; -} -.to-cyan-100{ - --tw-gradient-to: #cffafe; -} -.to-cyan-200{ - --tw-gradient-to: #a5f3fc; -} -.to-cyan-300{ - --tw-gradient-to: #67e8f9; -} -.to-cyan-400{ - --tw-gradient-to: #22d3ee; -} -.to-cyan-500{ - --tw-gradient-to: #06b6d4; -} -.to-cyan-600{ - --tw-gradient-to: #0891b2; -} -.to-cyan-700{ - --tw-gradient-to: #0e7490; -} -.to-cyan-800{ - --tw-gradient-to: #155e75; -} -.to-cyan-900{ - --tw-gradient-to: #164e63; -} -.to-sky-50{ - --tw-gradient-to: #f0f9ff; -} -.to-sky-100{ - --tw-gradient-to: #e0f2fe; -} -.to-sky-200{ - --tw-gradient-to: #bae6fd; -} -.to-sky-300{ - --tw-gradient-to: #7dd3fc; -} -.to-sky-400{ - --tw-gradient-to: #38bdf8; -} -.to-sky-500{ - --tw-gradient-to: #0ea5e9; -} -.to-sky-600{ - --tw-gradient-to: #0284c7; -} -.to-sky-700{ - --tw-gradient-to: #0369a1; -} -.to-sky-800{ - --tw-gradient-to: #075985; -} -.to-sky-900{ - --tw-gradient-to: #0c4a6e; -} .to-blue-50{ --tw-gradient-to: #f2f8fb; } @@ -28643,36 +23345,6 @@ input[type="date"]::-webkit-inner-spin-button, .to-indigo-900{ --tw-gradient-to: #362F78; } -.to-violet-50{ - --tw-gradient-to: #f5f3ff; -} -.to-violet-100{ - --tw-gradient-to: #ede9fe; -} -.to-violet-200{ - --tw-gradient-to: #ddd6fe; -} -.to-violet-300{ - --tw-gradient-to: #c4b5fd; -} -.to-violet-400{ - --tw-gradient-to: #a78bfa; -} -.to-violet-500{ - --tw-gradient-to: #8b5cf6; -} -.to-violet-600{ - --tw-gradient-to: #7c3aed; -} -.to-violet-700{ - --tw-gradient-to: #6d28d9; -} -.to-violet-800{ - --tw-gradient-to: #5b21b6; -} -.to-violet-900{ - --tw-gradient-to: #4c1d95; -} .to-purple-50{ --tw-gradient-to: #f7f7f9; } @@ -28706,36 +23378,6 @@ input[type="date"]::-webkit-inner-spin-button, .to-purple{ --tw-gradient-to: #55588b; } -.to-fuchsia-50{ - --tw-gradient-to: #fdf4ff; -} -.to-fuchsia-100{ - --tw-gradient-to: #fae8ff; -} -.to-fuchsia-200{ - --tw-gradient-to: #f5d0fe; -} -.to-fuchsia-300{ - --tw-gradient-to: #f0abfc; -} -.to-fuchsia-400{ - --tw-gradient-to: #e879f9; -} -.to-fuchsia-500{ - --tw-gradient-to: #d946ef; -} -.to-fuchsia-600{ - --tw-gradient-to: #c026d3; -} -.to-fuchsia-700{ - --tw-gradient-to: #a21caf; -} -.to-fuchsia-800{ - --tw-gradient-to: #86198f; -} -.to-fuchsia-900{ - --tw-gradient-to: #701a75; -} .to-pink-50{ --tw-gradient-to: #FDF2F8; } @@ -28766,6 +23408,24 @@ input[type="date"]::-webkit-inner-spin-button, .to-pink-900{ --tw-gradient-to: #751A3D; } +.to-lilac-100{ + --tw-gradient-to: #F5F7FA; +} +.to-lilac-300{ + --tw-gradient-to: #EDF0FC; +} +.to-lilac-900{ + --tw-gradient-to: #DCE2F9; +} +.to-lilac{ + --tw-gradient-to: #F8F9FE; +} +.to-golden-900{ + --tw-gradient-to: #BFB882; +} +.to-golden{ + --tw-gradient-to: #D1C989; +} .to-rose-50{ --tw-gradient-to: #fff1f2; } @@ -28799,24 +23459,6 @@ input[type="date"]::-webkit-inner-spin-button, .to-rose{ --tw-gradient-to: #f43f5e; } -.to-lilac-100{ - --tw-gradient-to: #F5F7FA; -} -.to-lilac-300{ - --tw-gradient-to: #EDF0FC; -} -.to-lilac-900{ - --tw-gradient-to: #DCE2F9; -} -.to-lilac{ - --tw-gradient-to: #F8F9FE; -} -.to-golden-900{ - --tw-gradient-to: #BFB882; -} -.to-golden{ - --tw-gradient-to: #D1C989; -} .to-status-success{ --tw-gradient-to: #F1F6EE; } @@ -28996,15 +23638,12 @@ input[type="date"]::-webkit-inner-spin-button, .bg-origin-content{ background-origin: content-box; } -.fill-inherit{ - fill: inherit; -} -.fill-current{ - fill: currentColor; -} .fill-transparent{ fill: transparent; } +.fill-white{ + fill: #ffffff; +} .fill-black-50{ fill: #f6f6f6; } @@ -29038,39 +23677,6 @@ input[type="date"]::-webkit-inner-spin-button, .fill-black{ fill: #424242; } -.fill-white{ - fill: #ffffff; -} -.fill-slate-50{ - fill: #f8fafc; -} -.fill-slate-100{ - fill: #f1f5f9; -} -.fill-slate-200{ - fill: #e2e8f0; -} -.fill-slate-300{ - fill: #cbd5e1; -} -.fill-slate-400{ - fill: #94a3b8; -} -.fill-slate-500{ - fill: #64748b; -} -.fill-slate-600{ - fill: #475569; -} -.fill-slate-700{ - fill: #334155; -} -.fill-slate-800{ - fill: #1e293b; -} -.fill-slate-900{ - fill: #0f172a; -} .fill-gray-50{ fill: #F9FAFB; } @@ -29101,96 +23707,6 @@ input[type="date"]::-webkit-inner-spin-button, .fill-gray-900{ fill: #111827; } -.fill-zinc-50{ - fill: #fafafa; -} -.fill-zinc-100{ - fill: #f4f4f5; -} -.fill-zinc-200{ - fill: #e4e4e7; -} -.fill-zinc-300{ - fill: #d4d4d8; -} -.fill-zinc-400{ - fill: #a1a1aa; -} -.fill-zinc-500{ - fill: #71717a; -} -.fill-zinc-600{ - fill: #52525b; -} -.fill-zinc-700{ - fill: #3f3f46; -} -.fill-zinc-800{ - fill: #27272a; -} -.fill-zinc-900{ - fill: #18181b; -} -.fill-neutral-50{ - fill: #fafafa; -} -.fill-neutral-100{ - fill: #f5f5f5; -} -.fill-neutral-200{ - fill: #e5e5e5; -} -.fill-neutral-300{ - fill: #d4d4d4; -} -.fill-neutral-400{ - fill: #a3a3a3; -} -.fill-neutral-500{ - fill: #737373; -} -.fill-neutral-600{ - fill: #525252; -} -.fill-neutral-700{ - fill: #404040; -} -.fill-neutral-800{ - fill: #262626; -} -.fill-neutral-900{ - fill: #171717; -} -.fill-stone-50{ - fill: #fafaf9; -} -.fill-stone-100{ - fill: #f5f5f4; -} -.fill-stone-200{ - fill: #e7e5e4; -} -.fill-stone-300{ - fill: #d6d3d1; -} -.fill-stone-400{ - fill: #a8a29e; -} -.fill-stone-500{ - fill: #78716c; -} -.fill-stone-600{ - fill: #57534e; -} -.fill-stone-700{ - fill: #44403c; -} -.fill-stone-800{ - fill: #292524; -} -.fill-stone-900{ - fill: #1c1917; -} .fill-red-50{ fill: #fcf2f2; } @@ -29257,36 +23773,6 @@ input[type="date"]::-webkit-inner-spin-button, .fill-orange{ fill: #f59e0b; } -.fill-amber-50{ - fill: #fffbeb; -} -.fill-amber-100{ - fill: #fef3c7; -} -.fill-amber-200{ - fill: #fde68a; -} -.fill-amber-300{ - fill: #fcd34d; -} -.fill-amber-400{ - fill: #fbbf24; -} -.fill-amber-500{ - fill: #f59e0b; -} -.fill-amber-600{ - fill: #d97706; -} -.fill-amber-700{ - fill: #b45309; -} -.fill-amber-800{ - fill: #92400e; -} -.fill-amber-900{ - fill: #78350f; -} .fill-yellow-50{ fill: #FDFDEA; } @@ -29317,36 +23803,6 @@ input[type="date"]::-webkit-inner-spin-button, .fill-yellow-900{ fill: #633112; } -.fill-lime-50{ - fill: #f7fee7; -} -.fill-lime-100{ - fill: #ecfccb; -} -.fill-lime-200{ - fill: #d9f99d; -} -.fill-lime-300{ - fill: #bef264; -} -.fill-lime-400{ - fill: #a3e635; -} -.fill-lime-500{ - fill: #84cc16; -} -.fill-lime-600{ - fill: #65a30d; -} -.fill-lime-700{ - fill: #4d7c0f; -} -.fill-lime-800{ - fill: #3f6212; -} -.fill-lime-900{ - fill: #365314; -} .fill-green-50{ fill: #f8faf6; } @@ -29380,36 +23836,6 @@ input[type="date"]::-webkit-inner-spin-button, .fill-green{ fill: #6ea152; } -.fill-emerald-50{ - fill: #ecfdf5; -} -.fill-emerald-100{ - fill: #d1fae5; -} -.fill-emerald-200{ - fill: #a7f3d0; -} -.fill-emerald-300{ - fill: #6ee7b7; -} -.fill-emerald-400{ - fill: #34d399; -} -.fill-emerald-500{ - fill: #10b981; -} -.fill-emerald-600{ - fill: #059669; -} -.fill-emerald-700{ - fill: #047857; -} -.fill-emerald-800{ - fill: #065f46; -} -.fill-emerald-900{ - fill: #064e3b; -} .fill-teal-50{ fill: #EDFAFA; } @@ -29440,66 +23866,6 @@ input[type="date"]::-webkit-inner-spin-button, .fill-teal-900{ fill: #014451; } -.fill-cyan-50{ - fill: #ecfeff; -} -.fill-cyan-100{ - fill: #cffafe; -} -.fill-cyan-200{ - fill: #a5f3fc; -} -.fill-cyan-300{ - fill: #67e8f9; -} -.fill-cyan-400{ - fill: #22d3ee; -} -.fill-cyan-500{ - fill: #06b6d4; -} -.fill-cyan-600{ - fill: #0891b2; -} -.fill-cyan-700{ - fill: #0e7490; -} -.fill-cyan-800{ - fill: #155e75; -} -.fill-cyan-900{ - fill: #164e63; -} -.fill-sky-50{ - fill: #f0f9ff; -} -.fill-sky-100{ - fill: #e0f2fe; -} -.fill-sky-200{ - fill: #bae6fd; -} -.fill-sky-300{ - fill: #7dd3fc; -} -.fill-sky-400{ - fill: #38bdf8; -} -.fill-sky-500{ - fill: #0ea5e9; -} -.fill-sky-600{ - fill: #0284c7; -} -.fill-sky-700{ - fill: #0369a1; -} -.fill-sky-800{ - fill: #075985; -} -.fill-sky-900{ - fill: #0c4a6e; -} .fill-blue-50{ fill: #f2f8fb; } @@ -29563,36 +23929,6 @@ input[type="date"]::-webkit-inner-spin-button, .fill-indigo-900{ fill: #362F78; } -.fill-violet-50{ - fill: #f5f3ff; -} -.fill-violet-100{ - fill: #ede9fe; -} -.fill-violet-200{ - fill: #ddd6fe; -} -.fill-violet-300{ - fill: #c4b5fd; -} -.fill-violet-400{ - fill: #a78bfa; -} -.fill-violet-500{ - fill: #8b5cf6; -} -.fill-violet-600{ - fill: #7c3aed; -} -.fill-violet-700{ - fill: #6d28d9; -} -.fill-violet-800{ - fill: #5b21b6; -} -.fill-violet-900{ - fill: #4c1d95; -} .fill-purple-50{ fill: #f7f7f9; } @@ -29626,36 +23962,6 @@ input[type="date"]::-webkit-inner-spin-button, .fill-purple{ fill: #55588b; } -.fill-fuchsia-50{ - fill: #fdf4ff; -} -.fill-fuchsia-100{ - fill: #fae8ff; -} -.fill-fuchsia-200{ - fill: #f5d0fe; -} -.fill-fuchsia-300{ - fill: #f0abfc; -} -.fill-fuchsia-400{ - fill: #e879f9; -} -.fill-fuchsia-500{ - fill: #d946ef; -} -.fill-fuchsia-600{ - fill: #c026d3; -} -.fill-fuchsia-700{ - fill: #a21caf; -} -.fill-fuchsia-800{ - fill: #86198f; -} -.fill-fuchsia-900{ - fill: #701a75; -} .fill-pink-50{ fill: #FDF2F8; } @@ -29686,6 +23992,24 @@ input[type="date"]::-webkit-inner-spin-button, .fill-pink-900{ fill: #751A3D; } +.fill-lilac-100{ + fill: #F5F7FA; +} +.fill-lilac-300{ + fill: #EDF0FC; +} +.fill-lilac-900{ + fill: #DCE2F9; +} +.fill-lilac{ + fill: #F8F9FE; +} +.fill-golden-900{ + fill: #BFB882; +} +.fill-golden{ + fill: #D1C989; +} .fill-rose-50{ fill: #fff1f2; } @@ -29719,24 +24043,6 @@ input[type="date"]::-webkit-inner-spin-button, .fill-rose{ fill: #f43f5e; } -.fill-lilac-100{ - fill: #F5F7FA; -} -.fill-lilac-300{ - fill: #EDF0FC; -} -.fill-lilac-900{ - fill: #DCE2F9; -} -.fill-lilac{ - fill: #F8F9FE; -} -.fill-golden-900{ - fill: #BFB882; -} -.fill-golden{ - fill: #D1C989; -} .fill-status-success{ fill: #F1F6EE; } @@ -29806,15 +24112,12 @@ input[type="date"]::-webkit-inner-spin-button, .fill-testing{ fill: #935f07; } -.stroke-inherit{ - stroke: inherit; -} -.stroke-current{ - stroke: currentColor; -} .stroke-transparent{ stroke: transparent; } +.stroke-white{ + stroke: #ffffff; +} .stroke-black-50{ stroke: #f6f6f6; } @@ -29848,39 +24151,6 @@ input[type="date"]::-webkit-inner-spin-button, .stroke-black{ stroke: #424242; } -.stroke-white{ - stroke: #ffffff; -} -.stroke-slate-50{ - stroke: #f8fafc; -} -.stroke-slate-100{ - stroke: #f1f5f9; -} -.stroke-slate-200{ - stroke: #e2e8f0; -} -.stroke-slate-300{ - stroke: #cbd5e1; -} -.stroke-slate-400{ - stroke: #94a3b8; -} -.stroke-slate-500{ - stroke: #64748b; -} -.stroke-slate-600{ - stroke: #475569; -} -.stroke-slate-700{ - stroke: #334155; -} -.stroke-slate-800{ - stroke: #1e293b; -} -.stroke-slate-900{ - stroke: #0f172a; -} .stroke-gray-50{ stroke: #F9FAFB; } @@ -29911,96 +24181,6 @@ input[type="date"]::-webkit-inner-spin-button, .stroke-gray-900{ stroke: #111827; } -.stroke-zinc-50{ - stroke: #fafafa; -} -.stroke-zinc-100{ - stroke: #f4f4f5; -} -.stroke-zinc-200{ - stroke: #e4e4e7; -} -.stroke-zinc-300{ - stroke: #d4d4d8; -} -.stroke-zinc-400{ - stroke: #a1a1aa; -} -.stroke-zinc-500{ - stroke: #71717a; -} -.stroke-zinc-600{ - stroke: #52525b; -} -.stroke-zinc-700{ - stroke: #3f3f46; -} -.stroke-zinc-800{ - stroke: #27272a; -} -.stroke-zinc-900{ - stroke: #18181b; -} -.stroke-neutral-50{ - stroke: #fafafa; -} -.stroke-neutral-100{ - stroke: #f5f5f5; -} -.stroke-neutral-200{ - stroke: #e5e5e5; -} -.stroke-neutral-300{ - stroke: #d4d4d4; -} -.stroke-neutral-400{ - stroke: #a3a3a3; -} -.stroke-neutral-500{ - stroke: #737373; -} -.stroke-neutral-600{ - stroke: #525252; -} -.stroke-neutral-700{ - stroke: #404040; -} -.stroke-neutral-800{ - stroke: #262626; -} -.stroke-neutral-900{ - stroke: #171717; -} -.stroke-stone-50{ - stroke: #fafaf9; -} -.stroke-stone-100{ - stroke: #f5f5f4; -} -.stroke-stone-200{ - stroke: #e7e5e4; -} -.stroke-stone-300{ - stroke: #d6d3d1; -} -.stroke-stone-400{ - stroke: #a8a29e; -} -.stroke-stone-500{ - stroke: #78716c; -} -.stroke-stone-600{ - stroke: #57534e; -} -.stroke-stone-700{ - stroke: #44403c; -} -.stroke-stone-800{ - stroke: #292524; -} -.stroke-stone-900{ - stroke: #1c1917; -} .stroke-red-50{ stroke: #fcf2f2; } @@ -30067,36 +24247,6 @@ input[type="date"]::-webkit-inner-spin-button, .stroke-orange{ stroke: #f59e0b; } -.stroke-amber-50{ - stroke: #fffbeb; -} -.stroke-amber-100{ - stroke: #fef3c7; -} -.stroke-amber-200{ - stroke: #fde68a; -} -.stroke-amber-300{ - stroke: #fcd34d; -} -.stroke-amber-400{ - stroke: #fbbf24; -} -.stroke-amber-500{ - stroke: #f59e0b; -} -.stroke-amber-600{ - stroke: #d97706; -} -.stroke-amber-700{ - stroke: #b45309; -} -.stroke-amber-800{ - stroke: #92400e; -} -.stroke-amber-900{ - stroke: #78350f; -} .stroke-yellow-50{ stroke: #FDFDEA; } @@ -30127,36 +24277,6 @@ input[type="date"]::-webkit-inner-spin-button, .stroke-yellow-900{ stroke: #633112; } -.stroke-lime-50{ - stroke: #f7fee7; -} -.stroke-lime-100{ - stroke: #ecfccb; -} -.stroke-lime-200{ - stroke: #d9f99d; -} -.stroke-lime-300{ - stroke: #bef264; -} -.stroke-lime-400{ - stroke: #a3e635; -} -.stroke-lime-500{ - stroke: #84cc16; -} -.stroke-lime-600{ - stroke: #65a30d; -} -.stroke-lime-700{ - stroke: #4d7c0f; -} -.stroke-lime-800{ - stroke: #3f6212; -} -.stroke-lime-900{ - stroke: #365314; -} .stroke-green-50{ stroke: #f8faf6; } @@ -30190,36 +24310,6 @@ input[type="date"]::-webkit-inner-spin-button, .stroke-green{ stroke: #6ea152; } -.stroke-emerald-50{ - stroke: #ecfdf5; -} -.stroke-emerald-100{ - stroke: #d1fae5; -} -.stroke-emerald-200{ - stroke: #a7f3d0; -} -.stroke-emerald-300{ - stroke: #6ee7b7; -} -.stroke-emerald-400{ - stroke: #34d399; -} -.stroke-emerald-500{ - stroke: #10b981; -} -.stroke-emerald-600{ - stroke: #059669; -} -.stroke-emerald-700{ - stroke: #047857; -} -.stroke-emerald-800{ - stroke: #065f46; -} -.stroke-emerald-900{ - stroke: #064e3b; -} .stroke-teal-50{ stroke: #EDFAFA; } @@ -30250,66 +24340,6 @@ input[type="date"]::-webkit-inner-spin-button, .stroke-teal-900{ stroke: #014451; } -.stroke-cyan-50{ - stroke: #ecfeff; -} -.stroke-cyan-100{ - stroke: #cffafe; -} -.stroke-cyan-200{ - stroke: #a5f3fc; -} -.stroke-cyan-300{ - stroke: #67e8f9; -} -.stroke-cyan-400{ - stroke: #22d3ee; -} -.stroke-cyan-500{ - stroke: #06b6d4; -} -.stroke-cyan-600{ - stroke: #0891b2; -} -.stroke-cyan-700{ - stroke: #0e7490; -} -.stroke-cyan-800{ - stroke: #155e75; -} -.stroke-cyan-900{ - stroke: #164e63; -} -.stroke-sky-50{ - stroke: #f0f9ff; -} -.stroke-sky-100{ - stroke: #e0f2fe; -} -.stroke-sky-200{ - stroke: #bae6fd; -} -.stroke-sky-300{ - stroke: #7dd3fc; -} -.stroke-sky-400{ - stroke: #38bdf8; -} -.stroke-sky-500{ - stroke: #0ea5e9; -} -.stroke-sky-600{ - stroke: #0284c7; -} -.stroke-sky-700{ - stroke: #0369a1; -} -.stroke-sky-800{ - stroke: #075985; -} -.stroke-sky-900{ - stroke: #0c4a6e; -} .stroke-blue-50{ stroke: #f2f8fb; } @@ -30373,36 +24403,6 @@ input[type="date"]::-webkit-inner-spin-button, .stroke-indigo-900{ stroke: #362F78; } -.stroke-violet-50{ - stroke: #f5f3ff; -} -.stroke-violet-100{ - stroke: #ede9fe; -} -.stroke-violet-200{ - stroke: #ddd6fe; -} -.stroke-violet-300{ - stroke: #c4b5fd; -} -.stroke-violet-400{ - stroke: #a78bfa; -} -.stroke-violet-500{ - stroke: #8b5cf6; -} -.stroke-violet-600{ - stroke: #7c3aed; -} -.stroke-violet-700{ - stroke: #6d28d9; -} -.stroke-violet-800{ - stroke: #5b21b6; -} -.stroke-violet-900{ - stroke: #4c1d95; -} .stroke-purple-50{ stroke: #f7f7f9; } @@ -30436,36 +24436,6 @@ input[type="date"]::-webkit-inner-spin-button, .stroke-purple{ stroke: #55588b; } -.stroke-fuchsia-50{ - stroke: #fdf4ff; -} -.stroke-fuchsia-100{ - stroke: #fae8ff; -} -.stroke-fuchsia-200{ - stroke: #f5d0fe; -} -.stroke-fuchsia-300{ - stroke: #f0abfc; -} -.stroke-fuchsia-400{ - stroke: #e879f9; -} -.stroke-fuchsia-500{ - stroke: #d946ef; -} -.stroke-fuchsia-600{ - stroke: #c026d3; -} -.stroke-fuchsia-700{ - stroke: #a21caf; -} -.stroke-fuchsia-800{ - stroke: #86198f; -} -.stroke-fuchsia-900{ - stroke: #701a75; -} .stroke-pink-50{ stroke: #FDF2F8; } @@ -30496,6 +24466,24 @@ input[type="date"]::-webkit-inner-spin-button, .stroke-pink-900{ stroke: #751A3D; } +.stroke-lilac-100{ + stroke: #F5F7FA; +} +.stroke-lilac-300{ + stroke: #EDF0FC; +} +.stroke-lilac-900{ + stroke: #DCE2F9; +} +.stroke-lilac{ + stroke: #F8F9FE; +} +.stroke-golden-900{ + stroke: #BFB882; +} +.stroke-golden{ + stroke: #D1C989; +} .stroke-rose-50{ stroke: #fff1f2; } @@ -30529,24 +24517,6 @@ input[type="date"]::-webkit-inner-spin-button, .stroke-rose{ stroke: #f43f5e; } -.stroke-lilac-100{ - stroke: #F5F7FA; -} -.stroke-lilac-300{ - stroke: #EDF0FC; -} -.stroke-lilac-900{ - stroke: #DCE2F9; -} -.stroke-lilac{ - stroke: #F8F9FE; -} -.stroke-golden-900{ - stroke: #BFB882; -} -.stroke-golden{ - stroke: #D1C989; -} .stroke-status-success{ stroke: #F1F6EE; } @@ -32212,15 +26182,13 @@ input[type="date"]::-webkit-inner-spin-button, .-tracking-widest{ letter-spacing: -0.1em; } -.text-inherit{ - color: inherit; -} -.text-current{ - color: currentColor; -} .text-transparent{ color: transparent; } +.text-white{ + --tw-text-opacity: 1; + color: rgb(255 255 255 / var(--tw-text-opacity)); +} .text-black-50{ --tw-text-opacity: 1; color: rgb(246 246 246 / var(--tw-text-opacity)); @@ -32265,50 +26233,6 @@ input[type="date"]::-webkit-inner-spin-button, --tw-text-opacity: 1; color: rgb(66 66 66 / var(--tw-text-opacity)); } -.text-white{ - --tw-text-opacity: 1; - color: rgb(255 255 255 / var(--tw-text-opacity)); -} -.text-slate-50{ - --tw-text-opacity: 1; - color: rgb(248 250 252 / var(--tw-text-opacity)); -} -.text-slate-100{ - --tw-text-opacity: 1; - color: rgb(241 245 249 / var(--tw-text-opacity)); -} -.text-slate-200{ - --tw-text-opacity: 1; - color: rgb(226 232 240 / var(--tw-text-opacity)); -} -.text-slate-300{ - --tw-text-opacity: 1; - color: rgb(203 213 225 / var(--tw-text-opacity)); -} -.text-slate-400{ - --tw-text-opacity: 1; - color: rgb(148 163 184 / var(--tw-text-opacity)); -} -.text-slate-500{ - --tw-text-opacity: 1; - color: rgb(100 116 139 / var(--tw-text-opacity)); -} -.text-slate-600{ - --tw-text-opacity: 1; - color: rgb(71 85 105 / var(--tw-text-opacity)); -} -.text-slate-700{ - --tw-text-opacity: 1; - color: rgb(51 65 85 / var(--tw-text-opacity)); -} -.text-slate-800{ - --tw-text-opacity: 1; - color: rgb(30 41 59 / var(--tw-text-opacity)); -} -.text-slate-900{ - --tw-text-opacity: 1; - color: rgb(15 23 42 / var(--tw-text-opacity)); -} .text-gray-50{ --tw-text-opacity: 1; color: rgb(249 250 251 / var(--tw-text-opacity)); @@ -32349,126 +26273,6 @@ input[type="date"]::-webkit-inner-spin-button, --tw-text-opacity: 1; color: rgb(17 24 39 / var(--tw-text-opacity)); } -.text-zinc-50{ - --tw-text-opacity: 1; - color: rgb(250 250 250 / var(--tw-text-opacity)); -} -.text-zinc-100{ - --tw-text-opacity: 1; - color: rgb(244 244 245 / var(--tw-text-opacity)); -} -.text-zinc-200{ - --tw-text-opacity: 1; - color: rgb(228 228 231 / var(--tw-text-opacity)); -} -.text-zinc-300{ - --tw-text-opacity: 1; - color: rgb(212 212 216 / var(--tw-text-opacity)); -} -.text-zinc-400{ - --tw-text-opacity: 1; - color: rgb(161 161 170 / var(--tw-text-opacity)); -} -.text-zinc-500{ - --tw-text-opacity: 1; - color: rgb(113 113 122 / var(--tw-text-opacity)); -} -.text-zinc-600{ - --tw-text-opacity: 1; - color: rgb(82 82 91 / var(--tw-text-opacity)); -} -.text-zinc-700{ - --tw-text-opacity: 1; - color: rgb(63 63 70 / var(--tw-text-opacity)); -} -.text-zinc-800{ - --tw-text-opacity: 1; - color: rgb(39 39 42 / var(--tw-text-opacity)); -} -.text-zinc-900{ - --tw-text-opacity: 1; - color: rgb(24 24 27 / var(--tw-text-opacity)); -} -.text-neutral-50{ - --tw-text-opacity: 1; - color: rgb(250 250 250 / var(--tw-text-opacity)); -} -.text-neutral-100{ - --tw-text-opacity: 1; - color: rgb(245 245 245 / var(--tw-text-opacity)); -} -.text-neutral-200{ - --tw-text-opacity: 1; - color: rgb(229 229 229 / var(--tw-text-opacity)); -} -.text-neutral-300{ - --tw-text-opacity: 1; - color: rgb(212 212 212 / var(--tw-text-opacity)); -} -.text-neutral-400{ - --tw-text-opacity: 1; - color: rgb(163 163 163 / var(--tw-text-opacity)); -} -.text-neutral-500{ - --tw-text-opacity: 1; - color: rgb(115 115 115 / var(--tw-text-opacity)); -} -.text-neutral-600{ - --tw-text-opacity: 1; - color: rgb(82 82 82 / var(--tw-text-opacity)); -} -.text-neutral-700{ - --tw-text-opacity: 1; - color: rgb(64 64 64 / var(--tw-text-opacity)); -} -.text-neutral-800{ - --tw-text-opacity: 1; - color: rgb(38 38 38 / var(--tw-text-opacity)); -} -.text-neutral-900{ - --tw-text-opacity: 1; - color: rgb(23 23 23 / var(--tw-text-opacity)); -} -.text-stone-50{ - --tw-text-opacity: 1; - color: rgb(250 250 249 / var(--tw-text-opacity)); -} -.text-stone-100{ - --tw-text-opacity: 1; - color: rgb(245 245 244 / var(--tw-text-opacity)); -} -.text-stone-200{ - --tw-text-opacity: 1; - color: rgb(231 229 228 / var(--tw-text-opacity)); -} -.text-stone-300{ - --tw-text-opacity: 1; - color: rgb(214 211 209 / var(--tw-text-opacity)); -} -.text-stone-400{ - --tw-text-opacity: 1; - color: rgb(168 162 158 / var(--tw-text-opacity)); -} -.text-stone-500{ - --tw-text-opacity: 1; - color: rgb(120 113 108 / var(--tw-text-opacity)); -} -.text-stone-600{ - --tw-text-opacity: 1; - color: rgb(87 83 78 / var(--tw-text-opacity)); -} -.text-stone-700{ - --tw-text-opacity: 1; - color: rgb(68 64 60 / var(--tw-text-opacity)); -} -.text-stone-800{ - --tw-text-opacity: 1; - color: rgb(41 37 36 / var(--tw-text-opacity)); -} -.text-stone-900{ - --tw-text-opacity: 1; - color: rgb(28 25 23 / var(--tw-text-opacity)); -} .text-red-50{ --tw-text-opacity: 1; color: rgb(252 242 242 / var(--tw-text-opacity)); @@ -32557,46 +26361,6 @@ input[type="date"]::-webkit-inner-spin-button, --tw-text-opacity: 1; color: rgb(245 158 11 / var(--tw-text-opacity)); } -.text-amber-50{ - --tw-text-opacity: 1; - color: rgb(255 251 235 / var(--tw-text-opacity)); -} -.text-amber-100{ - --tw-text-opacity: 1; - color: rgb(254 243 199 / var(--tw-text-opacity)); -} -.text-amber-200{ - --tw-text-opacity: 1; - color: rgb(253 230 138 / var(--tw-text-opacity)); -} -.text-amber-300{ - --tw-text-opacity: 1; - color: rgb(252 211 77 / var(--tw-text-opacity)); -} -.text-amber-400{ - --tw-text-opacity: 1; - color: rgb(251 191 36 / var(--tw-text-opacity)); -} -.text-amber-500{ - --tw-text-opacity: 1; - color: rgb(245 158 11 / var(--tw-text-opacity)); -} -.text-amber-600{ - --tw-text-opacity: 1; - color: rgb(217 119 6 / var(--tw-text-opacity)); -} -.text-amber-700{ - --tw-text-opacity: 1; - color: rgb(180 83 9 / var(--tw-text-opacity)); -} -.text-amber-800{ - --tw-text-opacity: 1; - color: rgb(146 64 14 / var(--tw-text-opacity)); -} -.text-amber-900{ - --tw-text-opacity: 1; - color: rgb(120 53 15 / var(--tw-text-opacity)); -} .text-yellow-50{ --tw-text-opacity: 1; color: rgb(253 253 234 / var(--tw-text-opacity)); @@ -32637,46 +26401,6 @@ input[type="date"]::-webkit-inner-spin-button, --tw-text-opacity: 1; color: rgb(99 49 18 / var(--tw-text-opacity)); } -.text-lime-50{ - --tw-text-opacity: 1; - color: rgb(247 254 231 / var(--tw-text-opacity)); -} -.text-lime-100{ - --tw-text-opacity: 1; - color: rgb(236 252 203 / var(--tw-text-opacity)); -} -.text-lime-200{ - --tw-text-opacity: 1; - color: rgb(217 249 157 / var(--tw-text-opacity)); -} -.text-lime-300{ - --tw-text-opacity: 1; - color: rgb(190 242 100 / var(--tw-text-opacity)); -} -.text-lime-400{ - --tw-text-opacity: 1; - color: rgb(163 230 53 / var(--tw-text-opacity)); -} -.text-lime-500{ - --tw-text-opacity: 1; - color: rgb(132 204 22 / var(--tw-text-opacity)); -} -.text-lime-600{ - --tw-text-opacity: 1; - color: rgb(101 163 13 / var(--tw-text-opacity)); -} -.text-lime-700{ - --tw-text-opacity: 1; - color: rgb(77 124 15 / var(--tw-text-opacity)); -} -.text-lime-800{ - --tw-text-opacity: 1; - color: rgb(63 98 18 / var(--tw-text-opacity)); -} -.text-lime-900{ - --tw-text-opacity: 1; - color: rgb(54 83 20 / var(--tw-text-opacity)); -} .text-green-50{ --tw-text-opacity: 1; color: rgb(248 250 246 / var(--tw-text-opacity)); @@ -32721,46 +26445,6 @@ input[type="date"]::-webkit-inner-spin-button, --tw-text-opacity: 1; color: rgb(110 161 82 / var(--tw-text-opacity)); } -.text-emerald-50{ - --tw-text-opacity: 1; - color: rgb(236 253 245 / var(--tw-text-opacity)); -} -.text-emerald-100{ - --tw-text-opacity: 1; - color: rgb(209 250 229 / var(--tw-text-opacity)); -} -.text-emerald-200{ - --tw-text-opacity: 1; - color: rgb(167 243 208 / var(--tw-text-opacity)); -} -.text-emerald-300{ - --tw-text-opacity: 1; - color: rgb(110 231 183 / var(--tw-text-opacity)); -} -.text-emerald-400{ - --tw-text-opacity: 1; - color: rgb(52 211 153 / var(--tw-text-opacity)); -} -.text-emerald-500{ - --tw-text-opacity: 1; - color: rgb(16 185 129 / var(--tw-text-opacity)); -} -.text-emerald-600{ - --tw-text-opacity: 1; - color: rgb(5 150 105 / var(--tw-text-opacity)); -} -.text-emerald-700{ - --tw-text-opacity: 1; - color: rgb(4 120 87 / var(--tw-text-opacity)); -} -.text-emerald-800{ - --tw-text-opacity: 1; - color: rgb(6 95 70 / var(--tw-text-opacity)); -} -.text-emerald-900{ - --tw-text-opacity: 1; - color: rgb(6 78 59 / var(--tw-text-opacity)); -} .text-teal-50{ --tw-text-opacity: 1; color: rgb(237 250 250 / var(--tw-text-opacity)); @@ -32801,86 +26485,6 @@ input[type="date"]::-webkit-inner-spin-button, --tw-text-opacity: 1; color: rgb(1 68 81 / var(--tw-text-opacity)); } -.text-cyan-50{ - --tw-text-opacity: 1; - color: rgb(236 254 255 / var(--tw-text-opacity)); -} -.text-cyan-100{ - --tw-text-opacity: 1; - color: rgb(207 250 254 / var(--tw-text-opacity)); -} -.text-cyan-200{ - --tw-text-opacity: 1; - color: rgb(165 243 252 / var(--tw-text-opacity)); -} -.text-cyan-300{ - --tw-text-opacity: 1; - color: rgb(103 232 249 / var(--tw-text-opacity)); -} -.text-cyan-400{ - --tw-text-opacity: 1; - color: rgb(34 211 238 / var(--tw-text-opacity)); -} -.text-cyan-500{ - --tw-text-opacity: 1; - color: rgb(6 182 212 / var(--tw-text-opacity)); -} -.text-cyan-600{ - --tw-text-opacity: 1; - color: rgb(8 145 178 / var(--tw-text-opacity)); -} -.text-cyan-700{ - --tw-text-opacity: 1; - color: rgb(14 116 144 / var(--tw-text-opacity)); -} -.text-cyan-800{ - --tw-text-opacity: 1; - color: rgb(21 94 117 / var(--tw-text-opacity)); -} -.text-cyan-900{ - --tw-text-opacity: 1; - color: rgb(22 78 99 / var(--tw-text-opacity)); -} -.text-sky-50{ - --tw-text-opacity: 1; - color: rgb(240 249 255 / var(--tw-text-opacity)); -} -.text-sky-100{ - --tw-text-opacity: 1; - color: rgb(224 242 254 / var(--tw-text-opacity)); -} -.text-sky-200{ - --tw-text-opacity: 1; - color: rgb(186 230 253 / var(--tw-text-opacity)); -} -.text-sky-300{ - --tw-text-opacity: 1; - color: rgb(125 211 252 / var(--tw-text-opacity)); -} -.text-sky-400{ - --tw-text-opacity: 1; - color: rgb(56 189 248 / var(--tw-text-opacity)); -} -.text-sky-500{ - --tw-text-opacity: 1; - color: rgb(14 165 233 / var(--tw-text-opacity)); -} -.text-sky-600{ - --tw-text-opacity: 1; - color: rgb(2 132 199 / var(--tw-text-opacity)); -} -.text-sky-700{ - --tw-text-opacity: 1; - color: rgb(3 105 161 / var(--tw-text-opacity)); -} -.text-sky-800{ - --tw-text-opacity: 1; - color: rgb(7 89 133 / var(--tw-text-opacity)); -} -.text-sky-900{ - --tw-text-opacity: 1; - color: rgb(12 74 110 / var(--tw-text-opacity)); -} .text-blue-50{ --tw-text-opacity: 1; color: rgb(242 248 251 / var(--tw-text-opacity)); @@ -32965,46 +26569,6 @@ input[type="date"]::-webkit-inner-spin-button, --tw-text-opacity: 1; color: rgb(54 47 120 / var(--tw-text-opacity)); } -.text-violet-50{ - --tw-text-opacity: 1; - color: rgb(245 243 255 / var(--tw-text-opacity)); -} -.text-violet-100{ - --tw-text-opacity: 1; - color: rgb(237 233 254 / var(--tw-text-opacity)); -} -.text-violet-200{ - --tw-text-opacity: 1; - color: rgb(221 214 254 / var(--tw-text-opacity)); -} -.text-violet-300{ - --tw-text-opacity: 1; - color: rgb(196 181 253 / var(--tw-text-opacity)); -} -.text-violet-400{ - --tw-text-opacity: 1; - color: rgb(167 139 250 / var(--tw-text-opacity)); -} -.text-violet-500{ - --tw-text-opacity: 1; - color: rgb(139 92 246 / var(--tw-text-opacity)); -} -.text-violet-600{ - --tw-text-opacity: 1; - color: rgb(124 58 237 / var(--tw-text-opacity)); -} -.text-violet-700{ - --tw-text-opacity: 1; - color: rgb(109 40 217 / var(--tw-text-opacity)); -} -.text-violet-800{ - --tw-text-opacity: 1; - color: rgb(91 33 182 / var(--tw-text-opacity)); -} -.text-violet-900{ - --tw-text-opacity: 1; - color: rgb(76 29 149 / var(--tw-text-opacity)); -} .text-purple-50{ --tw-text-opacity: 1; color: rgb(247 247 249 / var(--tw-text-opacity)); @@ -33049,46 +26613,6 @@ input[type="date"]::-webkit-inner-spin-button, --tw-text-opacity: 1; color: rgb(85 88 139 / var(--tw-text-opacity)); } -.text-fuchsia-50{ - --tw-text-opacity: 1; - color: rgb(253 244 255 / var(--tw-text-opacity)); -} -.text-fuchsia-100{ - --tw-text-opacity: 1; - color: rgb(250 232 255 / var(--tw-text-opacity)); -} -.text-fuchsia-200{ - --tw-text-opacity: 1; - color: rgb(245 208 254 / var(--tw-text-opacity)); -} -.text-fuchsia-300{ - --tw-text-opacity: 1; - color: rgb(240 171 252 / var(--tw-text-opacity)); -} -.text-fuchsia-400{ - --tw-text-opacity: 1; - color: rgb(232 121 249 / var(--tw-text-opacity)); -} -.text-fuchsia-500{ - --tw-text-opacity: 1; - color: rgb(217 70 239 / var(--tw-text-opacity)); -} -.text-fuchsia-600{ - --tw-text-opacity: 1; - color: rgb(192 38 211 / var(--tw-text-opacity)); -} -.text-fuchsia-700{ - --tw-text-opacity: 1; - color: rgb(162 28 175 / var(--tw-text-opacity)); -} -.text-fuchsia-800{ - --tw-text-opacity: 1; - color: rgb(134 25 143 / var(--tw-text-opacity)); -} -.text-fuchsia-900{ - --tw-text-opacity: 1; - color: rgb(112 26 117 / var(--tw-text-opacity)); -} .text-pink-50{ --tw-text-opacity: 1; color: rgb(253 242 248 / var(--tw-text-opacity)); @@ -33129,6 +26653,30 @@ input[type="date"]::-webkit-inner-spin-button, --tw-text-opacity: 1; color: rgb(117 26 61 / var(--tw-text-opacity)); } +.text-lilac-100{ + --tw-text-opacity: 1; + color: rgb(245 247 250 / var(--tw-text-opacity)); +} +.text-lilac-300{ + --tw-text-opacity: 1; + color: rgb(237 240 252 / var(--tw-text-opacity)); +} +.text-lilac-900{ + --tw-text-opacity: 1; + color: rgb(220 226 249 / var(--tw-text-opacity)); +} +.text-lilac{ + --tw-text-opacity: 1; + color: rgb(248 249 254 / var(--tw-text-opacity)); +} +.text-golden-900{ + --tw-text-opacity: 1; + color: rgb(191 184 130 / var(--tw-text-opacity)); +} +.text-golden{ + --tw-text-opacity: 1; + color: rgb(209 201 137 / var(--tw-text-opacity)); +} .text-rose-50{ --tw-text-opacity: 1; color: rgb(255 241 242 / var(--tw-text-opacity)); @@ -33173,30 +26721,6 @@ input[type="date"]::-webkit-inner-spin-button, --tw-text-opacity: 1; color: rgb(244 63 94 / var(--tw-text-opacity)); } -.text-lilac-100{ - --tw-text-opacity: 1; - color: rgb(245 247 250 / var(--tw-text-opacity)); -} -.text-lilac-300{ - --tw-text-opacity: 1; - color: rgb(237 240 252 / var(--tw-text-opacity)); -} -.text-lilac-900{ - --tw-text-opacity: 1; - color: rgb(220 226 249 / var(--tw-text-opacity)); -} -.text-lilac{ - --tw-text-opacity: 1; - color: rgb(248 249 254 / var(--tw-text-opacity)); -} -.text-golden-900{ - --tw-text-opacity: 1; - color: rgb(191 184 130 / var(--tw-text-opacity)); -} -.text-golden{ - --tw-text-opacity: 1; - color: rgb(209 201 137 / var(--tw-text-opacity)); -} .text-status-success{ --tw-text-opacity: 1; color: rgb(241 246 238 / var(--tw-text-opacity)); @@ -33349,18 +26873,14 @@ input[type="date"]::-webkit-inner-spin-button, -webkit-text-decoration-line: none; text-decoration-line: none; } -.decoration-inherit{ - -webkit-text-decoration-color: inherit; - text-decoration-color: inherit; -} -.decoration-current{ - -webkit-text-decoration-color: currentColor; - text-decoration-color: currentColor; -} .decoration-transparent{ -webkit-text-decoration-color: transparent; text-decoration-color: transparent; } +.decoration-white{ + -webkit-text-decoration-color: #ffffff; + text-decoration-color: #ffffff; +} .decoration-black-50{ -webkit-text-decoration-color: #f6f6f6; text-decoration-color: #f6f6f6; @@ -33405,50 +26925,6 @@ input[type="date"]::-webkit-inner-spin-button, -webkit-text-decoration-color: #424242; text-decoration-color: #424242; } -.decoration-white{ - -webkit-text-decoration-color: #ffffff; - text-decoration-color: #ffffff; -} -.decoration-slate-50{ - -webkit-text-decoration-color: #f8fafc; - text-decoration-color: #f8fafc; -} -.decoration-slate-100{ - -webkit-text-decoration-color: #f1f5f9; - text-decoration-color: #f1f5f9; -} -.decoration-slate-200{ - -webkit-text-decoration-color: #e2e8f0; - text-decoration-color: #e2e8f0; -} -.decoration-slate-300{ - -webkit-text-decoration-color: #cbd5e1; - text-decoration-color: #cbd5e1; -} -.decoration-slate-400{ - -webkit-text-decoration-color: #94a3b8; - text-decoration-color: #94a3b8; -} -.decoration-slate-500{ - -webkit-text-decoration-color: #64748b; - text-decoration-color: #64748b; -} -.decoration-slate-600{ - -webkit-text-decoration-color: #475569; - text-decoration-color: #475569; -} -.decoration-slate-700{ - -webkit-text-decoration-color: #334155; - text-decoration-color: #334155; -} -.decoration-slate-800{ - -webkit-text-decoration-color: #1e293b; - text-decoration-color: #1e293b; -} -.decoration-slate-900{ - -webkit-text-decoration-color: #0f172a; - text-decoration-color: #0f172a; -} .decoration-gray-50{ -webkit-text-decoration-color: #F9FAFB; text-decoration-color: #F9FAFB; @@ -33489,126 +26965,6 @@ input[type="date"]::-webkit-inner-spin-button, -webkit-text-decoration-color: #111827; text-decoration-color: #111827; } -.decoration-zinc-50{ - -webkit-text-decoration-color: #fafafa; - text-decoration-color: #fafafa; -} -.decoration-zinc-100{ - -webkit-text-decoration-color: #f4f4f5; - text-decoration-color: #f4f4f5; -} -.decoration-zinc-200{ - -webkit-text-decoration-color: #e4e4e7; - text-decoration-color: #e4e4e7; -} -.decoration-zinc-300{ - -webkit-text-decoration-color: #d4d4d8; - text-decoration-color: #d4d4d8; -} -.decoration-zinc-400{ - -webkit-text-decoration-color: #a1a1aa; - text-decoration-color: #a1a1aa; -} -.decoration-zinc-500{ - -webkit-text-decoration-color: #71717a; - text-decoration-color: #71717a; -} -.decoration-zinc-600{ - -webkit-text-decoration-color: #52525b; - text-decoration-color: #52525b; -} -.decoration-zinc-700{ - -webkit-text-decoration-color: #3f3f46; - text-decoration-color: #3f3f46; -} -.decoration-zinc-800{ - -webkit-text-decoration-color: #27272a; - text-decoration-color: #27272a; -} -.decoration-zinc-900{ - -webkit-text-decoration-color: #18181b; - text-decoration-color: #18181b; -} -.decoration-neutral-50{ - -webkit-text-decoration-color: #fafafa; - text-decoration-color: #fafafa; -} -.decoration-neutral-100{ - -webkit-text-decoration-color: #f5f5f5; - text-decoration-color: #f5f5f5; -} -.decoration-neutral-200{ - -webkit-text-decoration-color: #e5e5e5; - text-decoration-color: #e5e5e5; -} -.decoration-neutral-300{ - -webkit-text-decoration-color: #d4d4d4; - text-decoration-color: #d4d4d4; -} -.decoration-neutral-400{ - -webkit-text-decoration-color: #a3a3a3; - text-decoration-color: #a3a3a3; -} -.decoration-neutral-500{ - -webkit-text-decoration-color: #737373; - text-decoration-color: #737373; -} -.decoration-neutral-600{ - -webkit-text-decoration-color: #525252; - text-decoration-color: #525252; -} -.decoration-neutral-700{ - -webkit-text-decoration-color: #404040; - text-decoration-color: #404040; -} -.decoration-neutral-800{ - -webkit-text-decoration-color: #262626; - text-decoration-color: #262626; -} -.decoration-neutral-900{ - -webkit-text-decoration-color: #171717; - text-decoration-color: #171717; -} -.decoration-stone-50{ - -webkit-text-decoration-color: #fafaf9; - text-decoration-color: #fafaf9; -} -.decoration-stone-100{ - -webkit-text-decoration-color: #f5f5f4; - text-decoration-color: #f5f5f4; -} -.decoration-stone-200{ - -webkit-text-decoration-color: #e7e5e4; - text-decoration-color: #e7e5e4; -} -.decoration-stone-300{ - -webkit-text-decoration-color: #d6d3d1; - text-decoration-color: #d6d3d1; -} -.decoration-stone-400{ - -webkit-text-decoration-color: #a8a29e; - text-decoration-color: #a8a29e; -} -.decoration-stone-500{ - -webkit-text-decoration-color: #78716c; - text-decoration-color: #78716c; -} -.decoration-stone-600{ - -webkit-text-decoration-color: #57534e; - text-decoration-color: #57534e; -} -.decoration-stone-700{ - -webkit-text-decoration-color: #44403c; - text-decoration-color: #44403c; -} -.decoration-stone-800{ - -webkit-text-decoration-color: #292524; - text-decoration-color: #292524; -} -.decoration-stone-900{ - -webkit-text-decoration-color: #1c1917; - text-decoration-color: #1c1917; -} .decoration-red-50{ -webkit-text-decoration-color: #fcf2f2; text-decoration-color: #fcf2f2; @@ -33697,46 +27053,6 @@ input[type="date"]::-webkit-inner-spin-button, -webkit-text-decoration-color: #f59e0b; text-decoration-color: #f59e0b; } -.decoration-amber-50{ - -webkit-text-decoration-color: #fffbeb; - text-decoration-color: #fffbeb; -} -.decoration-amber-100{ - -webkit-text-decoration-color: #fef3c7; - text-decoration-color: #fef3c7; -} -.decoration-amber-200{ - -webkit-text-decoration-color: #fde68a; - text-decoration-color: #fde68a; -} -.decoration-amber-300{ - -webkit-text-decoration-color: #fcd34d; - text-decoration-color: #fcd34d; -} -.decoration-amber-400{ - -webkit-text-decoration-color: #fbbf24; - text-decoration-color: #fbbf24; -} -.decoration-amber-500{ - -webkit-text-decoration-color: #f59e0b; - text-decoration-color: #f59e0b; -} -.decoration-amber-600{ - -webkit-text-decoration-color: #d97706; - text-decoration-color: #d97706; -} -.decoration-amber-700{ - -webkit-text-decoration-color: #b45309; - text-decoration-color: #b45309; -} -.decoration-amber-800{ - -webkit-text-decoration-color: #92400e; - text-decoration-color: #92400e; -} -.decoration-amber-900{ - -webkit-text-decoration-color: #78350f; - text-decoration-color: #78350f; -} .decoration-yellow-50{ -webkit-text-decoration-color: #FDFDEA; text-decoration-color: #FDFDEA; @@ -33777,46 +27093,6 @@ input[type="date"]::-webkit-inner-spin-button, -webkit-text-decoration-color: #633112; text-decoration-color: #633112; } -.decoration-lime-50{ - -webkit-text-decoration-color: #f7fee7; - text-decoration-color: #f7fee7; -} -.decoration-lime-100{ - -webkit-text-decoration-color: #ecfccb; - text-decoration-color: #ecfccb; -} -.decoration-lime-200{ - -webkit-text-decoration-color: #d9f99d; - text-decoration-color: #d9f99d; -} -.decoration-lime-300{ - -webkit-text-decoration-color: #bef264; - text-decoration-color: #bef264; -} -.decoration-lime-400{ - -webkit-text-decoration-color: #a3e635; - text-decoration-color: #a3e635; -} -.decoration-lime-500{ - -webkit-text-decoration-color: #84cc16; - text-decoration-color: #84cc16; -} -.decoration-lime-600{ - -webkit-text-decoration-color: #65a30d; - text-decoration-color: #65a30d; -} -.decoration-lime-700{ - -webkit-text-decoration-color: #4d7c0f; - text-decoration-color: #4d7c0f; -} -.decoration-lime-800{ - -webkit-text-decoration-color: #3f6212; - text-decoration-color: #3f6212; -} -.decoration-lime-900{ - -webkit-text-decoration-color: #365314; - text-decoration-color: #365314; -} .decoration-green-50{ -webkit-text-decoration-color: #f8faf6; text-decoration-color: #f8faf6; @@ -33861,46 +27137,6 @@ input[type="date"]::-webkit-inner-spin-button, -webkit-text-decoration-color: #6ea152; text-decoration-color: #6ea152; } -.decoration-emerald-50{ - -webkit-text-decoration-color: #ecfdf5; - text-decoration-color: #ecfdf5; -} -.decoration-emerald-100{ - -webkit-text-decoration-color: #d1fae5; - text-decoration-color: #d1fae5; -} -.decoration-emerald-200{ - -webkit-text-decoration-color: #a7f3d0; - text-decoration-color: #a7f3d0; -} -.decoration-emerald-300{ - -webkit-text-decoration-color: #6ee7b7; - text-decoration-color: #6ee7b7; -} -.decoration-emerald-400{ - -webkit-text-decoration-color: #34d399; - text-decoration-color: #34d399; -} -.decoration-emerald-500{ - -webkit-text-decoration-color: #10b981; - text-decoration-color: #10b981; -} -.decoration-emerald-600{ - -webkit-text-decoration-color: #059669; - text-decoration-color: #059669; -} -.decoration-emerald-700{ - -webkit-text-decoration-color: #047857; - text-decoration-color: #047857; -} -.decoration-emerald-800{ - -webkit-text-decoration-color: #065f46; - text-decoration-color: #065f46; -} -.decoration-emerald-900{ - -webkit-text-decoration-color: #064e3b; - text-decoration-color: #064e3b; -} .decoration-teal-50{ -webkit-text-decoration-color: #EDFAFA; text-decoration-color: #EDFAFA; @@ -33941,86 +27177,6 @@ input[type="date"]::-webkit-inner-spin-button, -webkit-text-decoration-color: #014451; text-decoration-color: #014451; } -.decoration-cyan-50{ - -webkit-text-decoration-color: #ecfeff; - text-decoration-color: #ecfeff; -} -.decoration-cyan-100{ - -webkit-text-decoration-color: #cffafe; - text-decoration-color: #cffafe; -} -.decoration-cyan-200{ - -webkit-text-decoration-color: #a5f3fc; - text-decoration-color: #a5f3fc; -} -.decoration-cyan-300{ - -webkit-text-decoration-color: #67e8f9; - text-decoration-color: #67e8f9; -} -.decoration-cyan-400{ - -webkit-text-decoration-color: #22d3ee; - text-decoration-color: #22d3ee; -} -.decoration-cyan-500{ - -webkit-text-decoration-color: #06b6d4; - text-decoration-color: #06b6d4; -} -.decoration-cyan-600{ - -webkit-text-decoration-color: #0891b2; - text-decoration-color: #0891b2; -} -.decoration-cyan-700{ - -webkit-text-decoration-color: #0e7490; - text-decoration-color: #0e7490; -} -.decoration-cyan-800{ - -webkit-text-decoration-color: #155e75; - text-decoration-color: #155e75; -} -.decoration-cyan-900{ - -webkit-text-decoration-color: #164e63; - text-decoration-color: #164e63; -} -.decoration-sky-50{ - -webkit-text-decoration-color: #f0f9ff; - text-decoration-color: #f0f9ff; -} -.decoration-sky-100{ - -webkit-text-decoration-color: #e0f2fe; - text-decoration-color: #e0f2fe; -} -.decoration-sky-200{ - -webkit-text-decoration-color: #bae6fd; - text-decoration-color: #bae6fd; -} -.decoration-sky-300{ - -webkit-text-decoration-color: #7dd3fc; - text-decoration-color: #7dd3fc; -} -.decoration-sky-400{ - -webkit-text-decoration-color: #38bdf8; - text-decoration-color: #38bdf8; -} -.decoration-sky-500{ - -webkit-text-decoration-color: #0ea5e9; - text-decoration-color: #0ea5e9; -} -.decoration-sky-600{ - -webkit-text-decoration-color: #0284c7; - text-decoration-color: #0284c7; -} -.decoration-sky-700{ - -webkit-text-decoration-color: #0369a1; - text-decoration-color: #0369a1; -} -.decoration-sky-800{ - -webkit-text-decoration-color: #075985; - text-decoration-color: #075985; -} -.decoration-sky-900{ - -webkit-text-decoration-color: #0c4a6e; - text-decoration-color: #0c4a6e; -} .decoration-blue-50{ -webkit-text-decoration-color: #f2f8fb; text-decoration-color: #f2f8fb; @@ -34105,46 +27261,6 @@ input[type="date"]::-webkit-inner-spin-button, -webkit-text-decoration-color: #362F78; text-decoration-color: #362F78; } -.decoration-violet-50{ - -webkit-text-decoration-color: #f5f3ff; - text-decoration-color: #f5f3ff; -} -.decoration-violet-100{ - -webkit-text-decoration-color: #ede9fe; - text-decoration-color: #ede9fe; -} -.decoration-violet-200{ - -webkit-text-decoration-color: #ddd6fe; - text-decoration-color: #ddd6fe; -} -.decoration-violet-300{ - -webkit-text-decoration-color: #c4b5fd; - text-decoration-color: #c4b5fd; -} -.decoration-violet-400{ - -webkit-text-decoration-color: #a78bfa; - text-decoration-color: #a78bfa; -} -.decoration-violet-500{ - -webkit-text-decoration-color: #8b5cf6; - text-decoration-color: #8b5cf6; -} -.decoration-violet-600{ - -webkit-text-decoration-color: #7c3aed; - text-decoration-color: #7c3aed; -} -.decoration-violet-700{ - -webkit-text-decoration-color: #6d28d9; - text-decoration-color: #6d28d9; -} -.decoration-violet-800{ - -webkit-text-decoration-color: #5b21b6; - text-decoration-color: #5b21b6; -} -.decoration-violet-900{ - -webkit-text-decoration-color: #4c1d95; - text-decoration-color: #4c1d95; -} .decoration-purple-50{ -webkit-text-decoration-color: #f7f7f9; text-decoration-color: #f7f7f9; @@ -34189,46 +27305,6 @@ input[type="date"]::-webkit-inner-spin-button, -webkit-text-decoration-color: #55588b; text-decoration-color: #55588b; } -.decoration-fuchsia-50{ - -webkit-text-decoration-color: #fdf4ff; - text-decoration-color: #fdf4ff; -} -.decoration-fuchsia-100{ - -webkit-text-decoration-color: #fae8ff; - text-decoration-color: #fae8ff; -} -.decoration-fuchsia-200{ - -webkit-text-decoration-color: #f5d0fe; - text-decoration-color: #f5d0fe; -} -.decoration-fuchsia-300{ - -webkit-text-decoration-color: #f0abfc; - text-decoration-color: #f0abfc; -} -.decoration-fuchsia-400{ - -webkit-text-decoration-color: #e879f9; - text-decoration-color: #e879f9; -} -.decoration-fuchsia-500{ - -webkit-text-decoration-color: #d946ef; - text-decoration-color: #d946ef; -} -.decoration-fuchsia-600{ - -webkit-text-decoration-color: #c026d3; - text-decoration-color: #c026d3; -} -.decoration-fuchsia-700{ - -webkit-text-decoration-color: #a21caf; - text-decoration-color: #a21caf; -} -.decoration-fuchsia-800{ - -webkit-text-decoration-color: #86198f; - text-decoration-color: #86198f; -} -.decoration-fuchsia-900{ - -webkit-text-decoration-color: #701a75; - text-decoration-color: #701a75; -} .decoration-pink-50{ -webkit-text-decoration-color: #FDF2F8; text-decoration-color: #FDF2F8; @@ -34269,6 +27345,30 @@ input[type="date"]::-webkit-inner-spin-button, -webkit-text-decoration-color: #751A3D; text-decoration-color: #751A3D; } +.decoration-lilac-100{ + -webkit-text-decoration-color: #F5F7FA; + text-decoration-color: #F5F7FA; +} +.decoration-lilac-300{ + -webkit-text-decoration-color: #EDF0FC; + text-decoration-color: #EDF0FC; +} +.decoration-lilac-900{ + -webkit-text-decoration-color: #DCE2F9; + text-decoration-color: #DCE2F9; +} +.decoration-lilac{ + -webkit-text-decoration-color: #F8F9FE; + text-decoration-color: #F8F9FE; +} +.decoration-golden-900{ + -webkit-text-decoration-color: #BFB882; + text-decoration-color: #BFB882; +} +.decoration-golden{ + -webkit-text-decoration-color: #D1C989; + text-decoration-color: #D1C989; +} .decoration-rose-50{ -webkit-text-decoration-color: #fff1f2; text-decoration-color: #fff1f2; @@ -34313,30 +27413,6 @@ input[type="date"]::-webkit-inner-spin-button, -webkit-text-decoration-color: #f43f5e; text-decoration-color: #f43f5e; } -.decoration-lilac-100{ - -webkit-text-decoration-color: #F5F7FA; - text-decoration-color: #F5F7FA; -} -.decoration-lilac-300{ - -webkit-text-decoration-color: #EDF0FC; - text-decoration-color: #EDF0FC; -} -.decoration-lilac-900{ - -webkit-text-decoration-color: #DCE2F9; - text-decoration-color: #DCE2F9; -} -.decoration-lilac{ - -webkit-text-decoration-color: #F8F9FE; - text-decoration-color: #F8F9FE; -} -.decoration-golden-900{ - -webkit-text-decoration-color: #BFB882; - text-decoration-color: #BFB882; -} -.decoration-golden{ - -webkit-text-decoration-color: #D1C989; - text-decoration-color: #D1C989; -} .decoration-status-success{ -webkit-text-decoration-color: #F1F6EE; text-decoration-color: #F1F6EE; @@ -34496,36 +27572,6 @@ input[type="date"]::-webkit-inner-spin-button, -webkit-font-smoothing: auto; -moz-osx-font-smoothing: auto; } -.placeholder-inherit::-webkit-input-placeholder{ - color: inherit; -} -.placeholder-inherit::-moz-placeholder{ - color: inherit; -} -.placeholder-inherit:-ms-input-placeholder{ - color: inherit; -} -.placeholder-inherit::-ms-input-placeholder{ - color: inherit; -} -.placeholder-inherit::placeholder{ - color: inherit; -} -.placeholder-current::-webkit-input-placeholder{ - color: currentColor; -} -.placeholder-current::-moz-placeholder{ - color: currentColor; -} -.placeholder-current:-ms-input-placeholder{ - color: currentColor; -} -.placeholder-current::-ms-input-placeholder{ - color: currentColor; -} -.placeholder-current::placeholder{ - color: currentColor; -} .placeholder-transparent::-webkit-input-placeholder{ color: transparent; } @@ -34541,6 +27587,26 @@ input[type="date"]::-webkit-inner-spin-button, .placeholder-transparent::placeholder{ color: transparent; } +.placeholder-white::-webkit-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgb(255 255 255 / var(--tw-placeholder-opacity)); +} +.placeholder-white::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgb(255 255 255 / var(--tw-placeholder-opacity)); +} +.placeholder-white:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgb(255 255 255 / var(--tw-placeholder-opacity)); +} +.placeholder-white::-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgb(255 255 255 / var(--tw-placeholder-opacity)); +} +.placeholder-white::placeholder{ + --tw-placeholder-opacity: 1; + color: rgb(255 255 255 / var(--tw-placeholder-opacity)); +} .placeholder-black-50::-webkit-input-placeholder{ --tw-placeholder-opacity: 1; color: rgb(246 246 246 / var(--tw-placeholder-opacity)); @@ -34761,226 +27827,6 @@ input[type="date"]::-webkit-inner-spin-button, --tw-placeholder-opacity: 1; color: rgb(66 66 66 / var(--tw-placeholder-opacity)); } -.placeholder-white::-webkit-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(255 255 255 / var(--tw-placeholder-opacity)); -} -.placeholder-white::-moz-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(255 255 255 / var(--tw-placeholder-opacity)); -} -.placeholder-white:-ms-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(255 255 255 / var(--tw-placeholder-opacity)); -} -.placeholder-white::-ms-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(255 255 255 / var(--tw-placeholder-opacity)); -} -.placeholder-white::placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(255 255 255 / var(--tw-placeholder-opacity)); -} -.placeholder-slate-50::-webkit-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(248 250 252 / var(--tw-placeholder-opacity)); -} -.placeholder-slate-50::-moz-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(248 250 252 / var(--tw-placeholder-opacity)); -} -.placeholder-slate-50:-ms-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(248 250 252 / var(--tw-placeholder-opacity)); -} -.placeholder-slate-50::-ms-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(248 250 252 / var(--tw-placeholder-opacity)); -} -.placeholder-slate-50::placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(248 250 252 / var(--tw-placeholder-opacity)); -} -.placeholder-slate-100::-webkit-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(241 245 249 / var(--tw-placeholder-opacity)); -} -.placeholder-slate-100::-moz-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(241 245 249 / var(--tw-placeholder-opacity)); -} -.placeholder-slate-100:-ms-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(241 245 249 / var(--tw-placeholder-opacity)); -} -.placeholder-slate-100::-ms-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(241 245 249 / var(--tw-placeholder-opacity)); -} -.placeholder-slate-100::placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(241 245 249 / var(--tw-placeholder-opacity)); -} -.placeholder-slate-200::-webkit-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(226 232 240 / var(--tw-placeholder-opacity)); -} -.placeholder-slate-200::-moz-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(226 232 240 / var(--tw-placeholder-opacity)); -} -.placeholder-slate-200:-ms-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(226 232 240 / var(--tw-placeholder-opacity)); -} -.placeholder-slate-200::-ms-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(226 232 240 / var(--tw-placeholder-opacity)); -} -.placeholder-slate-200::placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(226 232 240 / var(--tw-placeholder-opacity)); -} -.placeholder-slate-300::-webkit-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(203 213 225 / var(--tw-placeholder-opacity)); -} -.placeholder-slate-300::-moz-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(203 213 225 / var(--tw-placeholder-opacity)); -} -.placeholder-slate-300:-ms-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(203 213 225 / var(--tw-placeholder-opacity)); -} -.placeholder-slate-300::-ms-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(203 213 225 / var(--tw-placeholder-opacity)); -} -.placeholder-slate-300::placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(203 213 225 / var(--tw-placeholder-opacity)); -} -.placeholder-slate-400::-webkit-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(148 163 184 / var(--tw-placeholder-opacity)); -} -.placeholder-slate-400::-moz-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(148 163 184 / var(--tw-placeholder-opacity)); -} -.placeholder-slate-400:-ms-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(148 163 184 / var(--tw-placeholder-opacity)); -} -.placeholder-slate-400::-ms-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(148 163 184 / var(--tw-placeholder-opacity)); -} -.placeholder-slate-400::placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(148 163 184 / var(--tw-placeholder-opacity)); -} -.placeholder-slate-500::-webkit-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(100 116 139 / var(--tw-placeholder-opacity)); -} -.placeholder-slate-500::-moz-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(100 116 139 / var(--tw-placeholder-opacity)); -} -.placeholder-slate-500:-ms-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(100 116 139 / var(--tw-placeholder-opacity)); -} -.placeholder-slate-500::-ms-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(100 116 139 / var(--tw-placeholder-opacity)); -} -.placeholder-slate-500::placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(100 116 139 / var(--tw-placeholder-opacity)); -} -.placeholder-slate-600::-webkit-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(71 85 105 / var(--tw-placeholder-opacity)); -} -.placeholder-slate-600::-moz-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(71 85 105 / var(--tw-placeholder-opacity)); -} -.placeholder-slate-600:-ms-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(71 85 105 / var(--tw-placeholder-opacity)); -} -.placeholder-slate-600::-ms-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(71 85 105 / var(--tw-placeholder-opacity)); -} -.placeholder-slate-600::placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(71 85 105 / var(--tw-placeholder-opacity)); -} -.placeholder-slate-700::-webkit-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(51 65 85 / var(--tw-placeholder-opacity)); -} -.placeholder-slate-700::-moz-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(51 65 85 / var(--tw-placeholder-opacity)); -} -.placeholder-slate-700:-ms-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(51 65 85 / var(--tw-placeholder-opacity)); -} -.placeholder-slate-700::-ms-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(51 65 85 / var(--tw-placeholder-opacity)); -} -.placeholder-slate-700::placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(51 65 85 / var(--tw-placeholder-opacity)); -} -.placeholder-slate-800::-webkit-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(30 41 59 / var(--tw-placeholder-opacity)); -} -.placeholder-slate-800::-moz-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(30 41 59 / var(--tw-placeholder-opacity)); -} -.placeholder-slate-800:-ms-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(30 41 59 / var(--tw-placeholder-opacity)); -} -.placeholder-slate-800::-ms-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(30 41 59 / var(--tw-placeholder-opacity)); -} -.placeholder-slate-800::placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(30 41 59 / var(--tw-placeholder-opacity)); -} -.placeholder-slate-900::-webkit-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(15 23 42 / var(--tw-placeholder-opacity)); -} -.placeholder-slate-900::-moz-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(15 23 42 / var(--tw-placeholder-opacity)); -} -.placeholder-slate-900:-ms-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(15 23 42 / var(--tw-placeholder-opacity)); -} -.placeholder-slate-900::-ms-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(15 23 42 / var(--tw-placeholder-opacity)); -} -.placeholder-slate-900::placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(15 23 42 / var(--tw-placeholder-opacity)); -} .placeholder-gray-50::-webkit-input-placeholder{ --tw-placeholder-opacity: 1; color: rgb(249 250 251 / var(--tw-placeholder-opacity)); @@ -35181,606 +28027,6 @@ input[type="date"]::-webkit-inner-spin-button, --tw-placeholder-opacity: 1; color: rgb(17 24 39 / var(--tw-placeholder-opacity)); } -.placeholder-zinc-50::-webkit-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(250 250 250 / var(--tw-placeholder-opacity)); -} -.placeholder-zinc-50::-moz-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(250 250 250 / var(--tw-placeholder-opacity)); -} -.placeholder-zinc-50:-ms-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(250 250 250 / var(--tw-placeholder-opacity)); -} -.placeholder-zinc-50::-ms-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(250 250 250 / var(--tw-placeholder-opacity)); -} -.placeholder-zinc-50::placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(250 250 250 / var(--tw-placeholder-opacity)); -} -.placeholder-zinc-100::-webkit-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(244 244 245 / var(--tw-placeholder-opacity)); -} -.placeholder-zinc-100::-moz-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(244 244 245 / var(--tw-placeholder-opacity)); -} -.placeholder-zinc-100:-ms-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(244 244 245 / var(--tw-placeholder-opacity)); -} -.placeholder-zinc-100::-ms-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(244 244 245 / var(--tw-placeholder-opacity)); -} -.placeholder-zinc-100::placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(244 244 245 / var(--tw-placeholder-opacity)); -} -.placeholder-zinc-200::-webkit-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(228 228 231 / var(--tw-placeholder-opacity)); -} -.placeholder-zinc-200::-moz-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(228 228 231 / var(--tw-placeholder-opacity)); -} -.placeholder-zinc-200:-ms-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(228 228 231 / var(--tw-placeholder-opacity)); -} -.placeholder-zinc-200::-ms-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(228 228 231 / var(--tw-placeholder-opacity)); -} -.placeholder-zinc-200::placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(228 228 231 / var(--tw-placeholder-opacity)); -} -.placeholder-zinc-300::-webkit-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(212 212 216 / var(--tw-placeholder-opacity)); -} -.placeholder-zinc-300::-moz-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(212 212 216 / var(--tw-placeholder-opacity)); -} -.placeholder-zinc-300:-ms-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(212 212 216 / var(--tw-placeholder-opacity)); -} -.placeholder-zinc-300::-ms-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(212 212 216 / var(--tw-placeholder-opacity)); -} -.placeholder-zinc-300::placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(212 212 216 / var(--tw-placeholder-opacity)); -} -.placeholder-zinc-400::-webkit-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(161 161 170 / var(--tw-placeholder-opacity)); -} -.placeholder-zinc-400::-moz-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(161 161 170 / var(--tw-placeholder-opacity)); -} -.placeholder-zinc-400:-ms-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(161 161 170 / var(--tw-placeholder-opacity)); -} -.placeholder-zinc-400::-ms-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(161 161 170 / var(--tw-placeholder-opacity)); -} -.placeholder-zinc-400::placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(161 161 170 / var(--tw-placeholder-opacity)); -} -.placeholder-zinc-500::-webkit-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(113 113 122 / var(--tw-placeholder-opacity)); -} -.placeholder-zinc-500::-moz-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(113 113 122 / var(--tw-placeholder-opacity)); -} -.placeholder-zinc-500:-ms-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(113 113 122 / var(--tw-placeholder-opacity)); -} -.placeholder-zinc-500::-ms-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(113 113 122 / var(--tw-placeholder-opacity)); -} -.placeholder-zinc-500::placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(113 113 122 / var(--tw-placeholder-opacity)); -} -.placeholder-zinc-600::-webkit-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(82 82 91 / var(--tw-placeholder-opacity)); -} -.placeholder-zinc-600::-moz-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(82 82 91 / var(--tw-placeholder-opacity)); -} -.placeholder-zinc-600:-ms-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(82 82 91 / var(--tw-placeholder-opacity)); -} -.placeholder-zinc-600::-ms-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(82 82 91 / var(--tw-placeholder-opacity)); -} -.placeholder-zinc-600::placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(82 82 91 / var(--tw-placeholder-opacity)); -} -.placeholder-zinc-700::-webkit-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(63 63 70 / var(--tw-placeholder-opacity)); -} -.placeholder-zinc-700::-moz-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(63 63 70 / var(--tw-placeholder-opacity)); -} -.placeholder-zinc-700:-ms-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(63 63 70 / var(--tw-placeholder-opacity)); -} -.placeholder-zinc-700::-ms-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(63 63 70 / var(--tw-placeholder-opacity)); -} -.placeholder-zinc-700::placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(63 63 70 / var(--tw-placeholder-opacity)); -} -.placeholder-zinc-800::-webkit-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(39 39 42 / var(--tw-placeholder-opacity)); -} -.placeholder-zinc-800::-moz-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(39 39 42 / var(--tw-placeholder-opacity)); -} -.placeholder-zinc-800:-ms-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(39 39 42 / var(--tw-placeholder-opacity)); -} -.placeholder-zinc-800::-ms-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(39 39 42 / var(--tw-placeholder-opacity)); -} -.placeholder-zinc-800::placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(39 39 42 / var(--tw-placeholder-opacity)); -} -.placeholder-zinc-900::-webkit-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(24 24 27 / var(--tw-placeholder-opacity)); -} -.placeholder-zinc-900::-moz-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(24 24 27 / var(--tw-placeholder-opacity)); -} -.placeholder-zinc-900:-ms-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(24 24 27 / var(--tw-placeholder-opacity)); -} -.placeholder-zinc-900::-ms-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(24 24 27 / var(--tw-placeholder-opacity)); -} -.placeholder-zinc-900::placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(24 24 27 / var(--tw-placeholder-opacity)); -} -.placeholder-neutral-50::-webkit-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(250 250 250 / var(--tw-placeholder-opacity)); -} -.placeholder-neutral-50::-moz-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(250 250 250 / var(--tw-placeholder-opacity)); -} -.placeholder-neutral-50:-ms-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(250 250 250 / var(--tw-placeholder-opacity)); -} -.placeholder-neutral-50::-ms-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(250 250 250 / var(--tw-placeholder-opacity)); -} -.placeholder-neutral-50::placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(250 250 250 / var(--tw-placeholder-opacity)); -} -.placeholder-neutral-100::-webkit-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(245 245 245 / var(--tw-placeholder-opacity)); -} -.placeholder-neutral-100::-moz-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(245 245 245 / var(--tw-placeholder-opacity)); -} -.placeholder-neutral-100:-ms-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(245 245 245 / var(--tw-placeholder-opacity)); -} -.placeholder-neutral-100::-ms-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(245 245 245 / var(--tw-placeholder-opacity)); -} -.placeholder-neutral-100::placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(245 245 245 / var(--tw-placeholder-opacity)); -} -.placeholder-neutral-200::-webkit-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(229 229 229 / var(--tw-placeholder-opacity)); -} -.placeholder-neutral-200::-moz-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(229 229 229 / var(--tw-placeholder-opacity)); -} -.placeholder-neutral-200:-ms-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(229 229 229 / var(--tw-placeholder-opacity)); -} -.placeholder-neutral-200::-ms-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(229 229 229 / var(--tw-placeholder-opacity)); -} -.placeholder-neutral-200::placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(229 229 229 / var(--tw-placeholder-opacity)); -} -.placeholder-neutral-300::-webkit-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(212 212 212 / var(--tw-placeholder-opacity)); -} -.placeholder-neutral-300::-moz-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(212 212 212 / var(--tw-placeholder-opacity)); -} -.placeholder-neutral-300:-ms-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(212 212 212 / var(--tw-placeholder-opacity)); -} -.placeholder-neutral-300::-ms-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(212 212 212 / var(--tw-placeholder-opacity)); -} -.placeholder-neutral-300::placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(212 212 212 / var(--tw-placeholder-opacity)); -} -.placeholder-neutral-400::-webkit-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(163 163 163 / var(--tw-placeholder-opacity)); -} -.placeholder-neutral-400::-moz-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(163 163 163 / var(--tw-placeholder-opacity)); -} -.placeholder-neutral-400:-ms-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(163 163 163 / var(--tw-placeholder-opacity)); -} -.placeholder-neutral-400::-ms-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(163 163 163 / var(--tw-placeholder-opacity)); -} -.placeholder-neutral-400::placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(163 163 163 / var(--tw-placeholder-opacity)); -} -.placeholder-neutral-500::-webkit-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(115 115 115 / var(--tw-placeholder-opacity)); -} -.placeholder-neutral-500::-moz-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(115 115 115 / var(--tw-placeholder-opacity)); -} -.placeholder-neutral-500:-ms-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(115 115 115 / var(--tw-placeholder-opacity)); -} -.placeholder-neutral-500::-ms-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(115 115 115 / var(--tw-placeholder-opacity)); -} -.placeholder-neutral-500::placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(115 115 115 / var(--tw-placeholder-opacity)); -} -.placeholder-neutral-600::-webkit-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(82 82 82 / var(--tw-placeholder-opacity)); -} -.placeholder-neutral-600::-moz-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(82 82 82 / var(--tw-placeholder-opacity)); -} -.placeholder-neutral-600:-ms-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(82 82 82 / var(--tw-placeholder-opacity)); -} -.placeholder-neutral-600::-ms-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(82 82 82 / var(--tw-placeholder-opacity)); -} -.placeholder-neutral-600::placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(82 82 82 / var(--tw-placeholder-opacity)); -} -.placeholder-neutral-700::-webkit-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(64 64 64 / var(--tw-placeholder-opacity)); -} -.placeholder-neutral-700::-moz-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(64 64 64 / var(--tw-placeholder-opacity)); -} -.placeholder-neutral-700:-ms-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(64 64 64 / var(--tw-placeholder-opacity)); -} -.placeholder-neutral-700::-ms-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(64 64 64 / var(--tw-placeholder-opacity)); -} -.placeholder-neutral-700::placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(64 64 64 / var(--tw-placeholder-opacity)); -} -.placeholder-neutral-800::-webkit-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(38 38 38 / var(--tw-placeholder-opacity)); -} -.placeholder-neutral-800::-moz-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(38 38 38 / var(--tw-placeholder-opacity)); -} -.placeholder-neutral-800:-ms-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(38 38 38 / var(--tw-placeholder-opacity)); -} -.placeholder-neutral-800::-ms-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(38 38 38 / var(--tw-placeholder-opacity)); -} -.placeholder-neutral-800::placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(38 38 38 / var(--tw-placeholder-opacity)); -} -.placeholder-neutral-900::-webkit-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(23 23 23 / var(--tw-placeholder-opacity)); -} -.placeholder-neutral-900::-moz-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(23 23 23 / var(--tw-placeholder-opacity)); -} -.placeholder-neutral-900:-ms-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(23 23 23 / var(--tw-placeholder-opacity)); -} -.placeholder-neutral-900::-ms-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(23 23 23 / var(--tw-placeholder-opacity)); -} -.placeholder-neutral-900::placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(23 23 23 / var(--tw-placeholder-opacity)); -} -.placeholder-stone-50::-webkit-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(250 250 249 / var(--tw-placeholder-opacity)); -} -.placeholder-stone-50::-moz-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(250 250 249 / var(--tw-placeholder-opacity)); -} -.placeholder-stone-50:-ms-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(250 250 249 / var(--tw-placeholder-opacity)); -} -.placeholder-stone-50::-ms-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(250 250 249 / var(--tw-placeholder-opacity)); -} -.placeholder-stone-50::placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(250 250 249 / var(--tw-placeholder-opacity)); -} -.placeholder-stone-100::-webkit-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(245 245 244 / var(--tw-placeholder-opacity)); -} -.placeholder-stone-100::-moz-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(245 245 244 / var(--tw-placeholder-opacity)); -} -.placeholder-stone-100:-ms-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(245 245 244 / var(--tw-placeholder-opacity)); -} -.placeholder-stone-100::-ms-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(245 245 244 / var(--tw-placeholder-opacity)); -} -.placeholder-stone-100::placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(245 245 244 / var(--tw-placeholder-opacity)); -} -.placeholder-stone-200::-webkit-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(231 229 228 / var(--tw-placeholder-opacity)); -} -.placeholder-stone-200::-moz-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(231 229 228 / var(--tw-placeholder-opacity)); -} -.placeholder-stone-200:-ms-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(231 229 228 / var(--tw-placeholder-opacity)); -} -.placeholder-stone-200::-ms-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(231 229 228 / var(--tw-placeholder-opacity)); -} -.placeholder-stone-200::placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(231 229 228 / var(--tw-placeholder-opacity)); -} -.placeholder-stone-300::-webkit-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(214 211 209 / var(--tw-placeholder-opacity)); -} -.placeholder-stone-300::-moz-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(214 211 209 / var(--tw-placeholder-opacity)); -} -.placeholder-stone-300:-ms-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(214 211 209 / var(--tw-placeholder-opacity)); -} -.placeholder-stone-300::-ms-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(214 211 209 / var(--tw-placeholder-opacity)); -} -.placeholder-stone-300::placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(214 211 209 / var(--tw-placeholder-opacity)); -} -.placeholder-stone-400::-webkit-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(168 162 158 / var(--tw-placeholder-opacity)); -} -.placeholder-stone-400::-moz-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(168 162 158 / var(--tw-placeholder-opacity)); -} -.placeholder-stone-400:-ms-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(168 162 158 / var(--tw-placeholder-opacity)); -} -.placeholder-stone-400::-ms-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(168 162 158 / var(--tw-placeholder-opacity)); -} -.placeholder-stone-400::placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(168 162 158 / var(--tw-placeholder-opacity)); -} -.placeholder-stone-500::-webkit-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(120 113 108 / var(--tw-placeholder-opacity)); -} -.placeholder-stone-500::-moz-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(120 113 108 / var(--tw-placeholder-opacity)); -} -.placeholder-stone-500:-ms-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(120 113 108 / var(--tw-placeholder-opacity)); -} -.placeholder-stone-500::-ms-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(120 113 108 / var(--tw-placeholder-opacity)); -} -.placeholder-stone-500::placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(120 113 108 / var(--tw-placeholder-opacity)); -} -.placeholder-stone-600::-webkit-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(87 83 78 / var(--tw-placeholder-opacity)); -} -.placeholder-stone-600::-moz-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(87 83 78 / var(--tw-placeholder-opacity)); -} -.placeholder-stone-600:-ms-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(87 83 78 / var(--tw-placeholder-opacity)); -} -.placeholder-stone-600::-ms-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(87 83 78 / var(--tw-placeholder-opacity)); -} -.placeholder-stone-600::placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(87 83 78 / var(--tw-placeholder-opacity)); -} -.placeholder-stone-700::-webkit-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(68 64 60 / var(--tw-placeholder-opacity)); -} -.placeholder-stone-700::-moz-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(68 64 60 / var(--tw-placeholder-opacity)); -} -.placeholder-stone-700:-ms-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(68 64 60 / var(--tw-placeholder-opacity)); -} -.placeholder-stone-700::-ms-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(68 64 60 / var(--tw-placeholder-opacity)); -} -.placeholder-stone-700::placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(68 64 60 / var(--tw-placeholder-opacity)); -} -.placeholder-stone-800::-webkit-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(41 37 36 / var(--tw-placeholder-opacity)); -} -.placeholder-stone-800::-moz-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(41 37 36 / var(--tw-placeholder-opacity)); -} -.placeholder-stone-800:-ms-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(41 37 36 / var(--tw-placeholder-opacity)); -} -.placeholder-stone-800::-ms-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(41 37 36 / var(--tw-placeholder-opacity)); -} -.placeholder-stone-800::placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(41 37 36 / var(--tw-placeholder-opacity)); -} -.placeholder-stone-900::-webkit-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(28 25 23 / var(--tw-placeholder-opacity)); -} -.placeholder-stone-900::-moz-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(28 25 23 / var(--tw-placeholder-opacity)); -} -.placeholder-stone-900:-ms-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(28 25 23 / var(--tw-placeholder-opacity)); -} -.placeholder-stone-900::-ms-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(28 25 23 / var(--tw-placeholder-opacity)); -} -.placeholder-stone-900::placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(28 25 23 / var(--tw-placeholder-opacity)); -} .placeholder-red-50::-webkit-input-placeholder{ --tw-placeholder-opacity: 1; color: rgb(252 242 242 / var(--tw-placeholder-opacity)); @@ -36221,206 +28467,6 @@ input[type="date"]::-webkit-inner-spin-button, --tw-placeholder-opacity: 1; color: rgb(245 158 11 / var(--tw-placeholder-opacity)); } -.placeholder-amber-50::-webkit-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(255 251 235 / var(--tw-placeholder-opacity)); -} -.placeholder-amber-50::-moz-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(255 251 235 / var(--tw-placeholder-opacity)); -} -.placeholder-amber-50:-ms-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(255 251 235 / var(--tw-placeholder-opacity)); -} -.placeholder-amber-50::-ms-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(255 251 235 / var(--tw-placeholder-opacity)); -} -.placeholder-amber-50::placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(255 251 235 / var(--tw-placeholder-opacity)); -} -.placeholder-amber-100::-webkit-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(254 243 199 / var(--tw-placeholder-opacity)); -} -.placeholder-amber-100::-moz-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(254 243 199 / var(--tw-placeholder-opacity)); -} -.placeholder-amber-100:-ms-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(254 243 199 / var(--tw-placeholder-opacity)); -} -.placeholder-amber-100::-ms-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(254 243 199 / var(--tw-placeholder-opacity)); -} -.placeholder-amber-100::placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(254 243 199 / var(--tw-placeholder-opacity)); -} -.placeholder-amber-200::-webkit-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(253 230 138 / var(--tw-placeholder-opacity)); -} -.placeholder-amber-200::-moz-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(253 230 138 / var(--tw-placeholder-opacity)); -} -.placeholder-amber-200:-ms-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(253 230 138 / var(--tw-placeholder-opacity)); -} -.placeholder-amber-200::-ms-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(253 230 138 / var(--tw-placeholder-opacity)); -} -.placeholder-amber-200::placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(253 230 138 / var(--tw-placeholder-opacity)); -} -.placeholder-amber-300::-webkit-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(252 211 77 / var(--tw-placeholder-opacity)); -} -.placeholder-amber-300::-moz-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(252 211 77 / var(--tw-placeholder-opacity)); -} -.placeholder-amber-300:-ms-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(252 211 77 / var(--tw-placeholder-opacity)); -} -.placeholder-amber-300::-ms-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(252 211 77 / var(--tw-placeholder-opacity)); -} -.placeholder-amber-300::placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(252 211 77 / var(--tw-placeholder-opacity)); -} -.placeholder-amber-400::-webkit-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(251 191 36 / var(--tw-placeholder-opacity)); -} -.placeholder-amber-400::-moz-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(251 191 36 / var(--tw-placeholder-opacity)); -} -.placeholder-amber-400:-ms-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(251 191 36 / var(--tw-placeholder-opacity)); -} -.placeholder-amber-400::-ms-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(251 191 36 / var(--tw-placeholder-opacity)); -} -.placeholder-amber-400::placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(251 191 36 / var(--tw-placeholder-opacity)); -} -.placeholder-amber-500::-webkit-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(245 158 11 / var(--tw-placeholder-opacity)); -} -.placeholder-amber-500::-moz-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(245 158 11 / var(--tw-placeholder-opacity)); -} -.placeholder-amber-500:-ms-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(245 158 11 / var(--tw-placeholder-opacity)); -} -.placeholder-amber-500::-ms-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(245 158 11 / var(--tw-placeholder-opacity)); -} -.placeholder-amber-500::placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(245 158 11 / var(--tw-placeholder-opacity)); -} -.placeholder-amber-600::-webkit-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(217 119 6 / var(--tw-placeholder-opacity)); -} -.placeholder-amber-600::-moz-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(217 119 6 / var(--tw-placeholder-opacity)); -} -.placeholder-amber-600:-ms-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(217 119 6 / var(--tw-placeholder-opacity)); -} -.placeholder-amber-600::-ms-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(217 119 6 / var(--tw-placeholder-opacity)); -} -.placeholder-amber-600::placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(217 119 6 / var(--tw-placeholder-opacity)); -} -.placeholder-amber-700::-webkit-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(180 83 9 / var(--tw-placeholder-opacity)); -} -.placeholder-amber-700::-moz-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(180 83 9 / var(--tw-placeholder-opacity)); -} -.placeholder-amber-700:-ms-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(180 83 9 / var(--tw-placeholder-opacity)); -} -.placeholder-amber-700::-ms-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(180 83 9 / var(--tw-placeholder-opacity)); -} -.placeholder-amber-700::placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(180 83 9 / var(--tw-placeholder-opacity)); -} -.placeholder-amber-800::-webkit-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(146 64 14 / var(--tw-placeholder-opacity)); -} -.placeholder-amber-800::-moz-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(146 64 14 / var(--tw-placeholder-opacity)); -} -.placeholder-amber-800:-ms-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(146 64 14 / var(--tw-placeholder-opacity)); -} -.placeholder-amber-800::-ms-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(146 64 14 / var(--tw-placeholder-opacity)); -} -.placeholder-amber-800::placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(146 64 14 / var(--tw-placeholder-opacity)); -} -.placeholder-amber-900::-webkit-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(120 53 15 / var(--tw-placeholder-opacity)); -} -.placeholder-amber-900::-moz-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(120 53 15 / var(--tw-placeholder-opacity)); -} -.placeholder-amber-900:-ms-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(120 53 15 / var(--tw-placeholder-opacity)); -} -.placeholder-amber-900::-ms-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(120 53 15 / var(--tw-placeholder-opacity)); -} -.placeholder-amber-900::placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(120 53 15 / var(--tw-placeholder-opacity)); -} .placeholder-yellow-50::-webkit-input-placeholder{ --tw-placeholder-opacity: 1; color: rgb(253 253 234 / var(--tw-placeholder-opacity)); @@ -36621,206 +28667,6 @@ input[type="date"]::-webkit-inner-spin-button, --tw-placeholder-opacity: 1; color: rgb(99 49 18 / var(--tw-placeholder-opacity)); } -.placeholder-lime-50::-webkit-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(247 254 231 / var(--tw-placeholder-opacity)); -} -.placeholder-lime-50::-moz-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(247 254 231 / var(--tw-placeholder-opacity)); -} -.placeholder-lime-50:-ms-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(247 254 231 / var(--tw-placeholder-opacity)); -} -.placeholder-lime-50::-ms-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(247 254 231 / var(--tw-placeholder-opacity)); -} -.placeholder-lime-50::placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(247 254 231 / var(--tw-placeholder-opacity)); -} -.placeholder-lime-100::-webkit-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(236 252 203 / var(--tw-placeholder-opacity)); -} -.placeholder-lime-100::-moz-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(236 252 203 / var(--tw-placeholder-opacity)); -} -.placeholder-lime-100:-ms-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(236 252 203 / var(--tw-placeholder-opacity)); -} -.placeholder-lime-100::-ms-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(236 252 203 / var(--tw-placeholder-opacity)); -} -.placeholder-lime-100::placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(236 252 203 / var(--tw-placeholder-opacity)); -} -.placeholder-lime-200::-webkit-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(217 249 157 / var(--tw-placeholder-opacity)); -} -.placeholder-lime-200::-moz-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(217 249 157 / var(--tw-placeholder-opacity)); -} -.placeholder-lime-200:-ms-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(217 249 157 / var(--tw-placeholder-opacity)); -} -.placeholder-lime-200::-ms-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(217 249 157 / var(--tw-placeholder-opacity)); -} -.placeholder-lime-200::placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(217 249 157 / var(--tw-placeholder-opacity)); -} -.placeholder-lime-300::-webkit-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(190 242 100 / var(--tw-placeholder-opacity)); -} -.placeholder-lime-300::-moz-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(190 242 100 / var(--tw-placeholder-opacity)); -} -.placeholder-lime-300:-ms-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(190 242 100 / var(--tw-placeholder-opacity)); -} -.placeholder-lime-300::-ms-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(190 242 100 / var(--tw-placeholder-opacity)); -} -.placeholder-lime-300::placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(190 242 100 / var(--tw-placeholder-opacity)); -} -.placeholder-lime-400::-webkit-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(163 230 53 / var(--tw-placeholder-opacity)); -} -.placeholder-lime-400::-moz-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(163 230 53 / var(--tw-placeholder-opacity)); -} -.placeholder-lime-400:-ms-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(163 230 53 / var(--tw-placeholder-opacity)); -} -.placeholder-lime-400::-ms-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(163 230 53 / var(--tw-placeholder-opacity)); -} -.placeholder-lime-400::placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(163 230 53 / var(--tw-placeholder-opacity)); -} -.placeholder-lime-500::-webkit-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(132 204 22 / var(--tw-placeholder-opacity)); -} -.placeholder-lime-500::-moz-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(132 204 22 / var(--tw-placeholder-opacity)); -} -.placeholder-lime-500:-ms-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(132 204 22 / var(--tw-placeholder-opacity)); -} -.placeholder-lime-500::-ms-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(132 204 22 / var(--tw-placeholder-opacity)); -} -.placeholder-lime-500::placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(132 204 22 / var(--tw-placeholder-opacity)); -} -.placeholder-lime-600::-webkit-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(101 163 13 / var(--tw-placeholder-opacity)); -} -.placeholder-lime-600::-moz-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(101 163 13 / var(--tw-placeholder-opacity)); -} -.placeholder-lime-600:-ms-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(101 163 13 / var(--tw-placeholder-opacity)); -} -.placeholder-lime-600::-ms-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(101 163 13 / var(--tw-placeholder-opacity)); -} -.placeholder-lime-600::placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(101 163 13 / var(--tw-placeholder-opacity)); -} -.placeholder-lime-700::-webkit-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(77 124 15 / var(--tw-placeholder-opacity)); -} -.placeholder-lime-700::-moz-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(77 124 15 / var(--tw-placeholder-opacity)); -} -.placeholder-lime-700:-ms-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(77 124 15 / var(--tw-placeholder-opacity)); -} -.placeholder-lime-700::-ms-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(77 124 15 / var(--tw-placeholder-opacity)); -} -.placeholder-lime-700::placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(77 124 15 / var(--tw-placeholder-opacity)); -} -.placeholder-lime-800::-webkit-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(63 98 18 / var(--tw-placeholder-opacity)); -} -.placeholder-lime-800::-moz-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(63 98 18 / var(--tw-placeholder-opacity)); -} -.placeholder-lime-800:-ms-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(63 98 18 / var(--tw-placeholder-opacity)); -} -.placeholder-lime-800::-ms-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(63 98 18 / var(--tw-placeholder-opacity)); -} -.placeholder-lime-800::placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(63 98 18 / var(--tw-placeholder-opacity)); -} -.placeholder-lime-900::-webkit-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(54 83 20 / var(--tw-placeholder-opacity)); -} -.placeholder-lime-900::-moz-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(54 83 20 / var(--tw-placeholder-opacity)); -} -.placeholder-lime-900:-ms-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(54 83 20 / var(--tw-placeholder-opacity)); -} -.placeholder-lime-900::-ms-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(54 83 20 / var(--tw-placeholder-opacity)); -} -.placeholder-lime-900::placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(54 83 20 / var(--tw-placeholder-opacity)); -} .placeholder-green-50::-webkit-input-placeholder{ --tw-placeholder-opacity: 1; color: rgb(248 250 246 / var(--tw-placeholder-opacity)); @@ -37041,206 +28887,6 @@ input[type="date"]::-webkit-inner-spin-button, --tw-placeholder-opacity: 1; color: rgb(110 161 82 / var(--tw-placeholder-opacity)); } -.placeholder-emerald-50::-webkit-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(236 253 245 / var(--tw-placeholder-opacity)); -} -.placeholder-emerald-50::-moz-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(236 253 245 / var(--tw-placeholder-opacity)); -} -.placeholder-emerald-50:-ms-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(236 253 245 / var(--tw-placeholder-opacity)); -} -.placeholder-emerald-50::-ms-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(236 253 245 / var(--tw-placeholder-opacity)); -} -.placeholder-emerald-50::placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(236 253 245 / var(--tw-placeholder-opacity)); -} -.placeholder-emerald-100::-webkit-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(209 250 229 / var(--tw-placeholder-opacity)); -} -.placeholder-emerald-100::-moz-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(209 250 229 / var(--tw-placeholder-opacity)); -} -.placeholder-emerald-100:-ms-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(209 250 229 / var(--tw-placeholder-opacity)); -} -.placeholder-emerald-100::-ms-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(209 250 229 / var(--tw-placeholder-opacity)); -} -.placeholder-emerald-100::placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(209 250 229 / var(--tw-placeholder-opacity)); -} -.placeholder-emerald-200::-webkit-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(167 243 208 / var(--tw-placeholder-opacity)); -} -.placeholder-emerald-200::-moz-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(167 243 208 / var(--tw-placeholder-opacity)); -} -.placeholder-emerald-200:-ms-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(167 243 208 / var(--tw-placeholder-opacity)); -} -.placeholder-emerald-200::-ms-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(167 243 208 / var(--tw-placeholder-opacity)); -} -.placeholder-emerald-200::placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(167 243 208 / var(--tw-placeholder-opacity)); -} -.placeholder-emerald-300::-webkit-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(110 231 183 / var(--tw-placeholder-opacity)); -} -.placeholder-emerald-300::-moz-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(110 231 183 / var(--tw-placeholder-opacity)); -} -.placeholder-emerald-300:-ms-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(110 231 183 / var(--tw-placeholder-opacity)); -} -.placeholder-emerald-300::-ms-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(110 231 183 / var(--tw-placeholder-opacity)); -} -.placeholder-emerald-300::placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(110 231 183 / var(--tw-placeholder-opacity)); -} -.placeholder-emerald-400::-webkit-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(52 211 153 / var(--tw-placeholder-opacity)); -} -.placeholder-emerald-400::-moz-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(52 211 153 / var(--tw-placeholder-opacity)); -} -.placeholder-emerald-400:-ms-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(52 211 153 / var(--tw-placeholder-opacity)); -} -.placeholder-emerald-400::-ms-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(52 211 153 / var(--tw-placeholder-opacity)); -} -.placeholder-emerald-400::placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(52 211 153 / var(--tw-placeholder-opacity)); -} -.placeholder-emerald-500::-webkit-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(16 185 129 / var(--tw-placeholder-opacity)); -} -.placeholder-emerald-500::-moz-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(16 185 129 / var(--tw-placeholder-opacity)); -} -.placeholder-emerald-500:-ms-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(16 185 129 / var(--tw-placeholder-opacity)); -} -.placeholder-emerald-500::-ms-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(16 185 129 / var(--tw-placeholder-opacity)); -} -.placeholder-emerald-500::placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(16 185 129 / var(--tw-placeholder-opacity)); -} -.placeholder-emerald-600::-webkit-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(5 150 105 / var(--tw-placeholder-opacity)); -} -.placeholder-emerald-600::-moz-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(5 150 105 / var(--tw-placeholder-opacity)); -} -.placeholder-emerald-600:-ms-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(5 150 105 / var(--tw-placeholder-opacity)); -} -.placeholder-emerald-600::-ms-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(5 150 105 / var(--tw-placeholder-opacity)); -} -.placeholder-emerald-600::placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(5 150 105 / var(--tw-placeholder-opacity)); -} -.placeholder-emerald-700::-webkit-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(4 120 87 / var(--tw-placeholder-opacity)); -} -.placeholder-emerald-700::-moz-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(4 120 87 / var(--tw-placeholder-opacity)); -} -.placeholder-emerald-700:-ms-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(4 120 87 / var(--tw-placeholder-opacity)); -} -.placeholder-emerald-700::-ms-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(4 120 87 / var(--tw-placeholder-opacity)); -} -.placeholder-emerald-700::placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(4 120 87 / var(--tw-placeholder-opacity)); -} -.placeholder-emerald-800::-webkit-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(6 95 70 / var(--tw-placeholder-opacity)); -} -.placeholder-emerald-800::-moz-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(6 95 70 / var(--tw-placeholder-opacity)); -} -.placeholder-emerald-800:-ms-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(6 95 70 / var(--tw-placeholder-opacity)); -} -.placeholder-emerald-800::-ms-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(6 95 70 / var(--tw-placeholder-opacity)); -} -.placeholder-emerald-800::placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(6 95 70 / var(--tw-placeholder-opacity)); -} -.placeholder-emerald-900::-webkit-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(6 78 59 / var(--tw-placeholder-opacity)); -} -.placeholder-emerald-900::-moz-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(6 78 59 / var(--tw-placeholder-opacity)); -} -.placeholder-emerald-900:-ms-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(6 78 59 / var(--tw-placeholder-opacity)); -} -.placeholder-emerald-900::-ms-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(6 78 59 / var(--tw-placeholder-opacity)); -} -.placeholder-emerald-900::placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(6 78 59 / var(--tw-placeholder-opacity)); -} .placeholder-teal-50::-webkit-input-placeholder{ --tw-placeholder-opacity: 1; color: rgb(237 250 250 / var(--tw-placeholder-opacity)); @@ -37441,406 +29087,6 @@ input[type="date"]::-webkit-inner-spin-button, --tw-placeholder-opacity: 1; color: rgb(1 68 81 / var(--tw-placeholder-opacity)); } -.placeholder-cyan-50::-webkit-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(236 254 255 / var(--tw-placeholder-opacity)); -} -.placeholder-cyan-50::-moz-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(236 254 255 / var(--tw-placeholder-opacity)); -} -.placeholder-cyan-50:-ms-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(236 254 255 / var(--tw-placeholder-opacity)); -} -.placeholder-cyan-50::-ms-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(236 254 255 / var(--tw-placeholder-opacity)); -} -.placeholder-cyan-50::placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(236 254 255 / var(--tw-placeholder-opacity)); -} -.placeholder-cyan-100::-webkit-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(207 250 254 / var(--tw-placeholder-opacity)); -} -.placeholder-cyan-100::-moz-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(207 250 254 / var(--tw-placeholder-opacity)); -} -.placeholder-cyan-100:-ms-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(207 250 254 / var(--tw-placeholder-opacity)); -} -.placeholder-cyan-100::-ms-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(207 250 254 / var(--tw-placeholder-opacity)); -} -.placeholder-cyan-100::placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(207 250 254 / var(--tw-placeholder-opacity)); -} -.placeholder-cyan-200::-webkit-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(165 243 252 / var(--tw-placeholder-opacity)); -} -.placeholder-cyan-200::-moz-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(165 243 252 / var(--tw-placeholder-opacity)); -} -.placeholder-cyan-200:-ms-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(165 243 252 / var(--tw-placeholder-opacity)); -} -.placeholder-cyan-200::-ms-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(165 243 252 / var(--tw-placeholder-opacity)); -} -.placeholder-cyan-200::placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(165 243 252 / var(--tw-placeholder-opacity)); -} -.placeholder-cyan-300::-webkit-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(103 232 249 / var(--tw-placeholder-opacity)); -} -.placeholder-cyan-300::-moz-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(103 232 249 / var(--tw-placeholder-opacity)); -} -.placeholder-cyan-300:-ms-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(103 232 249 / var(--tw-placeholder-opacity)); -} -.placeholder-cyan-300::-ms-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(103 232 249 / var(--tw-placeholder-opacity)); -} -.placeholder-cyan-300::placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(103 232 249 / var(--tw-placeholder-opacity)); -} -.placeholder-cyan-400::-webkit-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(34 211 238 / var(--tw-placeholder-opacity)); -} -.placeholder-cyan-400::-moz-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(34 211 238 / var(--tw-placeholder-opacity)); -} -.placeholder-cyan-400:-ms-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(34 211 238 / var(--tw-placeholder-opacity)); -} -.placeholder-cyan-400::-ms-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(34 211 238 / var(--tw-placeholder-opacity)); -} -.placeholder-cyan-400::placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(34 211 238 / var(--tw-placeholder-opacity)); -} -.placeholder-cyan-500::-webkit-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(6 182 212 / var(--tw-placeholder-opacity)); -} -.placeholder-cyan-500::-moz-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(6 182 212 / var(--tw-placeholder-opacity)); -} -.placeholder-cyan-500:-ms-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(6 182 212 / var(--tw-placeholder-opacity)); -} -.placeholder-cyan-500::-ms-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(6 182 212 / var(--tw-placeholder-opacity)); -} -.placeholder-cyan-500::placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(6 182 212 / var(--tw-placeholder-opacity)); -} -.placeholder-cyan-600::-webkit-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(8 145 178 / var(--tw-placeholder-opacity)); -} -.placeholder-cyan-600::-moz-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(8 145 178 / var(--tw-placeholder-opacity)); -} -.placeholder-cyan-600:-ms-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(8 145 178 / var(--tw-placeholder-opacity)); -} -.placeholder-cyan-600::-ms-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(8 145 178 / var(--tw-placeholder-opacity)); -} -.placeholder-cyan-600::placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(8 145 178 / var(--tw-placeholder-opacity)); -} -.placeholder-cyan-700::-webkit-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(14 116 144 / var(--tw-placeholder-opacity)); -} -.placeholder-cyan-700::-moz-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(14 116 144 / var(--tw-placeholder-opacity)); -} -.placeholder-cyan-700:-ms-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(14 116 144 / var(--tw-placeholder-opacity)); -} -.placeholder-cyan-700::-ms-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(14 116 144 / var(--tw-placeholder-opacity)); -} -.placeholder-cyan-700::placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(14 116 144 / var(--tw-placeholder-opacity)); -} -.placeholder-cyan-800::-webkit-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(21 94 117 / var(--tw-placeholder-opacity)); -} -.placeholder-cyan-800::-moz-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(21 94 117 / var(--tw-placeholder-opacity)); -} -.placeholder-cyan-800:-ms-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(21 94 117 / var(--tw-placeholder-opacity)); -} -.placeholder-cyan-800::-ms-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(21 94 117 / var(--tw-placeholder-opacity)); -} -.placeholder-cyan-800::placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(21 94 117 / var(--tw-placeholder-opacity)); -} -.placeholder-cyan-900::-webkit-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(22 78 99 / var(--tw-placeholder-opacity)); -} -.placeholder-cyan-900::-moz-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(22 78 99 / var(--tw-placeholder-opacity)); -} -.placeholder-cyan-900:-ms-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(22 78 99 / var(--tw-placeholder-opacity)); -} -.placeholder-cyan-900::-ms-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(22 78 99 / var(--tw-placeholder-opacity)); -} -.placeholder-cyan-900::placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(22 78 99 / var(--tw-placeholder-opacity)); -} -.placeholder-sky-50::-webkit-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(240 249 255 / var(--tw-placeholder-opacity)); -} -.placeholder-sky-50::-moz-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(240 249 255 / var(--tw-placeholder-opacity)); -} -.placeholder-sky-50:-ms-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(240 249 255 / var(--tw-placeholder-opacity)); -} -.placeholder-sky-50::-ms-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(240 249 255 / var(--tw-placeholder-opacity)); -} -.placeholder-sky-50::placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(240 249 255 / var(--tw-placeholder-opacity)); -} -.placeholder-sky-100::-webkit-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(224 242 254 / var(--tw-placeholder-opacity)); -} -.placeholder-sky-100::-moz-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(224 242 254 / var(--tw-placeholder-opacity)); -} -.placeholder-sky-100:-ms-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(224 242 254 / var(--tw-placeholder-opacity)); -} -.placeholder-sky-100::-ms-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(224 242 254 / var(--tw-placeholder-opacity)); -} -.placeholder-sky-100::placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(224 242 254 / var(--tw-placeholder-opacity)); -} -.placeholder-sky-200::-webkit-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(186 230 253 / var(--tw-placeholder-opacity)); -} -.placeholder-sky-200::-moz-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(186 230 253 / var(--tw-placeholder-opacity)); -} -.placeholder-sky-200:-ms-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(186 230 253 / var(--tw-placeholder-opacity)); -} -.placeholder-sky-200::-ms-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(186 230 253 / var(--tw-placeholder-opacity)); -} -.placeholder-sky-200::placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(186 230 253 / var(--tw-placeholder-opacity)); -} -.placeholder-sky-300::-webkit-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(125 211 252 / var(--tw-placeholder-opacity)); -} -.placeholder-sky-300::-moz-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(125 211 252 / var(--tw-placeholder-opacity)); -} -.placeholder-sky-300:-ms-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(125 211 252 / var(--tw-placeholder-opacity)); -} -.placeholder-sky-300::-ms-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(125 211 252 / var(--tw-placeholder-opacity)); -} -.placeholder-sky-300::placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(125 211 252 / var(--tw-placeholder-opacity)); -} -.placeholder-sky-400::-webkit-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(56 189 248 / var(--tw-placeholder-opacity)); -} -.placeholder-sky-400::-moz-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(56 189 248 / var(--tw-placeholder-opacity)); -} -.placeholder-sky-400:-ms-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(56 189 248 / var(--tw-placeholder-opacity)); -} -.placeholder-sky-400::-ms-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(56 189 248 / var(--tw-placeholder-opacity)); -} -.placeholder-sky-400::placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(56 189 248 / var(--tw-placeholder-opacity)); -} -.placeholder-sky-500::-webkit-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(14 165 233 / var(--tw-placeholder-opacity)); -} -.placeholder-sky-500::-moz-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(14 165 233 / var(--tw-placeholder-opacity)); -} -.placeholder-sky-500:-ms-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(14 165 233 / var(--tw-placeholder-opacity)); -} -.placeholder-sky-500::-ms-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(14 165 233 / var(--tw-placeholder-opacity)); -} -.placeholder-sky-500::placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(14 165 233 / var(--tw-placeholder-opacity)); -} -.placeholder-sky-600::-webkit-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(2 132 199 / var(--tw-placeholder-opacity)); -} -.placeholder-sky-600::-moz-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(2 132 199 / var(--tw-placeholder-opacity)); -} -.placeholder-sky-600:-ms-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(2 132 199 / var(--tw-placeholder-opacity)); -} -.placeholder-sky-600::-ms-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(2 132 199 / var(--tw-placeholder-opacity)); -} -.placeholder-sky-600::placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(2 132 199 / var(--tw-placeholder-opacity)); -} -.placeholder-sky-700::-webkit-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(3 105 161 / var(--tw-placeholder-opacity)); -} -.placeholder-sky-700::-moz-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(3 105 161 / var(--tw-placeholder-opacity)); -} -.placeholder-sky-700:-ms-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(3 105 161 / var(--tw-placeholder-opacity)); -} -.placeholder-sky-700::-ms-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(3 105 161 / var(--tw-placeholder-opacity)); -} -.placeholder-sky-700::placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(3 105 161 / var(--tw-placeholder-opacity)); -} -.placeholder-sky-800::-webkit-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(7 89 133 / var(--tw-placeholder-opacity)); -} -.placeholder-sky-800::-moz-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(7 89 133 / var(--tw-placeholder-opacity)); -} -.placeholder-sky-800:-ms-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(7 89 133 / var(--tw-placeholder-opacity)); -} -.placeholder-sky-800::-ms-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(7 89 133 / var(--tw-placeholder-opacity)); -} -.placeholder-sky-800::placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(7 89 133 / var(--tw-placeholder-opacity)); -} -.placeholder-sky-900::-webkit-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(12 74 110 / var(--tw-placeholder-opacity)); -} -.placeholder-sky-900::-moz-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(12 74 110 / var(--tw-placeholder-opacity)); -} -.placeholder-sky-900:-ms-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(12 74 110 / var(--tw-placeholder-opacity)); -} -.placeholder-sky-900::-ms-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(12 74 110 / var(--tw-placeholder-opacity)); -} -.placeholder-sky-900::placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(12 74 110 / var(--tw-placeholder-opacity)); -} .placeholder-blue-50::-webkit-input-placeholder{ --tw-placeholder-opacity: 1; color: rgb(242 248 251 / var(--tw-placeholder-opacity)); @@ -38261,206 +29507,6 @@ input[type="date"]::-webkit-inner-spin-button, --tw-placeholder-opacity: 1; color: rgb(54 47 120 / var(--tw-placeholder-opacity)); } -.placeholder-violet-50::-webkit-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(245 243 255 / var(--tw-placeholder-opacity)); -} -.placeholder-violet-50::-moz-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(245 243 255 / var(--tw-placeholder-opacity)); -} -.placeholder-violet-50:-ms-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(245 243 255 / var(--tw-placeholder-opacity)); -} -.placeholder-violet-50::-ms-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(245 243 255 / var(--tw-placeholder-opacity)); -} -.placeholder-violet-50::placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(245 243 255 / var(--tw-placeholder-opacity)); -} -.placeholder-violet-100::-webkit-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(237 233 254 / var(--tw-placeholder-opacity)); -} -.placeholder-violet-100::-moz-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(237 233 254 / var(--tw-placeholder-opacity)); -} -.placeholder-violet-100:-ms-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(237 233 254 / var(--tw-placeholder-opacity)); -} -.placeholder-violet-100::-ms-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(237 233 254 / var(--tw-placeholder-opacity)); -} -.placeholder-violet-100::placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(237 233 254 / var(--tw-placeholder-opacity)); -} -.placeholder-violet-200::-webkit-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(221 214 254 / var(--tw-placeholder-opacity)); -} -.placeholder-violet-200::-moz-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(221 214 254 / var(--tw-placeholder-opacity)); -} -.placeholder-violet-200:-ms-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(221 214 254 / var(--tw-placeholder-opacity)); -} -.placeholder-violet-200::-ms-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(221 214 254 / var(--tw-placeholder-opacity)); -} -.placeholder-violet-200::placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(221 214 254 / var(--tw-placeholder-opacity)); -} -.placeholder-violet-300::-webkit-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(196 181 253 / var(--tw-placeholder-opacity)); -} -.placeholder-violet-300::-moz-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(196 181 253 / var(--tw-placeholder-opacity)); -} -.placeholder-violet-300:-ms-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(196 181 253 / var(--tw-placeholder-opacity)); -} -.placeholder-violet-300::-ms-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(196 181 253 / var(--tw-placeholder-opacity)); -} -.placeholder-violet-300::placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(196 181 253 / var(--tw-placeholder-opacity)); -} -.placeholder-violet-400::-webkit-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(167 139 250 / var(--tw-placeholder-opacity)); -} -.placeholder-violet-400::-moz-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(167 139 250 / var(--tw-placeholder-opacity)); -} -.placeholder-violet-400:-ms-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(167 139 250 / var(--tw-placeholder-opacity)); -} -.placeholder-violet-400::-ms-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(167 139 250 / var(--tw-placeholder-opacity)); -} -.placeholder-violet-400::placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(167 139 250 / var(--tw-placeholder-opacity)); -} -.placeholder-violet-500::-webkit-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(139 92 246 / var(--tw-placeholder-opacity)); -} -.placeholder-violet-500::-moz-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(139 92 246 / var(--tw-placeholder-opacity)); -} -.placeholder-violet-500:-ms-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(139 92 246 / var(--tw-placeholder-opacity)); -} -.placeholder-violet-500::-ms-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(139 92 246 / var(--tw-placeholder-opacity)); -} -.placeholder-violet-500::placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(139 92 246 / var(--tw-placeholder-opacity)); -} -.placeholder-violet-600::-webkit-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(124 58 237 / var(--tw-placeholder-opacity)); -} -.placeholder-violet-600::-moz-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(124 58 237 / var(--tw-placeholder-opacity)); -} -.placeholder-violet-600:-ms-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(124 58 237 / var(--tw-placeholder-opacity)); -} -.placeholder-violet-600::-ms-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(124 58 237 / var(--tw-placeholder-opacity)); -} -.placeholder-violet-600::placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(124 58 237 / var(--tw-placeholder-opacity)); -} -.placeholder-violet-700::-webkit-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(109 40 217 / var(--tw-placeholder-opacity)); -} -.placeholder-violet-700::-moz-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(109 40 217 / var(--tw-placeholder-opacity)); -} -.placeholder-violet-700:-ms-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(109 40 217 / var(--tw-placeholder-opacity)); -} -.placeholder-violet-700::-ms-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(109 40 217 / var(--tw-placeholder-opacity)); -} -.placeholder-violet-700::placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(109 40 217 / var(--tw-placeholder-opacity)); -} -.placeholder-violet-800::-webkit-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(91 33 182 / var(--tw-placeholder-opacity)); -} -.placeholder-violet-800::-moz-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(91 33 182 / var(--tw-placeholder-opacity)); -} -.placeholder-violet-800:-ms-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(91 33 182 / var(--tw-placeholder-opacity)); -} -.placeholder-violet-800::-ms-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(91 33 182 / var(--tw-placeholder-opacity)); -} -.placeholder-violet-800::placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(91 33 182 / var(--tw-placeholder-opacity)); -} -.placeholder-violet-900::-webkit-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(76 29 149 / var(--tw-placeholder-opacity)); -} -.placeholder-violet-900::-moz-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(76 29 149 / var(--tw-placeholder-opacity)); -} -.placeholder-violet-900:-ms-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(76 29 149 / var(--tw-placeholder-opacity)); -} -.placeholder-violet-900::-ms-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(76 29 149 / var(--tw-placeholder-opacity)); -} -.placeholder-violet-900::placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(76 29 149 / var(--tw-placeholder-opacity)); -} .placeholder-purple-50::-webkit-input-placeholder{ --tw-placeholder-opacity: 1; color: rgb(247 247 249 / var(--tw-placeholder-opacity)); @@ -38681,206 +29727,6 @@ input[type="date"]::-webkit-inner-spin-button, --tw-placeholder-opacity: 1; color: rgb(85 88 139 / var(--tw-placeholder-opacity)); } -.placeholder-fuchsia-50::-webkit-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(253 244 255 / var(--tw-placeholder-opacity)); -} -.placeholder-fuchsia-50::-moz-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(253 244 255 / var(--tw-placeholder-opacity)); -} -.placeholder-fuchsia-50:-ms-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(253 244 255 / var(--tw-placeholder-opacity)); -} -.placeholder-fuchsia-50::-ms-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(253 244 255 / var(--tw-placeholder-opacity)); -} -.placeholder-fuchsia-50::placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(253 244 255 / var(--tw-placeholder-opacity)); -} -.placeholder-fuchsia-100::-webkit-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(250 232 255 / var(--tw-placeholder-opacity)); -} -.placeholder-fuchsia-100::-moz-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(250 232 255 / var(--tw-placeholder-opacity)); -} -.placeholder-fuchsia-100:-ms-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(250 232 255 / var(--tw-placeholder-opacity)); -} -.placeholder-fuchsia-100::-ms-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(250 232 255 / var(--tw-placeholder-opacity)); -} -.placeholder-fuchsia-100::placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(250 232 255 / var(--tw-placeholder-opacity)); -} -.placeholder-fuchsia-200::-webkit-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(245 208 254 / var(--tw-placeholder-opacity)); -} -.placeholder-fuchsia-200::-moz-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(245 208 254 / var(--tw-placeholder-opacity)); -} -.placeholder-fuchsia-200:-ms-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(245 208 254 / var(--tw-placeholder-opacity)); -} -.placeholder-fuchsia-200::-ms-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(245 208 254 / var(--tw-placeholder-opacity)); -} -.placeholder-fuchsia-200::placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(245 208 254 / var(--tw-placeholder-opacity)); -} -.placeholder-fuchsia-300::-webkit-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(240 171 252 / var(--tw-placeholder-opacity)); -} -.placeholder-fuchsia-300::-moz-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(240 171 252 / var(--tw-placeholder-opacity)); -} -.placeholder-fuchsia-300:-ms-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(240 171 252 / var(--tw-placeholder-opacity)); -} -.placeholder-fuchsia-300::-ms-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(240 171 252 / var(--tw-placeholder-opacity)); -} -.placeholder-fuchsia-300::placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(240 171 252 / var(--tw-placeholder-opacity)); -} -.placeholder-fuchsia-400::-webkit-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(232 121 249 / var(--tw-placeholder-opacity)); -} -.placeholder-fuchsia-400::-moz-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(232 121 249 / var(--tw-placeholder-opacity)); -} -.placeholder-fuchsia-400:-ms-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(232 121 249 / var(--tw-placeholder-opacity)); -} -.placeholder-fuchsia-400::-ms-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(232 121 249 / var(--tw-placeholder-opacity)); -} -.placeholder-fuchsia-400::placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(232 121 249 / var(--tw-placeholder-opacity)); -} -.placeholder-fuchsia-500::-webkit-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(217 70 239 / var(--tw-placeholder-opacity)); -} -.placeholder-fuchsia-500::-moz-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(217 70 239 / var(--tw-placeholder-opacity)); -} -.placeholder-fuchsia-500:-ms-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(217 70 239 / var(--tw-placeholder-opacity)); -} -.placeholder-fuchsia-500::-ms-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(217 70 239 / var(--tw-placeholder-opacity)); -} -.placeholder-fuchsia-500::placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(217 70 239 / var(--tw-placeholder-opacity)); -} -.placeholder-fuchsia-600::-webkit-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(192 38 211 / var(--tw-placeholder-opacity)); -} -.placeholder-fuchsia-600::-moz-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(192 38 211 / var(--tw-placeholder-opacity)); -} -.placeholder-fuchsia-600:-ms-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(192 38 211 / var(--tw-placeholder-opacity)); -} -.placeholder-fuchsia-600::-ms-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(192 38 211 / var(--tw-placeholder-opacity)); -} -.placeholder-fuchsia-600::placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(192 38 211 / var(--tw-placeholder-opacity)); -} -.placeholder-fuchsia-700::-webkit-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(162 28 175 / var(--tw-placeholder-opacity)); -} -.placeholder-fuchsia-700::-moz-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(162 28 175 / var(--tw-placeholder-opacity)); -} -.placeholder-fuchsia-700:-ms-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(162 28 175 / var(--tw-placeholder-opacity)); -} -.placeholder-fuchsia-700::-ms-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(162 28 175 / var(--tw-placeholder-opacity)); -} -.placeholder-fuchsia-700::placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(162 28 175 / var(--tw-placeholder-opacity)); -} -.placeholder-fuchsia-800::-webkit-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(134 25 143 / var(--tw-placeholder-opacity)); -} -.placeholder-fuchsia-800::-moz-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(134 25 143 / var(--tw-placeholder-opacity)); -} -.placeholder-fuchsia-800:-ms-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(134 25 143 / var(--tw-placeholder-opacity)); -} -.placeholder-fuchsia-800::-ms-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(134 25 143 / var(--tw-placeholder-opacity)); -} -.placeholder-fuchsia-800::placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(134 25 143 / var(--tw-placeholder-opacity)); -} -.placeholder-fuchsia-900::-webkit-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(112 26 117 / var(--tw-placeholder-opacity)); -} -.placeholder-fuchsia-900::-moz-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(112 26 117 / var(--tw-placeholder-opacity)); -} -.placeholder-fuchsia-900:-ms-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(112 26 117 / var(--tw-placeholder-opacity)); -} -.placeholder-fuchsia-900::-ms-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(112 26 117 / var(--tw-placeholder-opacity)); -} -.placeholder-fuchsia-900::placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(112 26 117 / var(--tw-placeholder-opacity)); -} .placeholder-pink-50::-webkit-input-placeholder{ --tw-placeholder-opacity: 1; color: rgb(253 242 248 / var(--tw-placeholder-opacity)); @@ -39081,6 +29927,126 @@ input[type="date"]::-webkit-inner-spin-button, --tw-placeholder-opacity: 1; color: rgb(117 26 61 / var(--tw-placeholder-opacity)); } +.placeholder-lilac-100::-webkit-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgb(245 247 250 / var(--tw-placeholder-opacity)); +} +.placeholder-lilac-100::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgb(245 247 250 / var(--tw-placeholder-opacity)); +} +.placeholder-lilac-100:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgb(245 247 250 / var(--tw-placeholder-opacity)); +} +.placeholder-lilac-100::-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgb(245 247 250 / var(--tw-placeholder-opacity)); +} +.placeholder-lilac-100::placeholder{ + --tw-placeholder-opacity: 1; + color: rgb(245 247 250 / var(--tw-placeholder-opacity)); +} +.placeholder-lilac-300::-webkit-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgb(237 240 252 / var(--tw-placeholder-opacity)); +} +.placeholder-lilac-300::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgb(237 240 252 / var(--tw-placeholder-opacity)); +} +.placeholder-lilac-300:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgb(237 240 252 / var(--tw-placeholder-opacity)); +} +.placeholder-lilac-300::-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgb(237 240 252 / var(--tw-placeholder-opacity)); +} +.placeholder-lilac-300::placeholder{ + --tw-placeholder-opacity: 1; + color: rgb(237 240 252 / var(--tw-placeholder-opacity)); +} +.placeholder-lilac-900::-webkit-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgb(220 226 249 / var(--tw-placeholder-opacity)); +} +.placeholder-lilac-900::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgb(220 226 249 / var(--tw-placeholder-opacity)); +} +.placeholder-lilac-900:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgb(220 226 249 / var(--tw-placeholder-opacity)); +} +.placeholder-lilac-900::-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgb(220 226 249 / var(--tw-placeholder-opacity)); +} +.placeholder-lilac-900::placeholder{ + --tw-placeholder-opacity: 1; + color: rgb(220 226 249 / var(--tw-placeholder-opacity)); +} +.placeholder-lilac::-webkit-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgb(248 249 254 / var(--tw-placeholder-opacity)); +} +.placeholder-lilac::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgb(248 249 254 / var(--tw-placeholder-opacity)); +} +.placeholder-lilac:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgb(248 249 254 / var(--tw-placeholder-opacity)); +} +.placeholder-lilac::-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgb(248 249 254 / var(--tw-placeholder-opacity)); +} +.placeholder-lilac::placeholder{ + --tw-placeholder-opacity: 1; + color: rgb(248 249 254 / var(--tw-placeholder-opacity)); +} +.placeholder-golden-900::-webkit-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgb(191 184 130 / var(--tw-placeholder-opacity)); +} +.placeholder-golden-900::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgb(191 184 130 / var(--tw-placeholder-opacity)); +} +.placeholder-golden-900:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgb(191 184 130 / var(--tw-placeholder-opacity)); +} +.placeholder-golden-900::-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgb(191 184 130 / var(--tw-placeholder-opacity)); +} +.placeholder-golden-900::placeholder{ + --tw-placeholder-opacity: 1; + color: rgb(191 184 130 / var(--tw-placeholder-opacity)); +} +.placeholder-golden::-webkit-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgb(209 201 137 / var(--tw-placeholder-opacity)); +} +.placeholder-golden::-moz-placeholder{ + --tw-placeholder-opacity: 1; + color: rgb(209 201 137 / var(--tw-placeholder-opacity)); +} +.placeholder-golden:-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgb(209 201 137 / var(--tw-placeholder-opacity)); +} +.placeholder-golden::-ms-input-placeholder{ + --tw-placeholder-opacity: 1; + color: rgb(209 201 137 / var(--tw-placeholder-opacity)); +} +.placeholder-golden::placeholder{ + --tw-placeholder-opacity: 1; + color: rgb(209 201 137 / var(--tw-placeholder-opacity)); +} .placeholder-rose-50::-webkit-input-placeholder{ --tw-placeholder-opacity: 1; color: rgb(255 241 242 / var(--tw-placeholder-opacity)); @@ -39301,126 +30267,6 @@ input[type="date"]::-webkit-inner-spin-button, --tw-placeholder-opacity: 1; color: rgb(244 63 94 / var(--tw-placeholder-opacity)); } -.placeholder-lilac-100::-webkit-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(245 247 250 / var(--tw-placeholder-opacity)); -} -.placeholder-lilac-100::-moz-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(245 247 250 / var(--tw-placeholder-opacity)); -} -.placeholder-lilac-100:-ms-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(245 247 250 / var(--tw-placeholder-opacity)); -} -.placeholder-lilac-100::-ms-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(245 247 250 / var(--tw-placeholder-opacity)); -} -.placeholder-lilac-100::placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(245 247 250 / var(--tw-placeholder-opacity)); -} -.placeholder-lilac-300::-webkit-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(237 240 252 / var(--tw-placeholder-opacity)); -} -.placeholder-lilac-300::-moz-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(237 240 252 / var(--tw-placeholder-opacity)); -} -.placeholder-lilac-300:-ms-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(237 240 252 / var(--tw-placeholder-opacity)); -} -.placeholder-lilac-300::-ms-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(237 240 252 / var(--tw-placeholder-opacity)); -} -.placeholder-lilac-300::placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(237 240 252 / var(--tw-placeholder-opacity)); -} -.placeholder-lilac-900::-webkit-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(220 226 249 / var(--tw-placeholder-opacity)); -} -.placeholder-lilac-900::-moz-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(220 226 249 / var(--tw-placeholder-opacity)); -} -.placeholder-lilac-900:-ms-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(220 226 249 / var(--tw-placeholder-opacity)); -} -.placeholder-lilac-900::-ms-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(220 226 249 / var(--tw-placeholder-opacity)); -} -.placeholder-lilac-900::placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(220 226 249 / var(--tw-placeholder-opacity)); -} -.placeholder-lilac::-webkit-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(248 249 254 / var(--tw-placeholder-opacity)); -} -.placeholder-lilac::-moz-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(248 249 254 / var(--tw-placeholder-opacity)); -} -.placeholder-lilac:-ms-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(248 249 254 / var(--tw-placeholder-opacity)); -} -.placeholder-lilac::-ms-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(248 249 254 / var(--tw-placeholder-opacity)); -} -.placeholder-lilac::placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(248 249 254 / var(--tw-placeholder-opacity)); -} -.placeholder-golden-900::-webkit-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(191 184 130 / var(--tw-placeholder-opacity)); -} -.placeholder-golden-900::-moz-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(191 184 130 / var(--tw-placeholder-opacity)); -} -.placeholder-golden-900:-ms-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(191 184 130 / var(--tw-placeholder-opacity)); -} -.placeholder-golden-900::-ms-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(191 184 130 / var(--tw-placeholder-opacity)); -} -.placeholder-golden-900::placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(191 184 130 / var(--tw-placeholder-opacity)); -} -.placeholder-golden::-webkit-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(209 201 137 / var(--tw-placeholder-opacity)); -} -.placeholder-golden::-moz-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(209 201 137 / var(--tw-placeholder-opacity)); -} -.placeholder-golden:-ms-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(209 201 137 / var(--tw-placeholder-opacity)); -} -.placeholder-golden::-ms-input-placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(209 201 137 / var(--tw-placeholder-opacity)); -} -.placeholder-golden::placeholder{ - --tw-placeholder-opacity: 1; - color: rgb(209 201 137 / var(--tw-placeholder-opacity)); -} .placeholder-status-success::-webkit-input-placeholder{ --tw-placeholder-opacity: 1; color: rgb(241 246 238 / var(--tw-placeholder-opacity)); @@ -40101,15 +30947,12 @@ input[type="date"]::-webkit-inner-spin-button, .placeholder-opacity-100::placeholder{ --tw-placeholder-opacity: 1; } -.caret-inherit{ - caret-color: inherit; -} -.caret-current{ - caret-color: currentColor; -} .caret-transparent{ caret-color: transparent; } +.caret-white{ + caret-color: #ffffff; +} .caret-black-50{ caret-color: #f6f6f6; } @@ -40143,39 +30986,6 @@ input[type="date"]::-webkit-inner-spin-button, .caret-black{ caret-color: #424242; } -.caret-white{ - caret-color: #ffffff; -} -.caret-slate-50{ - caret-color: #f8fafc; -} -.caret-slate-100{ - caret-color: #f1f5f9; -} -.caret-slate-200{ - caret-color: #e2e8f0; -} -.caret-slate-300{ - caret-color: #cbd5e1; -} -.caret-slate-400{ - caret-color: #94a3b8; -} -.caret-slate-500{ - caret-color: #64748b; -} -.caret-slate-600{ - caret-color: #475569; -} -.caret-slate-700{ - caret-color: #334155; -} -.caret-slate-800{ - caret-color: #1e293b; -} -.caret-slate-900{ - caret-color: #0f172a; -} .caret-gray-50{ caret-color: #F9FAFB; } @@ -40206,96 +31016,6 @@ input[type="date"]::-webkit-inner-spin-button, .caret-gray-900{ caret-color: #111827; } -.caret-zinc-50{ - caret-color: #fafafa; -} -.caret-zinc-100{ - caret-color: #f4f4f5; -} -.caret-zinc-200{ - caret-color: #e4e4e7; -} -.caret-zinc-300{ - caret-color: #d4d4d8; -} -.caret-zinc-400{ - caret-color: #a1a1aa; -} -.caret-zinc-500{ - caret-color: #71717a; -} -.caret-zinc-600{ - caret-color: #52525b; -} -.caret-zinc-700{ - caret-color: #3f3f46; -} -.caret-zinc-800{ - caret-color: #27272a; -} -.caret-zinc-900{ - caret-color: #18181b; -} -.caret-neutral-50{ - caret-color: #fafafa; -} -.caret-neutral-100{ - caret-color: #f5f5f5; -} -.caret-neutral-200{ - caret-color: #e5e5e5; -} -.caret-neutral-300{ - caret-color: #d4d4d4; -} -.caret-neutral-400{ - caret-color: #a3a3a3; -} -.caret-neutral-500{ - caret-color: #737373; -} -.caret-neutral-600{ - caret-color: #525252; -} -.caret-neutral-700{ - caret-color: #404040; -} -.caret-neutral-800{ - caret-color: #262626; -} -.caret-neutral-900{ - caret-color: #171717; -} -.caret-stone-50{ - caret-color: #fafaf9; -} -.caret-stone-100{ - caret-color: #f5f5f4; -} -.caret-stone-200{ - caret-color: #e7e5e4; -} -.caret-stone-300{ - caret-color: #d6d3d1; -} -.caret-stone-400{ - caret-color: #a8a29e; -} -.caret-stone-500{ - caret-color: #78716c; -} -.caret-stone-600{ - caret-color: #57534e; -} -.caret-stone-700{ - caret-color: #44403c; -} -.caret-stone-800{ - caret-color: #292524; -} -.caret-stone-900{ - caret-color: #1c1917; -} .caret-red-50{ caret-color: #fcf2f2; } @@ -40362,36 +31082,6 @@ input[type="date"]::-webkit-inner-spin-button, .caret-orange{ caret-color: #f59e0b; } -.caret-amber-50{ - caret-color: #fffbeb; -} -.caret-amber-100{ - caret-color: #fef3c7; -} -.caret-amber-200{ - caret-color: #fde68a; -} -.caret-amber-300{ - caret-color: #fcd34d; -} -.caret-amber-400{ - caret-color: #fbbf24; -} -.caret-amber-500{ - caret-color: #f59e0b; -} -.caret-amber-600{ - caret-color: #d97706; -} -.caret-amber-700{ - caret-color: #b45309; -} -.caret-amber-800{ - caret-color: #92400e; -} -.caret-amber-900{ - caret-color: #78350f; -} .caret-yellow-50{ caret-color: #FDFDEA; } @@ -40422,36 +31112,6 @@ input[type="date"]::-webkit-inner-spin-button, .caret-yellow-900{ caret-color: #633112; } -.caret-lime-50{ - caret-color: #f7fee7; -} -.caret-lime-100{ - caret-color: #ecfccb; -} -.caret-lime-200{ - caret-color: #d9f99d; -} -.caret-lime-300{ - caret-color: #bef264; -} -.caret-lime-400{ - caret-color: #a3e635; -} -.caret-lime-500{ - caret-color: #84cc16; -} -.caret-lime-600{ - caret-color: #65a30d; -} -.caret-lime-700{ - caret-color: #4d7c0f; -} -.caret-lime-800{ - caret-color: #3f6212; -} -.caret-lime-900{ - caret-color: #365314; -} .caret-green-50{ caret-color: #f8faf6; } @@ -40485,36 +31145,6 @@ input[type="date"]::-webkit-inner-spin-button, .caret-green{ caret-color: #6ea152; } -.caret-emerald-50{ - caret-color: #ecfdf5; -} -.caret-emerald-100{ - caret-color: #d1fae5; -} -.caret-emerald-200{ - caret-color: #a7f3d0; -} -.caret-emerald-300{ - caret-color: #6ee7b7; -} -.caret-emerald-400{ - caret-color: #34d399; -} -.caret-emerald-500{ - caret-color: #10b981; -} -.caret-emerald-600{ - caret-color: #059669; -} -.caret-emerald-700{ - caret-color: #047857; -} -.caret-emerald-800{ - caret-color: #065f46; -} -.caret-emerald-900{ - caret-color: #064e3b; -} .caret-teal-50{ caret-color: #EDFAFA; } @@ -40545,66 +31175,6 @@ input[type="date"]::-webkit-inner-spin-button, .caret-teal-900{ caret-color: #014451; } -.caret-cyan-50{ - caret-color: #ecfeff; -} -.caret-cyan-100{ - caret-color: #cffafe; -} -.caret-cyan-200{ - caret-color: #a5f3fc; -} -.caret-cyan-300{ - caret-color: #67e8f9; -} -.caret-cyan-400{ - caret-color: #22d3ee; -} -.caret-cyan-500{ - caret-color: #06b6d4; -} -.caret-cyan-600{ - caret-color: #0891b2; -} -.caret-cyan-700{ - caret-color: #0e7490; -} -.caret-cyan-800{ - caret-color: #155e75; -} -.caret-cyan-900{ - caret-color: #164e63; -} -.caret-sky-50{ - caret-color: #f0f9ff; -} -.caret-sky-100{ - caret-color: #e0f2fe; -} -.caret-sky-200{ - caret-color: #bae6fd; -} -.caret-sky-300{ - caret-color: #7dd3fc; -} -.caret-sky-400{ - caret-color: #38bdf8; -} -.caret-sky-500{ - caret-color: #0ea5e9; -} -.caret-sky-600{ - caret-color: #0284c7; -} -.caret-sky-700{ - caret-color: #0369a1; -} -.caret-sky-800{ - caret-color: #075985; -} -.caret-sky-900{ - caret-color: #0c4a6e; -} .caret-blue-50{ caret-color: #f2f8fb; } @@ -40668,36 +31238,6 @@ input[type="date"]::-webkit-inner-spin-button, .caret-indigo-900{ caret-color: #362F78; } -.caret-violet-50{ - caret-color: #f5f3ff; -} -.caret-violet-100{ - caret-color: #ede9fe; -} -.caret-violet-200{ - caret-color: #ddd6fe; -} -.caret-violet-300{ - caret-color: #c4b5fd; -} -.caret-violet-400{ - caret-color: #a78bfa; -} -.caret-violet-500{ - caret-color: #8b5cf6; -} -.caret-violet-600{ - caret-color: #7c3aed; -} -.caret-violet-700{ - caret-color: #6d28d9; -} -.caret-violet-800{ - caret-color: #5b21b6; -} -.caret-violet-900{ - caret-color: #4c1d95; -} .caret-purple-50{ caret-color: #f7f7f9; } @@ -40731,36 +31271,6 @@ input[type="date"]::-webkit-inner-spin-button, .caret-purple{ caret-color: #55588b; } -.caret-fuchsia-50{ - caret-color: #fdf4ff; -} -.caret-fuchsia-100{ - caret-color: #fae8ff; -} -.caret-fuchsia-200{ - caret-color: #f5d0fe; -} -.caret-fuchsia-300{ - caret-color: #f0abfc; -} -.caret-fuchsia-400{ - caret-color: #e879f9; -} -.caret-fuchsia-500{ - caret-color: #d946ef; -} -.caret-fuchsia-600{ - caret-color: #c026d3; -} -.caret-fuchsia-700{ - caret-color: #a21caf; -} -.caret-fuchsia-800{ - caret-color: #86198f; -} -.caret-fuchsia-900{ - caret-color: #701a75; -} .caret-pink-50{ caret-color: #FDF2F8; } @@ -40791,6 +31301,24 @@ input[type="date"]::-webkit-inner-spin-button, .caret-pink-900{ caret-color: #751A3D; } +.caret-lilac-100{ + caret-color: #F5F7FA; +} +.caret-lilac-300{ + caret-color: #EDF0FC; +} +.caret-lilac-900{ + caret-color: #DCE2F9; +} +.caret-lilac{ + caret-color: #F8F9FE; +} +.caret-golden-900{ + caret-color: #BFB882; +} +.caret-golden{ + caret-color: #D1C989; +} .caret-rose-50{ caret-color: #fff1f2; } @@ -40824,24 +31352,6 @@ input[type="date"]::-webkit-inner-spin-button, .caret-rose{ caret-color: #f43f5e; } -.caret-lilac-100{ - caret-color: #F5F7FA; -} -.caret-lilac-300{ - caret-color: #EDF0FC; -} -.caret-lilac-900{ - caret-color: #DCE2F9; -} -.caret-lilac{ - caret-color: #F8F9FE; -} -.caret-golden-900{ - caret-color: #BFB882; -} -.caret-golden{ - caret-color: #D1C989; -} .caret-status-success{ caret-color: #F1F6EE; } @@ -40911,15 +31421,12 @@ input[type="date"]::-webkit-inner-spin-button, .caret-testing{ caret-color: #935f07; } -.accent-inherit{ - accent-color: inherit; -} -.accent-current{ - accent-color: currentColor; -} .accent-transparent{ accent-color: transparent; } +.accent-white{ + accent-color: #ffffff; +} .accent-black-50{ accent-color: #f6f6f6; } @@ -40953,39 +31460,6 @@ input[type="date"]::-webkit-inner-spin-button, .accent-black{ accent-color: #424242; } -.accent-white{ - accent-color: #ffffff; -} -.accent-slate-50{ - accent-color: #f8fafc; -} -.accent-slate-100{ - accent-color: #f1f5f9; -} -.accent-slate-200{ - accent-color: #e2e8f0; -} -.accent-slate-300{ - accent-color: #cbd5e1; -} -.accent-slate-400{ - accent-color: #94a3b8; -} -.accent-slate-500{ - accent-color: #64748b; -} -.accent-slate-600{ - accent-color: #475569; -} -.accent-slate-700{ - accent-color: #334155; -} -.accent-slate-800{ - accent-color: #1e293b; -} -.accent-slate-900{ - accent-color: #0f172a; -} .accent-gray-50{ accent-color: #F9FAFB; } @@ -41016,96 +31490,6 @@ input[type="date"]::-webkit-inner-spin-button, .accent-gray-900{ accent-color: #111827; } -.accent-zinc-50{ - accent-color: #fafafa; -} -.accent-zinc-100{ - accent-color: #f4f4f5; -} -.accent-zinc-200{ - accent-color: #e4e4e7; -} -.accent-zinc-300{ - accent-color: #d4d4d8; -} -.accent-zinc-400{ - accent-color: #a1a1aa; -} -.accent-zinc-500{ - accent-color: #71717a; -} -.accent-zinc-600{ - accent-color: #52525b; -} -.accent-zinc-700{ - accent-color: #3f3f46; -} -.accent-zinc-800{ - accent-color: #27272a; -} -.accent-zinc-900{ - accent-color: #18181b; -} -.accent-neutral-50{ - accent-color: #fafafa; -} -.accent-neutral-100{ - accent-color: #f5f5f5; -} -.accent-neutral-200{ - accent-color: #e5e5e5; -} -.accent-neutral-300{ - accent-color: #d4d4d4; -} -.accent-neutral-400{ - accent-color: #a3a3a3; -} -.accent-neutral-500{ - accent-color: #737373; -} -.accent-neutral-600{ - accent-color: #525252; -} -.accent-neutral-700{ - accent-color: #404040; -} -.accent-neutral-800{ - accent-color: #262626; -} -.accent-neutral-900{ - accent-color: #171717; -} -.accent-stone-50{ - accent-color: #fafaf9; -} -.accent-stone-100{ - accent-color: #f5f5f4; -} -.accent-stone-200{ - accent-color: #e7e5e4; -} -.accent-stone-300{ - accent-color: #d6d3d1; -} -.accent-stone-400{ - accent-color: #a8a29e; -} -.accent-stone-500{ - accent-color: #78716c; -} -.accent-stone-600{ - accent-color: #57534e; -} -.accent-stone-700{ - accent-color: #44403c; -} -.accent-stone-800{ - accent-color: #292524; -} -.accent-stone-900{ - accent-color: #1c1917; -} .accent-red-50{ accent-color: #fcf2f2; } @@ -41172,36 +31556,6 @@ input[type="date"]::-webkit-inner-spin-button, .accent-orange{ accent-color: #f59e0b; } -.accent-amber-50{ - accent-color: #fffbeb; -} -.accent-amber-100{ - accent-color: #fef3c7; -} -.accent-amber-200{ - accent-color: #fde68a; -} -.accent-amber-300{ - accent-color: #fcd34d; -} -.accent-amber-400{ - accent-color: #fbbf24; -} -.accent-amber-500{ - accent-color: #f59e0b; -} -.accent-amber-600{ - accent-color: #d97706; -} -.accent-amber-700{ - accent-color: #b45309; -} -.accent-amber-800{ - accent-color: #92400e; -} -.accent-amber-900{ - accent-color: #78350f; -} .accent-yellow-50{ accent-color: #FDFDEA; } @@ -41232,36 +31586,6 @@ input[type="date"]::-webkit-inner-spin-button, .accent-yellow-900{ accent-color: #633112; } -.accent-lime-50{ - accent-color: #f7fee7; -} -.accent-lime-100{ - accent-color: #ecfccb; -} -.accent-lime-200{ - accent-color: #d9f99d; -} -.accent-lime-300{ - accent-color: #bef264; -} -.accent-lime-400{ - accent-color: #a3e635; -} -.accent-lime-500{ - accent-color: #84cc16; -} -.accent-lime-600{ - accent-color: #65a30d; -} -.accent-lime-700{ - accent-color: #4d7c0f; -} -.accent-lime-800{ - accent-color: #3f6212; -} -.accent-lime-900{ - accent-color: #365314; -} .accent-green-50{ accent-color: #f8faf6; } @@ -41295,36 +31619,6 @@ input[type="date"]::-webkit-inner-spin-button, .accent-green{ accent-color: #6ea152; } -.accent-emerald-50{ - accent-color: #ecfdf5; -} -.accent-emerald-100{ - accent-color: #d1fae5; -} -.accent-emerald-200{ - accent-color: #a7f3d0; -} -.accent-emerald-300{ - accent-color: #6ee7b7; -} -.accent-emerald-400{ - accent-color: #34d399; -} -.accent-emerald-500{ - accent-color: #10b981; -} -.accent-emerald-600{ - accent-color: #059669; -} -.accent-emerald-700{ - accent-color: #047857; -} -.accent-emerald-800{ - accent-color: #065f46; -} -.accent-emerald-900{ - accent-color: #064e3b; -} .accent-teal-50{ accent-color: #EDFAFA; } @@ -41355,66 +31649,6 @@ input[type="date"]::-webkit-inner-spin-button, .accent-teal-900{ accent-color: #014451; } -.accent-cyan-50{ - accent-color: #ecfeff; -} -.accent-cyan-100{ - accent-color: #cffafe; -} -.accent-cyan-200{ - accent-color: #a5f3fc; -} -.accent-cyan-300{ - accent-color: #67e8f9; -} -.accent-cyan-400{ - accent-color: #22d3ee; -} -.accent-cyan-500{ - accent-color: #06b6d4; -} -.accent-cyan-600{ - accent-color: #0891b2; -} -.accent-cyan-700{ - accent-color: #0e7490; -} -.accent-cyan-800{ - accent-color: #155e75; -} -.accent-cyan-900{ - accent-color: #164e63; -} -.accent-sky-50{ - accent-color: #f0f9ff; -} -.accent-sky-100{ - accent-color: #e0f2fe; -} -.accent-sky-200{ - accent-color: #bae6fd; -} -.accent-sky-300{ - accent-color: #7dd3fc; -} -.accent-sky-400{ - accent-color: #38bdf8; -} -.accent-sky-500{ - accent-color: #0ea5e9; -} -.accent-sky-600{ - accent-color: #0284c7; -} -.accent-sky-700{ - accent-color: #0369a1; -} -.accent-sky-800{ - accent-color: #075985; -} -.accent-sky-900{ - accent-color: #0c4a6e; -} .accent-blue-50{ accent-color: #f2f8fb; } @@ -41478,36 +31712,6 @@ input[type="date"]::-webkit-inner-spin-button, .accent-indigo-900{ accent-color: #362F78; } -.accent-violet-50{ - accent-color: #f5f3ff; -} -.accent-violet-100{ - accent-color: #ede9fe; -} -.accent-violet-200{ - accent-color: #ddd6fe; -} -.accent-violet-300{ - accent-color: #c4b5fd; -} -.accent-violet-400{ - accent-color: #a78bfa; -} -.accent-violet-500{ - accent-color: #8b5cf6; -} -.accent-violet-600{ - accent-color: #7c3aed; -} -.accent-violet-700{ - accent-color: #6d28d9; -} -.accent-violet-800{ - accent-color: #5b21b6; -} -.accent-violet-900{ - accent-color: #4c1d95; -} .accent-purple-50{ accent-color: #f7f7f9; } @@ -41541,36 +31745,6 @@ input[type="date"]::-webkit-inner-spin-button, .accent-purple{ accent-color: #55588b; } -.accent-fuchsia-50{ - accent-color: #fdf4ff; -} -.accent-fuchsia-100{ - accent-color: #fae8ff; -} -.accent-fuchsia-200{ - accent-color: #f5d0fe; -} -.accent-fuchsia-300{ - accent-color: #f0abfc; -} -.accent-fuchsia-400{ - accent-color: #e879f9; -} -.accent-fuchsia-500{ - accent-color: #d946ef; -} -.accent-fuchsia-600{ - accent-color: #c026d3; -} -.accent-fuchsia-700{ - accent-color: #a21caf; -} -.accent-fuchsia-800{ - accent-color: #86198f; -} -.accent-fuchsia-900{ - accent-color: #701a75; -} .accent-pink-50{ accent-color: #FDF2F8; } @@ -41601,6 +31775,24 @@ input[type="date"]::-webkit-inner-spin-button, .accent-pink-900{ accent-color: #751A3D; } +.accent-lilac-100{ + accent-color: #F5F7FA; +} +.accent-lilac-300{ + accent-color: #EDF0FC; +} +.accent-lilac-900{ + accent-color: #DCE2F9; +} +.accent-lilac{ + accent-color: #F8F9FE; +} +.accent-golden-900{ + accent-color: #BFB882; +} +.accent-golden{ + accent-color: #D1C989; +} .accent-rose-50{ accent-color: #fff1f2; } @@ -41634,24 +31826,6 @@ input[type="date"]::-webkit-inner-spin-button, .accent-rose{ accent-color: #f43f5e; } -.accent-lilac-100{ - accent-color: #F5F7FA; -} -.accent-lilac-300{ - accent-color: #EDF0FC; -} -.accent-lilac-900{ - accent-color: #DCE2F9; -} -.accent-lilac{ - accent-color: #F8F9FE; -} -.accent-golden-900{ - accent-color: #BFB882; -} -.accent-golden{ - accent-color: #D1C989; -} .accent-status-success{ accent-color: #F1F6EE; } @@ -41919,18 +32093,14 @@ input[type="date"]::-webkit-inner-spin-button, -webkit-box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } -.shadow-inherit{ - --tw-shadow-color: inherit; - --tw-shadow: var(--tw-shadow-colored); -} -.shadow-current{ - --tw-shadow-color: currentColor; - --tw-shadow: var(--tw-shadow-colored); -} .shadow-transparent{ --tw-shadow-color: transparent; --tw-shadow: var(--tw-shadow-colored); } +.shadow-white{ + --tw-shadow-color: #ffffff; + --tw-shadow: var(--tw-shadow-colored); +} .shadow-black-50{ --tw-shadow-color: #f6f6f6; --tw-shadow: var(--tw-shadow-colored); @@ -41975,50 +32145,6 @@ input[type="date"]::-webkit-inner-spin-button, --tw-shadow-color: #424242; --tw-shadow: var(--tw-shadow-colored); } -.shadow-white{ - --tw-shadow-color: #ffffff; - --tw-shadow: var(--tw-shadow-colored); -} -.shadow-slate-50{ - --tw-shadow-color: #f8fafc; - --tw-shadow: var(--tw-shadow-colored); -} -.shadow-slate-100{ - --tw-shadow-color: #f1f5f9; - --tw-shadow: var(--tw-shadow-colored); -} -.shadow-slate-200{ - --tw-shadow-color: #e2e8f0; - --tw-shadow: var(--tw-shadow-colored); -} -.shadow-slate-300{ - --tw-shadow-color: #cbd5e1; - --tw-shadow: var(--tw-shadow-colored); -} -.shadow-slate-400{ - --tw-shadow-color: #94a3b8; - --tw-shadow: var(--tw-shadow-colored); -} -.shadow-slate-500{ - --tw-shadow-color: #64748b; - --tw-shadow: var(--tw-shadow-colored); -} -.shadow-slate-600{ - --tw-shadow-color: #475569; - --tw-shadow: var(--tw-shadow-colored); -} -.shadow-slate-700{ - --tw-shadow-color: #334155; - --tw-shadow: var(--tw-shadow-colored); -} -.shadow-slate-800{ - --tw-shadow-color: #1e293b; - --tw-shadow: var(--tw-shadow-colored); -} -.shadow-slate-900{ - --tw-shadow-color: #0f172a; - --tw-shadow: var(--tw-shadow-colored); -} .shadow-gray-50{ --tw-shadow-color: #F9FAFB; --tw-shadow: var(--tw-shadow-colored); @@ -42059,126 +32185,6 @@ input[type="date"]::-webkit-inner-spin-button, --tw-shadow-color: #111827; --tw-shadow: var(--tw-shadow-colored); } -.shadow-zinc-50{ - --tw-shadow-color: #fafafa; - --tw-shadow: var(--tw-shadow-colored); -} -.shadow-zinc-100{ - --tw-shadow-color: #f4f4f5; - --tw-shadow: var(--tw-shadow-colored); -} -.shadow-zinc-200{ - --tw-shadow-color: #e4e4e7; - --tw-shadow: var(--tw-shadow-colored); -} -.shadow-zinc-300{ - --tw-shadow-color: #d4d4d8; - --tw-shadow: var(--tw-shadow-colored); -} -.shadow-zinc-400{ - --tw-shadow-color: #a1a1aa; - --tw-shadow: var(--tw-shadow-colored); -} -.shadow-zinc-500{ - --tw-shadow-color: #71717a; - --tw-shadow: var(--tw-shadow-colored); -} -.shadow-zinc-600{ - --tw-shadow-color: #52525b; - --tw-shadow: var(--tw-shadow-colored); -} -.shadow-zinc-700{ - --tw-shadow-color: #3f3f46; - --tw-shadow: var(--tw-shadow-colored); -} -.shadow-zinc-800{ - --tw-shadow-color: #27272a; - --tw-shadow: var(--tw-shadow-colored); -} -.shadow-zinc-900{ - --tw-shadow-color: #18181b; - --tw-shadow: var(--tw-shadow-colored); -} -.shadow-neutral-50{ - --tw-shadow-color: #fafafa; - --tw-shadow: var(--tw-shadow-colored); -} -.shadow-neutral-100{ - --tw-shadow-color: #f5f5f5; - --tw-shadow: var(--tw-shadow-colored); -} -.shadow-neutral-200{ - --tw-shadow-color: #e5e5e5; - --tw-shadow: var(--tw-shadow-colored); -} -.shadow-neutral-300{ - --tw-shadow-color: #d4d4d4; - --tw-shadow: var(--tw-shadow-colored); -} -.shadow-neutral-400{ - --tw-shadow-color: #a3a3a3; - --tw-shadow: var(--tw-shadow-colored); -} -.shadow-neutral-500{ - --tw-shadow-color: #737373; - --tw-shadow: var(--tw-shadow-colored); -} -.shadow-neutral-600{ - --tw-shadow-color: #525252; - --tw-shadow: var(--tw-shadow-colored); -} -.shadow-neutral-700{ - --tw-shadow-color: #404040; - --tw-shadow: var(--tw-shadow-colored); -} -.shadow-neutral-800{ - --tw-shadow-color: #262626; - --tw-shadow: var(--tw-shadow-colored); -} -.shadow-neutral-900{ - --tw-shadow-color: #171717; - --tw-shadow: var(--tw-shadow-colored); -} -.shadow-stone-50{ - --tw-shadow-color: #fafaf9; - --tw-shadow: var(--tw-shadow-colored); -} -.shadow-stone-100{ - --tw-shadow-color: #f5f5f4; - --tw-shadow: var(--tw-shadow-colored); -} -.shadow-stone-200{ - --tw-shadow-color: #e7e5e4; - --tw-shadow: var(--tw-shadow-colored); -} -.shadow-stone-300{ - --tw-shadow-color: #d6d3d1; - --tw-shadow: var(--tw-shadow-colored); -} -.shadow-stone-400{ - --tw-shadow-color: #a8a29e; - --tw-shadow: var(--tw-shadow-colored); -} -.shadow-stone-500{ - --tw-shadow-color: #78716c; - --tw-shadow: var(--tw-shadow-colored); -} -.shadow-stone-600{ - --tw-shadow-color: #57534e; - --tw-shadow: var(--tw-shadow-colored); -} -.shadow-stone-700{ - --tw-shadow-color: #44403c; - --tw-shadow: var(--tw-shadow-colored); -} -.shadow-stone-800{ - --tw-shadow-color: #292524; - --tw-shadow: var(--tw-shadow-colored); -} -.shadow-stone-900{ - --tw-shadow-color: #1c1917; - --tw-shadow: var(--tw-shadow-colored); -} .shadow-red-50{ --tw-shadow-color: #fcf2f2; --tw-shadow: var(--tw-shadow-colored); @@ -42267,46 +32273,6 @@ input[type="date"]::-webkit-inner-spin-button, --tw-shadow-color: #f59e0b; --tw-shadow: var(--tw-shadow-colored); } -.shadow-amber-50{ - --tw-shadow-color: #fffbeb; - --tw-shadow: var(--tw-shadow-colored); -} -.shadow-amber-100{ - --tw-shadow-color: #fef3c7; - --tw-shadow: var(--tw-shadow-colored); -} -.shadow-amber-200{ - --tw-shadow-color: #fde68a; - --tw-shadow: var(--tw-shadow-colored); -} -.shadow-amber-300{ - --tw-shadow-color: #fcd34d; - --tw-shadow: var(--tw-shadow-colored); -} -.shadow-amber-400{ - --tw-shadow-color: #fbbf24; - --tw-shadow: var(--tw-shadow-colored); -} -.shadow-amber-500{ - --tw-shadow-color: #f59e0b; - --tw-shadow: var(--tw-shadow-colored); -} -.shadow-amber-600{ - --tw-shadow-color: #d97706; - --tw-shadow: var(--tw-shadow-colored); -} -.shadow-amber-700{ - --tw-shadow-color: #b45309; - --tw-shadow: var(--tw-shadow-colored); -} -.shadow-amber-800{ - --tw-shadow-color: #92400e; - --tw-shadow: var(--tw-shadow-colored); -} -.shadow-amber-900{ - --tw-shadow-color: #78350f; - --tw-shadow: var(--tw-shadow-colored); -} .shadow-yellow-50{ --tw-shadow-color: #FDFDEA; --tw-shadow: var(--tw-shadow-colored); @@ -42347,46 +32313,6 @@ input[type="date"]::-webkit-inner-spin-button, --tw-shadow-color: #633112; --tw-shadow: var(--tw-shadow-colored); } -.shadow-lime-50{ - --tw-shadow-color: #f7fee7; - --tw-shadow: var(--tw-shadow-colored); -} -.shadow-lime-100{ - --tw-shadow-color: #ecfccb; - --tw-shadow: var(--tw-shadow-colored); -} -.shadow-lime-200{ - --tw-shadow-color: #d9f99d; - --tw-shadow: var(--tw-shadow-colored); -} -.shadow-lime-300{ - --tw-shadow-color: #bef264; - --tw-shadow: var(--tw-shadow-colored); -} -.shadow-lime-400{ - --tw-shadow-color: #a3e635; - --tw-shadow: var(--tw-shadow-colored); -} -.shadow-lime-500{ - --tw-shadow-color: #84cc16; - --tw-shadow: var(--tw-shadow-colored); -} -.shadow-lime-600{ - --tw-shadow-color: #65a30d; - --tw-shadow: var(--tw-shadow-colored); -} -.shadow-lime-700{ - --tw-shadow-color: #4d7c0f; - --tw-shadow: var(--tw-shadow-colored); -} -.shadow-lime-800{ - --tw-shadow-color: #3f6212; - --tw-shadow: var(--tw-shadow-colored); -} -.shadow-lime-900{ - --tw-shadow-color: #365314; - --tw-shadow: var(--tw-shadow-colored); -} .shadow-green-50{ --tw-shadow-color: #f8faf6; --tw-shadow: var(--tw-shadow-colored); @@ -42431,46 +32357,6 @@ input[type="date"]::-webkit-inner-spin-button, --tw-shadow-color: #6ea152; --tw-shadow: var(--tw-shadow-colored); } -.shadow-emerald-50{ - --tw-shadow-color: #ecfdf5; - --tw-shadow: var(--tw-shadow-colored); -} -.shadow-emerald-100{ - --tw-shadow-color: #d1fae5; - --tw-shadow: var(--tw-shadow-colored); -} -.shadow-emerald-200{ - --tw-shadow-color: #a7f3d0; - --tw-shadow: var(--tw-shadow-colored); -} -.shadow-emerald-300{ - --tw-shadow-color: #6ee7b7; - --tw-shadow: var(--tw-shadow-colored); -} -.shadow-emerald-400{ - --tw-shadow-color: #34d399; - --tw-shadow: var(--tw-shadow-colored); -} -.shadow-emerald-500{ - --tw-shadow-color: #10b981; - --tw-shadow: var(--tw-shadow-colored); -} -.shadow-emerald-600{ - --tw-shadow-color: #059669; - --tw-shadow: var(--tw-shadow-colored); -} -.shadow-emerald-700{ - --tw-shadow-color: #047857; - --tw-shadow: var(--tw-shadow-colored); -} -.shadow-emerald-800{ - --tw-shadow-color: #065f46; - --tw-shadow: var(--tw-shadow-colored); -} -.shadow-emerald-900{ - --tw-shadow-color: #064e3b; - --tw-shadow: var(--tw-shadow-colored); -} .shadow-teal-50{ --tw-shadow-color: #EDFAFA; --tw-shadow: var(--tw-shadow-colored); @@ -42511,86 +32397,6 @@ input[type="date"]::-webkit-inner-spin-button, --tw-shadow-color: #014451; --tw-shadow: var(--tw-shadow-colored); } -.shadow-cyan-50{ - --tw-shadow-color: #ecfeff; - --tw-shadow: var(--tw-shadow-colored); -} -.shadow-cyan-100{ - --tw-shadow-color: #cffafe; - --tw-shadow: var(--tw-shadow-colored); -} -.shadow-cyan-200{ - --tw-shadow-color: #a5f3fc; - --tw-shadow: var(--tw-shadow-colored); -} -.shadow-cyan-300{ - --tw-shadow-color: #67e8f9; - --tw-shadow: var(--tw-shadow-colored); -} -.shadow-cyan-400{ - --tw-shadow-color: #22d3ee; - --tw-shadow: var(--tw-shadow-colored); -} -.shadow-cyan-500{ - --tw-shadow-color: #06b6d4; - --tw-shadow: var(--tw-shadow-colored); -} -.shadow-cyan-600{ - --tw-shadow-color: #0891b2; - --tw-shadow: var(--tw-shadow-colored); -} -.shadow-cyan-700{ - --tw-shadow-color: #0e7490; - --tw-shadow: var(--tw-shadow-colored); -} -.shadow-cyan-800{ - --tw-shadow-color: #155e75; - --tw-shadow: var(--tw-shadow-colored); -} -.shadow-cyan-900{ - --tw-shadow-color: #164e63; - --tw-shadow: var(--tw-shadow-colored); -} -.shadow-sky-50{ - --tw-shadow-color: #f0f9ff; - --tw-shadow: var(--tw-shadow-colored); -} -.shadow-sky-100{ - --tw-shadow-color: #e0f2fe; - --tw-shadow: var(--tw-shadow-colored); -} -.shadow-sky-200{ - --tw-shadow-color: #bae6fd; - --tw-shadow: var(--tw-shadow-colored); -} -.shadow-sky-300{ - --tw-shadow-color: #7dd3fc; - --tw-shadow: var(--tw-shadow-colored); -} -.shadow-sky-400{ - --tw-shadow-color: #38bdf8; - --tw-shadow: var(--tw-shadow-colored); -} -.shadow-sky-500{ - --tw-shadow-color: #0ea5e9; - --tw-shadow: var(--tw-shadow-colored); -} -.shadow-sky-600{ - --tw-shadow-color: #0284c7; - --tw-shadow: var(--tw-shadow-colored); -} -.shadow-sky-700{ - --tw-shadow-color: #0369a1; - --tw-shadow: var(--tw-shadow-colored); -} -.shadow-sky-800{ - --tw-shadow-color: #075985; - --tw-shadow: var(--tw-shadow-colored); -} -.shadow-sky-900{ - --tw-shadow-color: #0c4a6e; - --tw-shadow: var(--tw-shadow-colored); -} .shadow-blue-50{ --tw-shadow-color: #f2f8fb; --tw-shadow: var(--tw-shadow-colored); @@ -42675,46 +32481,6 @@ input[type="date"]::-webkit-inner-spin-button, --tw-shadow-color: #362F78; --tw-shadow: var(--tw-shadow-colored); } -.shadow-violet-50{ - --tw-shadow-color: #f5f3ff; - --tw-shadow: var(--tw-shadow-colored); -} -.shadow-violet-100{ - --tw-shadow-color: #ede9fe; - --tw-shadow: var(--tw-shadow-colored); -} -.shadow-violet-200{ - --tw-shadow-color: #ddd6fe; - --tw-shadow: var(--tw-shadow-colored); -} -.shadow-violet-300{ - --tw-shadow-color: #c4b5fd; - --tw-shadow: var(--tw-shadow-colored); -} -.shadow-violet-400{ - --tw-shadow-color: #a78bfa; - --tw-shadow: var(--tw-shadow-colored); -} -.shadow-violet-500{ - --tw-shadow-color: #8b5cf6; - --tw-shadow: var(--tw-shadow-colored); -} -.shadow-violet-600{ - --tw-shadow-color: #7c3aed; - --tw-shadow: var(--tw-shadow-colored); -} -.shadow-violet-700{ - --tw-shadow-color: #6d28d9; - --tw-shadow: var(--tw-shadow-colored); -} -.shadow-violet-800{ - --tw-shadow-color: #5b21b6; - --tw-shadow: var(--tw-shadow-colored); -} -.shadow-violet-900{ - --tw-shadow-color: #4c1d95; - --tw-shadow: var(--tw-shadow-colored); -} .shadow-purple-50{ --tw-shadow-color: #f7f7f9; --tw-shadow: var(--tw-shadow-colored); @@ -42759,46 +32525,6 @@ input[type="date"]::-webkit-inner-spin-button, --tw-shadow-color: #55588b; --tw-shadow: var(--tw-shadow-colored); } -.shadow-fuchsia-50{ - --tw-shadow-color: #fdf4ff; - --tw-shadow: var(--tw-shadow-colored); -} -.shadow-fuchsia-100{ - --tw-shadow-color: #fae8ff; - --tw-shadow: var(--tw-shadow-colored); -} -.shadow-fuchsia-200{ - --tw-shadow-color: #f5d0fe; - --tw-shadow: var(--tw-shadow-colored); -} -.shadow-fuchsia-300{ - --tw-shadow-color: #f0abfc; - --tw-shadow: var(--tw-shadow-colored); -} -.shadow-fuchsia-400{ - --tw-shadow-color: #e879f9; - --tw-shadow: var(--tw-shadow-colored); -} -.shadow-fuchsia-500{ - --tw-shadow-color: #d946ef; - --tw-shadow: var(--tw-shadow-colored); -} -.shadow-fuchsia-600{ - --tw-shadow-color: #c026d3; - --tw-shadow: var(--tw-shadow-colored); -} -.shadow-fuchsia-700{ - --tw-shadow-color: #a21caf; - --tw-shadow: var(--tw-shadow-colored); -} -.shadow-fuchsia-800{ - --tw-shadow-color: #86198f; - --tw-shadow: var(--tw-shadow-colored); -} -.shadow-fuchsia-900{ - --tw-shadow-color: #701a75; - --tw-shadow: var(--tw-shadow-colored); -} .shadow-pink-50{ --tw-shadow-color: #FDF2F8; --tw-shadow: var(--tw-shadow-colored); @@ -42839,6 +32565,30 @@ input[type="date"]::-webkit-inner-spin-button, --tw-shadow-color: #751A3D; --tw-shadow: var(--tw-shadow-colored); } +.shadow-lilac-100{ + --tw-shadow-color: #F5F7FA; + --tw-shadow: var(--tw-shadow-colored); +} +.shadow-lilac-300{ + --tw-shadow-color: #EDF0FC; + --tw-shadow: var(--tw-shadow-colored); +} +.shadow-lilac-900{ + --tw-shadow-color: #DCE2F9; + --tw-shadow: var(--tw-shadow-colored); +} +.shadow-lilac{ + --tw-shadow-color: #F8F9FE; + --tw-shadow: var(--tw-shadow-colored); +} +.shadow-golden-900{ + --tw-shadow-color: #BFB882; + --tw-shadow: var(--tw-shadow-colored); +} +.shadow-golden{ + --tw-shadow-color: #D1C989; + --tw-shadow: var(--tw-shadow-colored); +} .shadow-rose-50{ --tw-shadow-color: #fff1f2; --tw-shadow: var(--tw-shadow-colored); @@ -42883,30 +32633,6 @@ input[type="date"]::-webkit-inner-spin-button, --tw-shadow-color: #f43f5e; --tw-shadow: var(--tw-shadow-colored); } -.shadow-lilac-100{ - --tw-shadow-color: #F5F7FA; - --tw-shadow: var(--tw-shadow-colored); -} -.shadow-lilac-300{ - --tw-shadow-color: #EDF0FC; - --tw-shadow: var(--tw-shadow-colored); -} -.shadow-lilac-900{ - --tw-shadow-color: #DCE2F9; - --tw-shadow: var(--tw-shadow-colored); -} -.shadow-lilac{ - --tw-shadow-color: #F8F9FE; - --tw-shadow: var(--tw-shadow-colored); -} -.shadow-golden-900{ - --tw-shadow-color: #BFB882; - --tw-shadow: var(--tw-shadow-colored); -} -.shadow-golden{ - --tw-shadow-color: #D1C989; - --tw-shadow: var(--tw-shadow-colored); -} .shadow-status-success{ --tw-shadow-color: #F1F6EE; --tw-shadow: var(--tw-shadow-colored); @@ -43051,15 +32777,12 @@ input[type="date"]::-webkit-inner-spin-button, .outline-offset-8{ outline-offset: 8px; } -.outline-inherit{ - outline-color: inherit; -} -.outline-current{ - outline-color: currentColor; -} .outline-transparent{ outline-color: transparent; } +.outline-white{ + outline-color: #ffffff; +} .outline-black-50{ outline-color: #f6f6f6; } @@ -43093,39 +32816,6 @@ input[type="date"]::-webkit-inner-spin-button, .outline-black{ outline-color: #424242; } -.outline-white{ - outline-color: #ffffff; -} -.outline-slate-50{ - outline-color: #f8fafc; -} -.outline-slate-100{ - outline-color: #f1f5f9; -} -.outline-slate-200{ - outline-color: #e2e8f0; -} -.outline-slate-300{ - outline-color: #cbd5e1; -} -.outline-slate-400{ - outline-color: #94a3b8; -} -.outline-slate-500{ - outline-color: #64748b; -} -.outline-slate-600{ - outline-color: #475569; -} -.outline-slate-700{ - outline-color: #334155; -} -.outline-slate-800{ - outline-color: #1e293b; -} -.outline-slate-900{ - outline-color: #0f172a; -} .outline-gray-50{ outline-color: #F9FAFB; } @@ -43156,96 +32846,6 @@ input[type="date"]::-webkit-inner-spin-button, .outline-gray-900{ outline-color: #111827; } -.outline-zinc-50{ - outline-color: #fafafa; -} -.outline-zinc-100{ - outline-color: #f4f4f5; -} -.outline-zinc-200{ - outline-color: #e4e4e7; -} -.outline-zinc-300{ - outline-color: #d4d4d8; -} -.outline-zinc-400{ - outline-color: #a1a1aa; -} -.outline-zinc-500{ - outline-color: #71717a; -} -.outline-zinc-600{ - outline-color: #52525b; -} -.outline-zinc-700{ - outline-color: #3f3f46; -} -.outline-zinc-800{ - outline-color: #27272a; -} -.outline-zinc-900{ - outline-color: #18181b; -} -.outline-neutral-50{ - outline-color: #fafafa; -} -.outline-neutral-100{ - outline-color: #f5f5f5; -} -.outline-neutral-200{ - outline-color: #e5e5e5; -} -.outline-neutral-300{ - outline-color: #d4d4d4; -} -.outline-neutral-400{ - outline-color: #a3a3a3; -} -.outline-neutral-500{ - outline-color: #737373; -} -.outline-neutral-600{ - outline-color: #525252; -} -.outline-neutral-700{ - outline-color: #404040; -} -.outline-neutral-800{ - outline-color: #262626; -} -.outline-neutral-900{ - outline-color: #171717; -} -.outline-stone-50{ - outline-color: #fafaf9; -} -.outline-stone-100{ - outline-color: #f5f5f4; -} -.outline-stone-200{ - outline-color: #e7e5e4; -} -.outline-stone-300{ - outline-color: #d6d3d1; -} -.outline-stone-400{ - outline-color: #a8a29e; -} -.outline-stone-500{ - outline-color: #78716c; -} -.outline-stone-600{ - outline-color: #57534e; -} -.outline-stone-700{ - outline-color: #44403c; -} -.outline-stone-800{ - outline-color: #292524; -} -.outline-stone-900{ - outline-color: #1c1917; -} .outline-red-50{ outline-color: #fcf2f2; } @@ -43312,36 +32912,6 @@ input[type="date"]::-webkit-inner-spin-button, .outline-orange{ outline-color: #f59e0b; } -.outline-amber-50{ - outline-color: #fffbeb; -} -.outline-amber-100{ - outline-color: #fef3c7; -} -.outline-amber-200{ - outline-color: #fde68a; -} -.outline-amber-300{ - outline-color: #fcd34d; -} -.outline-amber-400{ - outline-color: #fbbf24; -} -.outline-amber-500{ - outline-color: #f59e0b; -} -.outline-amber-600{ - outline-color: #d97706; -} -.outline-amber-700{ - outline-color: #b45309; -} -.outline-amber-800{ - outline-color: #92400e; -} -.outline-amber-900{ - outline-color: #78350f; -} .outline-yellow-50{ outline-color: #FDFDEA; } @@ -43372,36 +32942,6 @@ input[type="date"]::-webkit-inner-spin-button, .outline-yellow-900{ outline-color: #633112; } -.outline-lime-50{ - outline-color: #f7fee7; -} -.outline-lime-100{ - outline-color: #ecfccb; -} -.outline-lime-200{ - outline-color: #d9f99d; -} -.outline-lime-300{ - outline-color: #bef264; -} -.outline-lime-400{ - outline-color: #a3e635; -} -.outline-lime-500{ - outline-color: #84cc16; -} -.outline-lime-600{ - outline-color: #65a30d; -} -.outline-lime-700{ - outline-color: #4d7c0f; -} -.outline-lime-800{ - outline-color: #3f6212; -} -.outline-lime-900{ - outline-color: #365314; -} .outline-green-50{ outline-color: #f8faf6; } @@ -43435,36 +32975,6 @@ input[type="date"]::-webkit-inner-spin-button, .outline-green{ outline-color: #6ea152; } -.outline-emerald-50{ - outline-color: #ecfdf5; -} -.outline-emerald-100{ - outline-color: #d1fae5; -} -.outline-emerald-200{ - outline-color: #a7f3d0; -} -.outline-emerald-300{ - outline-color: #6ee7b7; -} -.outline-emerald-400{ - outline-color: #34d399; -} -.outline-emerald-500{ - outline-color: #10b981; -} -.outline-emerald-600{ - outline-color: #059669; -} -.outline-emerald-700{ - outline-color: #047857; -} -.outline-emerald-800{ - outline-color: #065f46; -} -.outline-emerald-900{ - outline-color: #064e3b; -} .outline-teal-50{ outline-color: #EDFAFA; } @@ -43495,66 +33005,6 @@ input[type="date"]::-webkit-inner-spin-button, .outline-teal-900{ outline-color: #014451; } -.outline-cyan-50{ - outline-color: #ecfeff; -} -.outline-cyan-100{ - outline-color: #cffafe; -} -.outline-cyan-200{ - outline-color: #a5f3fc; -} -.outline-cyan-300{ - outline-color: #67e8f9; -} -.outline-cyan-400{ - outline-color: #22d3ee; -} -.outline-cyan-500{ - outline-color: #06b6d4; -} -.outline-cyan-600{ - outline-color: #0891b2; -} -.outline-cyan-700{ - outline-color: #0e7490; -} -.outline-cyan-800{ - outline-color: #155e75; -} -.outline-cyan-900{ - outline-color: #164e63; -} -.outline-sky-50{ - outline-color: #f0f9ff; -} -.outline-sky-100{ - outline-color: #e0f2fe; -} -.outline-sky-200{ - outline-color: #bae6fd; -} -.outline-sky-300{ - outline-color: #7dd3fc; -} -.outline-sky-400{ - outline-color: #38bdf8; -} -.outline-sky-500{ - outline-color: #0ea5e9; -} -.outline-sky-600{ - outline-color: #0284c7; -} -.outline-sky-700{ - outline-color: #0369a1; -} -.outline-sky-800{ - outline-color: #075985; -} -.outline-sky-900{ - outline-color: #0c4a6e; -} .outline-blue-50{ outline-color: #f2f8fb; } @@ -43618,36 +33068,6 @@ input[type="date"]::-webkit-inner-spin-button, .outline-indigo-900{ outline-color: #362F78; } -.outline-violet-50{ - outline-color: #f5f3ff; -} -.outline-violet-100{ - outline-color: #ede9fe; -} -.outline-violet-200{ - outline-color: #ddd6fe; -} -.outline-violet-300{ - outline-color: #c4b5fd; -} -.outline-violet-400{ - outline-color: #a78bfa; -} -.outline-violet-500{ - outline-color: #8b5cf6; -} -.outline-violet-600{ - outline-color: #7c3aed; -} -.outline-violet-700{ - outline-color: #6d28d9; -} -.outline-violet-800{ - outline-color: #5b21b6; -} -.outline-violet-900{ - outline-color: #4c1d95; -} .outline-purple-50{ outline-color: #f7f7f9; } @@ -43681,36 +33101,6 @@ input[type="date"]::-webkit-inner-spin-button, .outline-purple{ outline-color: #55588b; } -.outline-fuchsia-50{ - outline-color: #fdf4ff; -} -.outline-fuchsia-100{ - outline-color: #fae8ff; -} -.outline-fuchsia-200{ - outline-color: #f5d0fe; -} -.outline-fuchsia-300{ - outline-color: #f0abfc; -} -.outline-fuchsia-400{ - outline-color: #e879f9; -} -.outline-fuchsia-500{ - outline-color: #d946ef; -} -.outline-fuchsia-600{ - outline-color: #c026d3; -} -.outline-fuchsia-700{ - outline-color: #a21caf; -} -.outline-fuchsia-800{ - outline-color: #86198f; -} -.outline-fuchsia-900{ - outline-color: #701a75; -} .outline-pink-50{ outline-color: #FDF2F8; } @@ -43741,6 +33131,24 @@ input[type="date"]::-webkit-inner-spin-button, .outline-pink-900{ outline-color: #751A3D; } +.outline-lilac-100{ + outline-color: #F5F7FA; +} +.outline-lilac-300{ + outline-color: #EDF0FC; +} +.outline-lilac-900{ + outline-color: #DCE2F9; +} +.outline-lilac{ + outline-color: #F8F9FE; +} +.outline-golden-900{ + outline-color: #BFB882; +} +.outline-golden{ + outline-color: #D1C989; +} .outline-rose-50{ outline-color: #fff1f2; } @@ -43774,24 +33182,6 @@ input[type="date"]::-webkit-inner-spin-button, .outline-rose{ outline-color: #f43f5e; } -.outline-lilac-100{ - outline-color: #F5F7FA; -} -.outline-lilac-300{ - outline-color: #EDF0FC; -} -.outline-lilac-900{ - outline-color: #DCE2F9; -} -.outline-lilac{ - outline-color: #F8F9FE; -} -.outline-golden-900{ - outline-color: #BFB882; -} -.outline-golden{ - outline-color: #D1C989; -} .outline-status-success{ outline-color: #F1F6EE; } @@ -43900,15 +33290,13 @@ input[type="date"]::-webkit-inner-spin-button, .ring-inset{ --tw-ring-inset: inset; } -.ring-inherit{ - --tw-ring-color: inherit; -} -.ring-current{ - --tw-ring-color: currentColor; -} .ring-transparent{ --tw-ring-color: transparent; } +.ring-white{ + --tw-ring-opacity: 1; + --tw-ring-color: rgb(255 255 255 / var(--tw-ring-opacity)); +} .ring-black-50{ --tw-ring-opacity: 1; --tw-ring-color: rgb(246 246 246 / var(--tw-ring-opacity)); @@ -43953,50 +33341,6 @@ input[type="date"]::-webkit-inner-spin-button, --tw-ring-opacity: 1; --tw-ring-color: rgb(66 66 66 / var(--tw-ring-opacity)); } -.ring-white{ - --tw-ring-opacity: 1; - --tw-ring-color: rgb(255 255 255 / var(--tw-ring-opacity)); -} -.ring-slate-50{ - --tw-ring-opacity: 1; - --tw-ring-color: rgb(248 250 252 / var(--tw-ring-opacity)); -} -.ring-slate-100{ - --tw-ring-opacity: 1; - --tw-ring-color: rgb(241 245 249 / var(--tw-ring-opacity)); -} -.ring-slate-200{ - --tw-ring-opacity: 1; - --tw-ring-color: rgb(226 232 240 / var(--tw-ring-opacity)); -} -.ring-slate-300{ - --tw-ring-opacity: 1; - --tw-ring-color: rgb(203 213 225 / var(--tw-ring-opacity)); -} -.ring-slate-400{ - --tw-ring-opacity: 1; - --tw-ring-color: rgb(148 163 184 / var(--tw-ring-opacity)); -} -.ring-slate-500{ - --tw-ring-opacity: 1; - --tw-ring-color: rgb(100 116 139 / var(--tw-ring-opacity)); -} -.ring-slate-600{ - --tw-ring-opacity: 1; - --tw-ring-color: rgb(71 85 105 / var(--tw-ring-opacity)); -} -.ring-slate-700{ - --tw-ring-opacity: 1; - --tw-ring-color: rgb(51 65 85 / var(--tw-ring-opacity)); -} -.ring-slate-800{ - --tw-ring-opacity: 1; - --tw-ring-color: rgb(30 41 59 / var(--tw-ring-opacity)); -} -.ring-slate-900{ - --tw-ring-opacity: 1; - --tw-ring-color: rgb(15 23 42 / var(--tw-ring-opacity)); -} .ring-gray-50{ --tw-ring-opacity: 1; --tw-ring-color: rgb(249 250 251 / var(--tw-ring-opacity)); @@ -44037,126 +33381,6 @@ input[type="date"]::-webkit-inner-spin-button, --tw-ring-opacity: 1; --tw-ring-color: rgb(17 24 39 / var(--tw-ring-opacity)); } -.ring-zinc-50{ - --tw-ring-opacity: 1; - --tw-ring-color: rgb(250 250 250 / var(--tw-ring-opacity)); -} -.ring-zinc-100{ - --tw-ring-opacity: 1; - --tw-ring-color: rgb(244 244 245 / var(--tw-ring-opacity)); -} -.ring-zinc-200{ - --tw-ring-opacity: 1; - --tw-ring-color: rgb(228 228 231 / var(--tw-ring-opacity)); -} -.ring-zinc-300{ - --tw-ring-opacity: 1; - --tw-ring-color: rgb(212 212 216 / var(--tw-ring-opacity)); -} -.ring-zinc-400{ - --tw-ring-opacity: 1; - --tw-ring-color: rgb(161 161 170 / var(--tw-ring-opacity)); -} -.ring-zinc-500{ - --tw-ring-opacity: 1; - --tw-ring-color: rgb(113 113 122 / var(--tw-ring-opacity)); -} -.ring-zinc-600{ - --tw-ring-opacity: 1; - --tw-ring-color: rgb(82 82 91 / var(--tw-ring-opacity)); -} -.ring-zinc-700{ - --tw-ring-opacity: 1; - --tw-ring-color: rgb(63 63 70 / var(--tw-ring-opacity)); -} -.ring-zinc-800{ - --tw-ring-opacity: 1; - --tw-ring-color: rgb(39 39 42 / var(--tw-ring-opacity)); -} -.ring-zinc-900{ - --tw-ring-opacity: 1; - --tw-ring-color: rgb(24 24 27 / var(--tw-ring-opacity)); -} -.ring-neutral-50{ - --tw-ring-opacity: 1; - --tw-ring-color: rgb(250 250 250 / var(--tw-ring-opacity)); -} -.ring-neutral-100{ - --tw-ring-opacity: 1; - --tw-ring-color: rgb(245 245 245 / var(--tw-ring-opacity)); -} -.ring-neutral-200{ - --tw-ring-opacity: 1; - --tw-ring-color: rgb(229 229 229 / var(--tw-ring-opacity)); -} -.ring-neutral-300{ - --tw-ring-opacity: 1; - --tw-ring-color: rgb(212 212 212 / var(--tw-ring-opacity)); -} -.ring-neutral-400{ - --tw-ring-opacity: 1; - --tw-ring-color: rgb(163 163 163 / var(--tw-ring-opacity)); -} -.ring-neutral-500{ - --tw-ring-opacity: 1; - --tw-ring-color: rgb(115 115 115 / var(--tw-ring-opacity)); -} -.ring-neutral-600{ - --tw-ring-opacity: 1; - --tw-ring-color: rgb(82 82 82 / var(--tw-ring-opacity)); -} -.ring-neutral-700{ - --tw-ring-opacity: 1; - --tw-ring-color: rgb(64 64 64 / var(--tw-ring-opacity)); -} -.ring-neutral-800{ - --tw-ring-opacity: 1; - --tw-ring-color: rgb(38 38 38 / var(--tw-ring-opacity)); -} -.ring-neutral-900{ - --tw-ring-opacity: 1; - --tw-ring-color: rgb(23 23 23 / var(--tw-ring-opacity)); -} -.ring-stone-50{ - --tw-ring-opacity: 1; - --tw-ring-color: rgb(250 250 249 / var(--tw-ring-opacity)); -} -.ring-stone-100{ - --tw-ring-opacity: 1; - --tw-ring-color: rgb(245 245 244 / var(--tw-ring-opacity)); -} -.ring-stone-200{ - --tw-ring-opacity: 1; - --tw-ring-color: rgb(231 229 228 / var(--tw-ring-opacity)); -} -.ring-stone-300{ - --tw-ring-opacity: 1; - --tw-ring-color: rgb(214 211 209 / var(--tw-ring-opacity)); -} -.ring-stone-400{ - --tw-ring-opacity: 1; - --tw-ring-color: rgb(168 162 158 / var(--tw-ring-opacity)); -} -.ring-stone-500{ - --tw-ring-opacity: 1; - --tw-ring-color: rgb(120 113 108 / var(--tw-ring-opacity)); -} -.ring-stone-600{ - --tw-ring-opacity: 1; - --tw-ring-color: rgb(87 83 78 / var(--tw-ring-opacity)); -} -.ring-stone-700{ - --tw-ring-opacity: 1; - --tw-ring-color: rgb(68 64 60 / var(--tw-ring-opacity)); -} -.ring-stone-800{ - --tw-ring-opacity: 1; - --tw-ring-color: rgb(41 37 36 / var(--tw-ring-opacity)); -} -.ring-stone-900{ - --tw-ring-opacity: 1; - --tw-ring-color: rgb(28 25 23 / var(--tw-ring-opacity)); -} .ring-red-50{ --tw-ring-opacity: 1; --tw-ring-color: rgb(252 242 242 / var(--tw-ring-opacity)); @@ -44245,46 +33469,6 @@ input[type="date"]::-webkit-inner-spin-button, --tw-ring-opacity: 1; --tw-ring-color: rgb(245 158 11 / var(--tw-ring-opacity)); } -.ring-amber-50{ - --tw-ring-opacity: 1; - --tw-ring-color: rgb(255 251 235 / var(--tw-ring-opacity)); -} -.ring-amber-100{ - --tw-ring-opacity: 1; - --tw-ring-color: rgb(254 243 199 / var(--tw-ring-opacity)); -} -.ring-amber-200{ - --tw-ring-opacity: 1; - --tw-ring-color: rgb(253 230 138 / var(--tw-ring-opacity)); -} -.ring-amber-300{ - --tw-ring-opacity: 1; - --tw-ring-color: rgb(252 211 77 / var(--tw-ring-opacity)); -} -.ring-amber-400{ - --tw-ring-opacity: 1; - --tw-ring-color: rgb(251 191 36 / var(--tw-ring-opacity)); -} -.ring-amber-500{ - --tw-ring-opacity: 1; - --tw-ring-color: rgb(245 158 11 / var(--tw-ring-opacity)); -} -.ring-amber-600{ - --tw-ring-opacity: 1; - --tw-ring-color: rgb(217 119 6 / var(--tw-ring-opacity)); -} -.ring-amber-700{ - --tw-ring-opacity: 1; - --tw-ring-color: rgb(180 83 9 / var(--tw-ring-opacity)); -} -.ring-amber-800{ - --tw-ring-opacity: 1; - --tw-ring-color: rgb(146 64 14 / var(--tw-ring-opacity)); -} -.ring-amber-900{ - --tw-ring-opacity: 1; - --tw-ring-color: rgb(120 53 15 / var(--tw-ring-opacity)); -} .ring-yellow-50{ --tw-ring-opacity: 1; --tw-ring-color: rgb(253 253 234 / var(--tw-ring-opacity)); @@ -44325,46 +33509,6 @@ input[type="date"]::-webkit-inner-spin-button, --tw-ring-opacity: 1; --tw-ring-color: rgb(99 49 18 / var(--tw-ring-opacity)); } -.ring-lime-50{ - --tw-ring-opacity: 1; - --tw-ring-color: rgb(247 254 231 / var(--tw-ring-opacity)); -} -.ring-lime-100{ - --tw-ring-opacity: 1; - --tw-ring-color: rgb(236 252 203 / var(--tw-ring-opacity)); -} -.ring-lime-200{ - --tw-ring-opacity: 1; - --tw-ring-color: rgb(217 249 157 / var(--tw-ring-opacity)); -} -.ring-lime-300{ - --tw-ring-opacity: 1; - --tw-ring-color: rgb(190 242 100 / var(--tw-ring-opacity)); -} -.ring-lime-400{ - --tw-ring-opacity: 1; - --tw-ring-color: rgb(163 230 53 / var(--tw-ring-opacity)); -} -.ring-lime-500{ - --tw-ring-opacity: 1; - --tw-ring-color: rgb(132 204 22 / var(--tw-ring-opacity)); -} -.ring-lime-600{ - --tw-ring-opacity: 1; - --tw-ring-color: rgb(101 163 13 / var(--tw-ring-opacity)); -} -.ring-lime-700{ - --tw-ring-opacity: 1; - --tw-ring-color: rgb(77 124 15 / var(--tw-ring-opacity)); -} -.ring-lime-800{ - --tw-ring-opacity: 1; - --tw-ring-color: rgb(63 98 18 / var(--tw-ring-opacity)); -} -.ring-lime-900{ - --tw-ring-opacity: 1; - --tw-ring-color: rgb(54 83 20 / var(--tw-ring-opacity)); -} .ring-green-50{ --tw-ring-opacity: 1; --tw-ring-color: rgb(248 250 246 / var(--tw-ring-opacity)); @@ -44409,46 +33553,6 @@ input[type="date"]::-webkit-inner-spin-button, --tw-ring-opacity: 1; --tw-ring-color: rgb(110 161 82 / var(--tw-ring-opacity)); } -.ring-emerald-50{ - --tw-ring-opacity: 1; - --tw-ring-color: rgb(236 253 245 / var(--tw-ring-opacity)); -} -.ring-emerald-100{ - --tw-ring-opacity: 1; - --tw-ring-color: rgb(209 250 229 / var(--tw-ring-opacity)); -} -.ring-emerald-200{ - --tw-ring-opacity: 1; - --tw-ring-color: rgb(167 243 208 / var(--tw-ring-opacity)); -} -.ring-emerald-300{ - --tw-ring-opacity: 1; - --tw-ring-color: rgb(110 231 183 / var(--tw-ring-opacity)); -} -.ring-emerald-400{ - --tw-ring-opacity: 1; - --tw-ring-color: rgb(52 211 153 / var(--tw-ring-opacity)); -} -.ring-emerald-500{ - --tw-ring-opacity: 1; - --tw-ring-color: rgb(16 185 129 / var(--tw-ring-opacity)); -} -.ring-emerald-600{ - --tw-ring-opacity: 1; - --tw-ring-color: rgb(5 150 105 / var(--tw-ring-opacity)); -} -.ring-emerald-700{ - --tw-ring-opacity: 1; - --tw-ring-color: rgb(4 120 87 / var(--tw-ring-opacity)); -} -.ring-emerald-800{ - --tw-ring-opacity: 1; - --tw-ring-color: rgb(6 95 70 / var(--tw-ring-opacity)); -} -.ring-emerald-900{ - --tw-ring-opacity: 1; - --tw-ring-color: rgb(6 78 59 / var(--tw-ring-opacity)); -} .ring-teal-50{ --tw-ring-opacity: 1; --tw-ring-color: rgb(237 250 250 / var(--tw-ring-opacity)); @@ -44489,86 +33593,6 @@ input[type="date"]::-webkit-inner-spin-button, --tw-ring-opacity: 1; --tw-ring-color: rgb(1 68 81 / var(--tw-ring-opacity)); } -.ring-cyan-50{ - --tw-ring-opacity: 1; - --tw-ring-color: rgb(236 254 255 / var(--tw-ring-opacity)); -} -.ring-cyan-100{ - --tw-ring-opacity: 1; - --tw-ring-color: rgb(207 250 254 / var(--tw-ring-opacity)); -} -.ring-cyan-200{ - --tw-ring-opacity: 1; - --tw-ring-color: rgb(165 243 252 / var(--tw-ring-opacity)); -} -.ring-cyan-300{ - --tw-ring-opacity: 1; - --tw-ring-color: rgb(103 232 249 / var(--tw-ring-opacity)); -} -.ring-cyan-400{ - --tw-ring-opacity: 1; - --tw-ring-color: rgb(34 211 238 / var(--tw-ring-opacity)); -} -.ring-cyan-500{ - --tw-ring-opacity: 1; - --tw-ring-color: rgb(6 182 212 / var(--tw-ring-opacity)); -} -.ring-cyan-600{ - --tw-ring-opacity: 1; - --tw-ring-color: rgb(8 145 178 / var(--tw-ring-opacity)); -} -.ring-cyan-700{ - --tw-ring-opacity: 1; - --tw-ring-color: rgb(14 116 144 / var(--tw-ring-opacity)); -} -.ring-cyan-800{ - --tw-ring-opacity: 1; - --tw-ring-color: rgb(21 94 117 / var(--tw-ring-opacity)); -} -.ring-cyan-900{ - --tw-ring-opacity: 1; - --tw-ring-color: rgb(22 78 99 / var(--tw-ring-opacity)); -} -.ring-sky-50{ - --tw-ring-opacity: 1; - --tw-ring-color: rgb(240 249 255 / var(--tw-ring-opacity)); -} -.ring-sky-100{ - --tw-ring-opacity: 1; - --tw-ring-color: rgb(224 242 254 / var(--tw-ring-opacity)); -} -.ring-sky-200{ - --tw-ring-opacity: 1; - --tw-ring-color: rgb(186 230 253 / var(--tw-ring-opacity)); -} -.ring-sky-300{ - --tw-ring-opacity: 1; - --tw-ring-color: rgb(125 211 252 / var(--tw-ring-opacity)); -} -.ring-sky-400{ - --tw-ring-opacity: 1; - --tw-ring-color: rgb(56 189 248 / var(--tw-ring-opacity)); -} -.ring-sky-500{ - --tw-ring-opacity: 1; - --tw-ring-color: rgb(14 165 233 / var(--tw-ring-opacity)); -} -.ring-sky-600{ - --tw-ring-opacity: 1; - --tw-ring-color: rgb(2 132 199 / var(--tw-ring-opacity)); -} -.ring-sky-700{ - --tw-ring-opacity: 1; - --tw-ring-color: rgb(3 105 161 / var(--tw-ring-opacity)); -} -.ring-sky-800{ - --tw-ring-opacity: 1; - --tw-ring-color: rgb(7 89 133 / var(--tw-ring-opacity)); -} -.ring-sky-900{ - --tw-ring-opacity: 1; - --tw-ring-color: rgb(12 74 110 / var(--tw-ring-opacity)); -} .ring-blue-50{ --tw-ring-opacity: 1; --tw-ring-color: rgb(242 248 251 / var(--tw-ring-opacity)); @@ -44653,46 +33677,6 @@ input[type="date"]::-webkit-inner-spin-button, --tw-ring-opacity: 1; --tw-ring-color: rgb(54 47 120 / var(--tw-ring-opacity)); } -.ring-violet-50{ - --tw-ring-opacity: 1; - --tw-ring-color: rgb(245 243 255 / var(--tw-ring-opacity)); -} -.ring-violet-100{ - --tw-ring-opacity: 1; - --tw-ring-color: rgb(237 233 254 / var(--tw-ring-opacity)); -} -.ring-violet-200{ - --tw-ring-opacity: 1; - --tw-ring-color: rgb(221 214 254 / var(--tw-ring-opacity)); -} -.ring-violet-300{ - --tw-ring-opacity: 1; - --tw-ring-color: rgb(196 181 253 / var(--tw-ring-opacity)); -} -.ring-violet-400{ - --tw-ring-opacity: 1; - --tw-ring-color: rgb(167 139 250 / var(--tw-ring-opacity)); -} -.ring-violet-500{ - --tw-ring-opacity: 1; - --tw-ring-color: rgb(139 92 246 / var(--tw-ring-opacity)); -} -.ring-violet-600{ - --tw-ring-opacity: 1; - --tw-ring-color: rgb(124 58 237 / var(--tw-ring-opacity)); -} -.ring-violet-700{ - --tw-ring-opacity: 1; - --tw-ring-color: rgb(109 40 217 / var(--tw-ring-opacity)); -} -.ring-violet-800{ - --tw-ring-opacity: 1; - --tw-ring-color: rgb(91 33 182 / var(--tw-ring-opacity)); -} -.ring-violet-900{ - --tw-ring-opacity: 1; - --tw-ring-color: rgb(76 29 149 / var(--tw-ring-opacity)); -} .ring-purple-50{ --tw-ring-opacity: 1; --tw-ring-color: rgb(247 247 249 / var(--tw-ring-opacity)); @@ -44737,46 +33721,6 @@ input[type="date"]::-webkit-inner-spin-button, --tw-ring-opacity: 1; --tw-ring-color: rgb(85 88 139 / var(--tw-ring-opacity)); } -.ring-fuchsia-50{ - --tw-ring-opacity: 1; - --tw-ring-color: rgb(253 244 255 / var(--tw-ring-opacity)); -} -.ring-fuchsia-100{ - --tw-ring-opacity: 1; - --tw-ring-color: rgb(250 232 255 / var(--tw-ring-opacity)); -} -.ring-fuchsia-200{ - --tw-ring-opacity: 1; - --tw-ring-color: rgb(245 208 254 / var(--tw-ring-opacity)); -} -.ring-fuchsia-300{ - --tw-ring-opacity: 1; - --tw-ring-color: rgb(240 171 252 / var(--tw-ring-opacity)); -} -.ring-fuchsia-400{ - --tw-ring-opacity: 1; - --tw-ring-color: rgb(232 121 249 / var(--tw-ring-opacity)); -} -.ring-fuchsia-500{ - --tw-ring-opacity: 1; - --tw-ring-color: rgb(217 70 239 / var(--tw-ring-opacity)); -} -.ring-fuchsia-600{ - --tw-ring-opacity: 1; - --tw-ring-color: rgb(192 38 211 / var(--tw-ring-opacity)); -} -.ring-fuchsia-700{ - --tw-ring-opacity: 1; - --tw-ring-color: rgb(162 28 175 / var(--tw-ring-opacity)); -} -.ring-fuchsia-800{ - --tw-ring-opacity: 1; - --tw-ring-color: rgb(134 25 143 / var(--tw-ring-opacity)); -} -.ring-fuchsia-900{ - --tw-ring-opacity: 1; - --tw-ring-color: rgb(112 26 117 / var(--tw-ring-opacity)); -} .ring-pink-50{ --tw-ring-opacity: 1; --tw-ring-color: rgb(253 242 248 / var(--tw-ring-opacity)); @@ -44817,6 +33761,30 @@ input[type="date"]::-webkit-inner-spin-button, --tw-ring-opacity: 1; --tw-ring-color: rgb(117 26 61 / var(--tw-ring-opacity)); } +.ring-lilac-100{ + --tw-ring-opacity: 1; + --tw-ring-color: rgb(245 247 250 / var(--tw-ring-opacity)); +} +.ring-lilac-300{ + --tw-ring-opacity: 1; + --tw-ring-color: rgb(237 240 252 / var(--tw-ring-opacity)); +} +.ring-lilac-900{ + --tw-ring-opacity: 1; + --tw-ring-color: rgb(220 226 249 / var(--tw-ring-opacity)); +} +.ring-lilac{ + --tw-ring-opacity: 1; + --tw-ring-color: rgb(248 249 254 / var(--tw-ring-opacity)); +} +.ring-golden-900{ + --tw-ring-opacity: 1; + --tw-ring-color: rgb(191 184 130 / var(--tw-ring-opacity)); +} +.ring-golden{ + --tw-ring-opacity: 1; + --tw-ring-color: rgb(209 201 137 / var(--tw-ring-opacity)); +} .ring-rose-50{ --tw-ring-opacity: 1; --tw-ring-color: rgb(255 241 242 / var(--tw-ring-opacity)); @@ -44861,30 +33829,6 @@ input[type="date"]::-webkit-inner-spin-button, --tw-ring-opacity: 1; --tw-ring-color: rgb(244 63 94 / var(--tw-ring-opacity)); } -.ring-lilac-100{ - --tw-ring-opacity: 1; - --tw-ring-color: rgb(245 247 250 / var(--tw-ring-opacity)); -} -.ring-lilac-300{ - --tw-ring-opacity: 1; - --tw-ring-color: rgb(237 240 252 / var(--tw-ring-opacity)); -} -.ring-lilac-900{ - --tw-ring-opacity: 1; - --tw-ring-color: rgb(220 226 249 / var(--tw-ring-opacity)); -} -.ring-lilac{ - --tw-ring-opacity: 1; - --tw-ring-color: rgb(248 249 254 / var(--tw-ring-opacity)); -} -.ring-golden-900{ - --tw-ring-opacity: 1; - --tw-ring-color: rgb(191 184 130 / var(--tw-ring-opacity)); -} -.ring-golden{ - --tw-ring-opacity: 1; - --tw-ring-color: rgb(209 201 137 / var(--tw-ring-opacity)); -} .ring-status-success{ --tw-ring-opacity: 1; --tw-ring-color: rgb(241 246 238 / var(--tw-ring-opacity)); @@ -45036,15 +33980,12 @@ input[type="date"]::-webkit-inner-spin-button, .ring-offset-8{ --tw-ring-offset-width: 8px; } -.ring-offset-inherit{ - --tw-ring-offset-color: inherit; -} -.ring-offset-current{ - --tw-ring-offset-color: currentColor; -} .ring-offset-transparent{ --tw-ring-offset-color: transparent; } +.ring-offset-white{ + --tw-ring-offset-color: #ffffff; +} .ring-offset-black-50{ --tw-ring-offset-color: #f6f6f6; } @@ -45078,39 +34019,6 @@ input[type="date"]::-webkit-inner-spin-button, .ring-offset-black{ --tw-ring-offset-color: #424242; } -.ring-offset-white{ - --tw-ring-offset-color: #ffffff; -} -.ring-offset-slate-50{ - --tw-ring-offset-color: #f8fafc; -} -.ring-offset-slate-100{ - --tw-ring-offset-color: #f1f5f9; -} -.ring-offset-slate-200{ - --tw-ring-offset-color: #e2e8f0; -} -.ring-offset-slate-300{ - --tw-ring-offset-color: #cbd5e1; -} -.ring-offset-slate-400{ - --tw-ring-offset-color: #94a3b8; -} -.ring-offset-slate-500{ - --tw-ring-offset-color: #64748b; -} -.ring-offset-slate-600{ - --tw-ring-offset-color: #475569; -} -.ring-offset-slate-700{ - --tw-ring-offset-color: #334155; -} -.ring-offset-slate-800{ - --tw-ring-offset-color: #1e293b; -} -.ring-offset-slate-900{ - --tw-ring-offset-color: #0f172a; -} .ring-offset-gray-50{ --tw-ring-offset-color: #F9FAFB; } @@ -45141,96 +34049,6 @@ input[type="date"]::-webkit-inner-spin-button, .ring-offset-gray-900{ --tw-ring-offset-color: #111827; } -.ring-offset-zinc-50{ - --tw-ring-offset-color: #fafafa; -} -.ring-offset-zinc-100{ - --tw-ring-offset-color: #f4f4f5; -} -.ring-offset-zinc-200{ - --tw-ring-offset-color: #e4e4e7; -} -.ring-offset-zinc-300{ - --tw-ring-offset-color: #d4d4d8; -} -.ring-offset-zinc-400{ - --tw-ring-offset-color: #a1a1aa; -} -.ring-offset-zinc-500{ - --tw-ring-offset-color: #71717a; -} -.ring-offset-zinc-600{ - --tw-ring-offset-color: #52525b; -} -.ring-offset-zinc-700{ - --tw-ring-offset-color: #3f3f46; -} -.ring-offset-zinc-800{ - --tw-ring-offset-color: #27272a; -} -.ring-offset-zinc-900{ - --tw-ring-offset-color: #18181b; -} -.ring-offset-neutral-50{ - --tw-ring-offset-color: #fafafa; -} -.ring-offset-neutral-100{ - --tw-ring-offset-color: #f5f5f5; -} -.ring-offset-neutral-200{ - --tw-ring-offset-color: #e5e5e5; -} -.ring-offset-neutral-300{ - --tw-ring-offset-color: #d4d4d4; -} -.ring-offset-neutral-400{ - --tw-ring-offset-color: #a3a3a3; -} -.ring-offset-neutral-500{ - --tw-ring-offset-color: #737373; -} -.ring-offset-neutral-600{ - --tw-ring-offset-color: #525252; -} -.ring-offset-neutral-700{ - --tw-ring-offset-color: #404040; -} -.ring-offset-neutral-800{ - --tw-ring-offset-color: #262626; -} -.ring-offset-neutral-900{ - --tw-ring-offset-color: #171717; -} -.ring-offset-stone-50{ - --tw-ring-offset-color: #fafaf9; -} -.ring-offset-stone-100{ - --tw-ring-offset-color: #f5f5f4; -} -.ring-offset-stone-200{ - --tw-ring-offset-color: #e7e5e4; -} -.ring-offset-stone-300{ - --tw-ring-offset-color: #d6d3d1; -} -.ring-offset-stone-400{ - --tw-ring-offset-color: #a8a29e; -} -.ring-offset-stone-500{ - --tw-ring-offset-color: #78716c; -} -.ring-offset-stone-600{ - --tw-ring-offset-color: #57534e; -} -.ring-offset-stone-700{ - --tw-ring-offset-color: #44403c; -} -.ring-offset-stone-800{ - --tw-ring-offset-color: #292524; -} -.ring-offset-stone-900{ - --tw-ring-offset-color: #1c1917; -} .ring-offset-red-50{ --tw-ring-offset-color: #fcf2f2; } @@ -45297,36 +34115,6 @@ input[type="date"]::-webkit-inner-spin-button, .ring-offset-orange{ --tw-ring-offset-color: #f59e0b; } -.ring-offset-amber-50{ - --tw-ring-offset-color: #fffbeb; -} -.ring-offset-amber-100{ - --tw-ring-offset-color: #fef3c7; -} -.ring-offset-amber-200{ - --tw-ring-offset-color: #fde68a; -} -.ring-offset-amber-300{ - --tw-ring-offset-color: #fcd34d; -} -.ring-offset-amber-400{ - --tw-ring-offset-color: #fbbf24; -} -.ring-offset-amber-500{ - --tw-ring-offset-color: #f59e0b; -} -.ring-offset-amber-600{ - --tw-ring-offset-color: #d97706; -} -.ring-offset-amber-700{ - --tw-ring-offset-color: #b45309; -} -.ring-offset-amber-800{ - --tw-ring-offset-color: #92400e; -} -.ring-offset-amber-900{ - --tw-ring-offset-color: #78350f; -} .ring-offset-yellow-50{ --tw-ring-offset-color: #FDFDEA; } @@ -45357,36 +34145,6 @@ input[type="date"]::-webkit-inner-spin-button, .ring-offset-yellow-900{ --tw-ring-offset-color: #633112; } -.ring-offset-lime-50{ - --tw-ring-offset-color: #f7fee7; -} -.ring-offset-lime-100{ - --tw-ring-offset-color: #ecfccb; -} -.ring-offset-lime-200{ - --tw-ring-offset-color: #d9f99d; -} -.ring-offset-lime-300{ - --tw-ring-offset-color: #bef264; -} -.ring-offset-lime-400{ - --tw-ring-offset-color: #a3e635; -} -.ring-offset-lime-500{ - --tw-ring-offset-color: #84cc16; -} -.ring-offset-lime-600{ - --tw-ring-offset-color: #65a30d; -} -.ring-offset-lime-700{ - --tw-ring-offset-color: #4d7c0f; -} -.ring-offset-lime-800{ - --tw-ring-offset-color: #3f6212; -} -.ring-offset-lime-900{ - --tw-ring-offset-color: #365314; -} .ring-offset-green-50{ --tw-ring-offset-color: #f8faf6; } @@ -45420,36 +34178,6 @@ input[type="date"]::-webkit-inner-spin-button, .ring-offset-green{ --tw-ring-offset-color: #6ea152; } -.ring-offset-emerald-50{ - --tw-ring-offset-color: #ecfdf5; -} -.ring-offset-emerald-100{ - --tw-ring-offset-color: #d1fae5; -} -.ring-offset-emerald-200{ - --tw-ring-offset-color: #a7f3d0; -} -.ring-offset-emerald-300{ - --tw-ring-offset-color: #6ee7b7; -} -.ring-offset-emerald-400{ - --tw-ring-offset-color: #34d399; -} -.ring-offset-emerald-500{ - --tw-ring-offset-color: #10b981; -} -.ring-offset-emerald-600{ - --tw-ring-offset-color: #059669; -} -.ring-offset-emerald-700{ - --tw-ring-offset-color: #047857; -} -.ring-offset-emerald-800{ - --tw-ring-offset-color: #065f46; -} -.ring-offset-emerald-900{ - --tw-ring-offset-color: #064e3b; -} .ring-offset-teal-50{ --tw-ring-offset-color: #EDFAFA; } @@ -45480,66 +34208,6 @@ input[type="date"]::-webkit-inner-spin-button, .ring-offset-teal-900{ --tw-ring-offset-color: #014451; } -.ring-offset-cyan-50{ - --tw-ring-offset-color: #ecfeff; -} -.ring-offset-cyan-100{ - --tw-ring-offset-color: #cffafe; -} -.ring-offset-cyan-200{ - --tw-ring-offset-color: #a5f3fc; -} -.ring-offset-cyan-300{ - --tw-ring-offset-color: #67e8f9; -} -.ring-offset-cyan-400{ - --tw-ring-offset-color: #22d3ee; -} -.ring-offset-cyan-500{ - --tw-ring-offset-color: #06b6d4; -} -.ring-offset-cyan-600{ - --tw-ring-offset-color: #0891b2; -} -.ring-offset-cyan-700{ - --tw-ring-offset-color: #0e7490; -} -.ring-offset-cyan-800{ - --tw-ring-offset-color: #155e75; -} -.ring-offset-cyan-900{ - --tw-ring-offset-color: #164e63; -} -.ring-offset-sky-50{ - --tw-ring-offset-color: #f0f9ff; -} -.ring-offset-sky-100{ - --tw-ring-offset-color: #e0f2fe; -} -.ring-offset-sky-200{ - --tw-ring-offset-color: #bae6fd; -} -.ring-offset-sky-300{ - --tw-ring-offset-color: #7dd3fc; -} -.ring-offset-sky-400{ - --tw-ring-offset-color: #38bdf8; -} -.ring-offset-sky-500{ - --tw-ring-offset-color: #0ea5e9; -} -.ring-offset-sky-600{ - --tw-ring-offset-color: #0284c7; -} -.ring-offset-sky-700{ - --tw-ring-offset-color: #0369a1; -} -.ring-offset-sky-800{ - --tw-ring-offset-color: #075985; -} -.ring-offset-sky-900{ - --tw-ring-offset-color: #0c4a6e; -} .ring-offset-blue-50{ --tw-ring-offset-color: #f2f8fb; } @@ -45603,36 +34271,6 @@ input[type="date"]::-webkit-inner-spin-button, .ring-offset-indigo-900{ --tw-ring-offset-color: #362F78; } -.ring-offset-violet-50{ - --tw-ring-offset-color: #f5f3ff; -} -.ring-offset-violet-100{ - --tw-ring-offset-color: #ede9fe; -} -.ring-offset-violet-200{ - --tw-ring-offset-color: #ddd6fe; -} -.ring-offset-violet-300{ - --tw-ring-offset-color: #c4b5fd; -} -.ring-offset-violet-400{ - --tw-ring-offset-color: #a78bfa; -} -.ring-offset-violet-500{ - --tw-ring-offset-color: #8b5cf6; -} -.ring-offset-violet-600{ - --tw-ring-offset-color: #7c3aed; -} -.ring-offset-violet-700{ - --tw-ring-offset-color: #6d28d9; -} -.ring-offset-violet-800{ - --tw-ring-offset-color: #5b21b6; -} -.ring-offset-violet-900{ - --tw-ring-offset-color: #4c1d95; -} .ring-offset-purple-50{ --tw-ring-offset-color: #f7f7f9; } @@ -45666,36 +34304,6 @@ input[type="date"]::-webkit-inner-spin-button, .ring-offset-purple{ --tw-ring-offset-color: #55588b; } -.ring-offset-fuchsia-50{ - --tw-ring-offset-color: #fdf4ff; -} -.ring-offset-fuchsia-100{ - --tw-ring-offset-color: #fae8ff; -} -.ring-offset-fuchsia-200{ - --tw-ring-offset-color: #f5d0fe; -} -.ring-offset-fuchsia-300{ - --tw-ring-offset-color: #f0abfc; -} -.ring-offset-fuchsia-400{ - --tw-ring-offset-color: #e879f9; -} -.ring-offset-fuchsia-500{ - --tw-ring-offset-color: #d946ef; -} -.ring-offset-fuchsia-600{ - --tw-ring-offset-color: #c026d3; -} -.ring-offset-fuchsia-700{ - --tw-ring-offset-color: #a21caf; -} -.ring-offset-fuchsia-800{ - --tw-ring-offset-color: #86198f; -} -.ring-offset-fuchsia-900{ - --tw-ring-offset-color: #701a75; -} .ring-offset-pink-50{ --tw-ring-offset-color: #FDF2F8; } @@ -45726,6 +34334,24 @@ input[type="date"]::-webkit-inner-spin-button, .ring-offset-pink-900{ --tw-ring-offset-color: #751A3D; } +.ring-offset-lilac-100{ + --tw-ring-offset-color: #F5F7FA; +} +.ring-offset-lilac-300{ + --tw-ring-offset-color: #EDF0FC; +} +.ring-offset-lilac-900{ + --tw-ring-offset-color: #DCE2F9; +} +.ring-offset-lilac{ + --tw-ring-offset-color: #F8F9FE; +} +.ring-offset-golden-900{ + --tw-ring-offset-color: #BFB882; +} +.ring-offset-golden{ + --tw-ring-offset-color: #D1C989; +} .ring-offset-rose-50{ --tw-ring-offset-color: #fff1f2; } @@ -45759,24 +34385,6 @@ input[type="date"]::-webkit-inner-spin-button, .ring-offset-rose{ --tw-ring-offset-color: #f43f5e; } -.ring-offset-lilac-100{ - --tw-ring-offset-color: #F5F7FA; -} -.ring-offset-lilac-300{ - --tw-ring-offset-color: #EDF0FC; -} -.ring-offset-lilac-900{ - --tw-ring-offset-color: #DCE2F9; -} -.ring-offset-lilac{ - --tw-ring-offset-color: #F8F9FE; -} -.ring-offset-golden-900{ - --tw-ring-offset-color: #BFB882; -} -.ring-offset-golden{ - --tw-ring-offset-color: #D1C989; -} .ring-offset-status-success{ --tw-ring-offset-color: #F1F6EE; } @@ -47698,6 +36306,11 @@ body{ transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); } +.group:hover .group-hover\:border-black{ + --tw-border-opacity: 1; + border-color: rgb(66 66 66 / var(--tw-border-opacity)); +} + .group:hover .group-hover\:bg-gray-900{ --tw-bg-opacity: 1; background-color: rgb(17 24 39 / var(--tw-bg-opacity)); @@ -48433,6 +37046,14 @@ body{ width: 75%; } + .lg\:w-auto{ + width: auto; + } + + .lg\:w-96{ + width: 24rem; + } + .lg\:max-w-7xl{ max-width: 80rem; } diff --git a/public/img/errors/500.png b/public/img/errors/500.png index 9de37ea84..8e0ebd7b5 100644 Binary files a/public/img/errors/500.png and b/public/img/errors/500.png differ diff --git a/resources/assets/js/components/AkauntingDropzoneFileUpload.vue b/resources/assets/js/components/AkauntingDropzoneFileUpload.vue index f6fc3a1fd..24c669ea1 100644 --- a/resources/assets/js/components/AkauntingDropzoneFileUpload.vue +++ b/resources/assets/js/components/AkauntingDropzoneFileUpload.vue @@ -33,7 +33,7 @@
...