diff --git a/app/Abstracts/View/Components/Documents/Show.php b/app/Abstracts/View/Components/Documents/Show.php index 26d642703..672958ec4 100644 --- a/app/Abstracts/View/Components/Documents/Show.php +++ b/app/Abstracts/View/Components/Documents/Show.php @@ -975,7 +975,7 @@ abstract class Show extends Component $backgroundColor = setting($this->getSettingKey($type, 'color'), '#55588b'); - return $backgroundColor; + return $this->convertClasstoHex($backgroundColor); } protected function getTextDocumentTitle($type, $textDocumentTitle) diff --git a/app/Abstracts/View/Components/Documents/Template.php b/app/Abstracts/View/Components/Documents/Template.php index 2934fb50b..317805d01 100644 --- a/app/Abstracts/View/Components/Documents/Template.php +++ b/app/Abstracts/View/Components/Documents/Template.php @@ -276,7 +276,7 @@ abstract class Template extends Component $backgroundColor = setting($this->getSettingKey($type, 'color'), '#55588b'); - return $backgroundColor; + return $this->convertClasstoHex($backgroundColor); } protected function getTextDocumentTitle($type, $textDocumentTitle) diff --git a/app/Abstracts/View/Components/Transactions/Show.php b/app/Abstracts/View/Components/Transactions/Show.php index b6569c2d9..b02f6b0d4 100644 --- a/app/Abstracts/View/Components/Transactions/Show.php +++ b/app/Abstracts/View/Components/Transactions/Show.php @@ -299,6 +299,9 @@ abstract class Show extends Component /** @var bool */ public $hideRecurringMessage; + /** @var bool */ + public $hideCreated; + /** * Create a new component instance. * @@ -327,7 +330,7 @@ abstract class Show extends Component string $routeDocumentShow = '', string $routeTransactionShow = '', string $textButtonAddNew = '', bool $hideSchedule = false, bool $hideChildren = false, bool $hideAttachment = false, $attachment = [], - array $connectTranslations = [], string $textRecurringType = '', bool $hideRecurringMessage = false + array $connectTranslations = [], string $textRecurringType = '', bool $hideRecurringMessage = false, bool $hideCreated = false ) { $this->type = $type; $this->transaction = $transaction; @@ -461,6 +464,7 @@ abstract class Show extends Component $this->textRecurringType = $this->getTextRecurringType($type, $textRecurringType); $this->hideRecurringMessage = $hideRecurringMessage; + $this->hideCreated = $hideCreated; } protected function getTransactionTemplate($type, $transactionTemplate) diff --git a/app/BulkActions/Sales/Invoices.php b/app/BulkActions/Sales/Invoices.php index e70a04b53..168eac93c 100644 --- a/app/BulkActions/Sales/Invoices.php +++ b/app/BulkActions/Sales/Invoices.php @@ -5,7 +5,7 @@ namespace App\BulkActions\Sales; use App\Abstracts\BulkAction; use App\Events\Document\DocumentCancelled; use App\Events\Document\DocumentCreated; -use App\Events\Document\DocumentSent; +use App\Events\Document\DocumentMarkedSent; use App\Events\Document\PaymentReceived; use App\Exports\Sales\Invoices as Export; use App\Jobs\Document\DeleteDocument; @@ -58,7 +58,7 @@ class Invoices extends BulkAction continue; } - event(new DocumentSent($invoice)); + event(new DocumentMarkedSent($invoice)); } } diff --git a/app/Events/Document/DocumentMarkedSent.php b/app/Events/Document/DocumentMarkedSent.php new file mode 100644 index 000000000..c79c1fe3f --- /dev/null +++ b/app/Events/Document/DocumentMarkedSent.php @@ -0,0 +1,20 @@ +document = $document; + } +} diff --git a/app/Http/Controllers/Sales/Invoices.php b/app/Http/Controllers/Sales/Invoices.php index e2521f12a..be3f68250 100644 --- a/app/Http/Controllers/Sales/Invoices.php +++ b/app/Http/Controllers/Sales/Invoices.php @@ -220,7 +220,7 @@ class Invoices extends Controller */ public function markSent(Document $invoice) { - event(new \App\Events\Document\DocumentSent($invoice)); + event(new \App\Events\Document\DocumentMarkedSent($invoice)); $message = trans('documents.messages.marked_sent', ['type' => trans_choice('general.invoices', 1)]); diff --git a/app/Http/Livewire/Menu/Favorites.php b/app/Http/Livewire/Menu/Favorites.php index d6102de27..f4fa918fa 100644 --- a/app/Http/Livewire/Menu/Favorites.php +++ b/app/Http/Livewire/Menu/Favorites.php @@ -27,7 +27,13 @@ class Favorites extends Component foreach ($favorites as $favorite) { $favorite['active'] = false; - $favorite['url'] = $this->getUrl($favorite); + + try { + $favorite['url'] = $this->getUrl($favorite); + } catch (\Exception $e) { + continue; + } + $favorite['id'] = $this->getId($favorite); if ($this->isActive($favorite['url'])) { diff --git a/app/Listeners/Document/MarkDocumentSent.php b/app/Listeners/Document/MarkDocumentSent.php index 266d623fa..70e944756 100644 --- a/app/Listeners/Document/MarkDocumentSent.php +++ b/app/Listeners/Document/MarkDocumentSent.php @@ -2,7 +2,8 @@ namespace App\Listeners\Document; -use App\Events\Document\DocumentSent as Event; +use App\Events\Document\DocumentMarkedSent; +use App\Events\Document\DocumentSent; use App\Jobs\Document\CreateDocumentHistory; use App\Traits\Jobs; @@ -10,13 +11,7 @@ class MarkDocumentSent { use Jobs; - /** - * Handle the event. - * - * @param $event - * @return void - */ - public function handle(Event $event) + public function handle(DocumentMarkedSent|DocumentSent $event): void { if ($event->document->status != 'partial') { $event->document->status = 'sent'; @@ -24,6 +19,11 @@ class MarkDocumentSent $event->document->save(); } + $this->dispatch(new CreateDocumentHistory($event->document, 0, $this->getDescription($event))); + } + + public function getDescription(DocumentMarkedSent|DocumentSent $event): string + { $type_text = ''; if ($alias = config('type.document.' . $event->document->type . '.alias', '')) { @@ -34,12 +34,8 @@ class MarkDocumentSent $type = trans_choice($type_text, 1); - $this->dispatch( - new CreateDocumentHistory( - $event->document, - 0, - trans('documents.messages.marked_sent', ['type' => $type]) - ) - ); + $message = ($event instanceof DocumentMarkedSent) ? 'marked_sent' : 'email_sent'; + + return trans('documents.messages.' . $message, ['type' => $type]); } } diff --git a/app/Models/Banking/Transaction.php b/app/Models/Banking/Transaction.php index 013301fc2..0d97bf0d7 100644 --- a/app/Models/Banking/Transaction.php +++ b/app/Models/Banking/Transaction.php @@ -480,7 +480,7 @@ class Transaction extends Model 'permission' => 'create-banking-transactions', 'attributes' => [ 'id' => 'index-transactions-more-actions-connect-' . $this->id, - '@click' => 'onConnect(\'' . route('transactions.dial', $this->id) . '\')', + '@click' => 'onConnectTransactions(\'' . route('transactions.dial', $this->id) . '\')', ], ]; diff --git a/app/Models/Document/Document.php b/app/Models/Document/Document.php index b50d1acf5..df5587684 100644 --- a/app/Models/Document/Document.php +++ b/app/Models/Document/Document.php @@ -179,24 +179,29 @@ class Document extends Model return $query->whereDate('due_at', '=', $date); } + public function scopeStatus(Builder $query, string $status): Builder + { + return $query->where($this->qualifyColumn('status'), '=', $status); + } + public function scopeAccrued(Builder $query): Builder { - return $query->whereNotIn('status', ['draft', 'cancelled']); + return $query->whereNotIn($this->qualifyColumn('status'), ['draft', 'cancelled']); } public function scopePaid(Builder $query): Builder { - return $query->where('status', '=', 'paid'); + return $query->where($this->qualifyColumn('status'), '=', 'paid'); } public function scopeNotPaid(Builder $query): Builder { - return $query->where('status', '<>', 'paid'); + return $query->where($this->qualifyColumn('status'), '<>', 'paid'); } public function scopeFuture(Builder $query): Builder { - return $query->whereIn('status', $this->getDocumentStatusesForFuture()); + return $query->whereIn($this->qualifyColumn('status'), $this->getDocumentStatusesForFuture()); } public function scopeType(Builder $query, string $type): Builder @@ -244,14 +249,14 @@ class Document extends Model public function getSentAtAttribute(string $value = null) { - $sent = $this->histories()->where('status', 'sent')->first(); + $sent = $this->histories()->where('document_histories.status', 'sent')->first(); return $sent->created_at ?? null; } public function getReceivedAtAttribute(string $value = null) { - $received = $this->histories()->where('status', 'received')->first(); + $received = $this->histories()->where('document_histories.status', 'received')->first(); return $received->created_at ?? null; } diff --git a/app/Providers/Event.php b/app/Providers/Event.php index 198f1c903..832bae905 100644 --- a/app/Providers/Event.php +++ b/app/Providers/Event.php @@ -57,6 +57,9 @@ class Event extends Provider 'App\Listeners\Document\CreateDocumentTransaction', 'App\Listeners\Document\SendDocumentPaymentNotification', ], + 'App\Events\Document\DocumentMarkedSent' => [ + 'App\Listeners\Document\MarkDocumentSent', + ], 'App\Events\Document\DocumentSent' => [ 'App\Listeners\Document\MarkDocumentSent', ], diff --git a/app/Traits/Translations.php b/app/Traits/Translations.php index 3b557d2b1..7efaa59ff 100644 --- a/app/Traits/Translations.php +++ b/app/Traits/Translations.php @@ -3,11 +3,14 @@ namespace App\Traits; use Throwable; +use Illuminate\Support\Arr; trait Translations { public function findTranslation($keys, $number = 2) { + $keys = Arr::wrap($keys); + try { foreach ($keys as $key) { if (is_array($key)) { diff --git a/app/Traits/ViewComponents.php b/app/Traits/ViewComponents.php index 5c0224520..27e440a88 100644 --- a/app/Traits/ViewComponents.php +++ b/app/Traits/ViewComponents.php @@ -752,4 +752,111 @@ trait ViewComponents return ''; } + + protected function convertClasstoHex($class) + { + $colors = [ + 'gray' => '#6b7280', + 'gray-50' => '#f9fafb', + 'gray-100' => '#f3f4f6', + 'gray-200' => '#e5e7eb', + 'gray-300' => '#d1d5db', + 'gray-400' => '#9ca3af', + 'gray-500' => '#6b7280', + 'gray-600' => '#4b5563', + 'gray-700' => '#374151', + 'gray-800' => '#1f2937', + 'gray-900' => '#111827', + + 'red' => '#cc0000', + 'red-50' => '#fcf2f2', + 'red-100' => '#fae6e6', + 'red-200' => '#f2bfbf', + 'red-300' => '#eb9999', + 'red-400' => '#db4d4d', + 'red-500' => '#cc0000', + 'red-600' => '#b80000', + 'red-700' => '#990000', + 'red-800' => '#7a0000', + 'red-900' => '#640000', + + 'yellow' => '#eab308', + 'yellow-50' => '#fefce8', + 'yellow-100' => '#fef9c3', + 'yellow-200' => '#fef08a', + 'yellow-300' => '#fde047', + 'yellow-400' => '#facc15', + 'yellow-500' => '#eab308', + 'yellow-600' => '#ca8a04', + 'yellow-700' => '#a16207', + 'yellow-800' => '#854d0e', + 'yellow-900' => '#713f12', + + 'green' => '#6ea152', + 'green-50' => '#f8faf6', + 'green-100' => '#f1f6ee', + 'green-200' => '#dbe8d4', + 'green-300' => '#c5d9ba', + 'green-400' => '#9abd86', + 'green-500' => '#6ea152', + 'green-600' => '#63914a', + 'green-700' => '#53793e', + 'green-800' => '#426131', + 'green-900' => '#364f28', + + 'blue' => '#006ea6', + 'blue-50' => '#f2f8fb', + 'blue-100' => '#e6f1f6', + 'blue-200' => '#bfdbe9', + 'blue-300' => '#99c5db', + 'blue-400' => '#4d9ac1', + 'blue-500' => '#006ea6', + 'blue-600' => '#006395', + 'blue-700' => '#00537d', + 'blue-800' => '#004264', + 'blue-900' => '#003651', + + 'indigo' => '#6366f1', + 'indigo-50' => '#eef2ff', + 'indigo-100' => '#e0e7ff', + 'indigo-200' => '#c7d2fe', + 'indigo-300' => '#a5b4fc', + 'indigo-400' => '#818cf8', + 'indigo-500' => '#6366f1', + 'indigo-600' => '#4f46e5', + 'indigo-700' => '#4338ca', + 'indigo-800' => '#3730a3', + 'indigo-900' => '#312e81', + + 'purple' => '#55588b', + 'purple-50' => '#f7f7f9', + 'purple-100' => '#eeeef3', + 'purple-200' => '#d5d5e2', + 'purple-300' => '#bbbcd1', + 'purple-400' => '#888aae', + 'purple-500' => '#55588b', + 'purple-600' => '#4d4f7d', + 'purple-700' => '#404268', + 'purple-800' => '#333553', + 'purple-900' => '#2a2b44', + + 'pink' => '#ec4899', + 'pink-50' => '#fdf2f8', + 'pink-100' => '#fce7f3', + 'pink-200' => '#fbcfe8', + 'pink-300' => '#f9a8d4', + 'pink-400' => '#f472b6', + 'pink-500' => '#ec4899', + 'pink-600' => '#db2777', + 'pink-700' => '#be185d', + 'pink-800' => '#9d174d', + 'pink-900' => '#831843', + ]; + + if (Arr::exists($colors, $class)) { + return $colors[$class]; + } + + return $class; + } } diff --git a/app/View/Components/DeleteButton.php b/app/View/Components/DeleteButton.php index 0a7b128c0..1f466d961 100644 --- a/app/View/Components/DeleteButton.php +++ b/app/View/Components/DeleteButton.php @@ -200,7 +200,15 @@ class DeleteButton extends Component $page = ''; if (! empty($this->route)) { - $page = explode('.', $this->route)[0]; + if (! is_array($this->route)) { + $string = $this->route; + } + + if (is_array($this->route)) { + $string = $this->route[0]; + } + + $page = explode('.', $string)[0]; } elseif (! empty($this->url)) { $page = explode('/', $this->url)[1]; } diff --git a/app/View/Components/SearchString.php b/app/View/Components/SearchString.php index c24479f34..ae524cb70 100644 --- a/app/View/Components/SearchString.php +++ b/app/View/Components/SearchString.php @@ -4,11 +4,12 @@ namespace App\View\Components; use App\Abstracts\View\Component; use App\Traits\DateTime; +use App\Traits\Translations; use Illuminate\Support\Str; class SearchString extends Component { - use DateTime; + use DateTime, Translations; public $filters; @@ -203,16 +204,16 @@ class SearchString extends Component $values = [ [ 'key' => 0, - 'value' => empty($options['translation']) ? trans('general.no') : trans($options['translation'][0]), + 'value' => empty($options['translation']) ? trans('general.no') : $this->findTranslation($options['translation'][0], 1), ], [ 'key' => 1, - 'value' => empty($options['translation']) ? trans('general.yes') : trans($options['translation'][1]), + 'value' => empty($options['translation']) ? trans('general.yes') : $this->findTranslation($options['translation'][1], 1), ], ]; } else if (isset($options['values'])) { foreach ($options['values'] as $key => $value) { - $values[$key] = trans($value); + $values[$key] = $this->findTranslation($value, 1); } } else if ($search = request()->get('search', false)) { $fields = explode(' ', $search); diff --git a/config/setting.php b/config/setting.php index e234fa46f..e94112ad7 100644 --- a/config/setting.php +++ b/config/setting.php @@ -119,7 +119,7 @@ return [ 'hide_amount' => env('SETTING_FALLBACK_INVOICE_HIDE_AMOUNT', false), 'payment_terms' => env('SETTING_FALLBACK_INVOICE_PAYMENT_TERMS', '0'), 'template' => env('SETTING_FALLBACK_INVOICE_TEMPLATE', 'default'), - 'color' => env('SETTING_FALLBACK_INVOICE_COLOR', '#55588b'), + 'color' => env('SETTING_FALLBACK_INVOICE_COLOR', 'purple-500'), 'logo_size_width' => env('SETTING_FALLBACK_INVOICE_LOGO_SIZE_WIDTH', 128), 'logo_size_height' => env('SETTING_FALLBACK_INVOICE_LOGO_SIZE_HEIGHT', 128), 'item_search_char_limit' => env('SETTING_FALLBACK_INVOICE_ITEM_SEARCH_CHAR_LIMIT', 3), @@ -138,7 +138,7 @@ return [ 'quantity_name' => env('SETTING_FALLBACK_BILL_QUANTITY_NAME', 'settings.invoice.quantity'), 'payment_terms' => env('SETTING_FALLBACK_BILL_PAYMENT_TERMS', '0'), 'template' => env('SETTING_FALLBACK_BILL_TEMPLATE', 'default'), - 'color' => env('SETTING_FALLBACK_BILL_COLOR', '#55588b'), + 'color' => env('SETTING_FALLBACK_BILL_COLOR', 'purple-500'), 'item_search_char_limit' => env('SETTING_FALLBACK_BILL_ITEM_SEARCH_CHAR_LIMIT', 3), ], 'bill-recurring' => [ diff --git a/public/akaunting-js/generalAction.js b/public/akaunting-js/generalAction.js index deb36a43b..5a35ce460 100644 --- a/public/akaunting-js/generalAction.js +++ b/public/akaunting-js/generalAction.js @@ -277,4 +277,17 @@ function runTooltip(tooltipToggleEl) { tooltipToggleEl.addEventListener(event, hide); }); } -// Tooltip elements using [data-tooltip-target], [data-tooltip-placement] \ No newline at end of file +// Tooltip elements using [data-tooltip-target], [data-tooltip-placement] + +//Auto Height for Textarea +const tx = document.querySelectorAll('[textarea-auto-height]'); +for (let i = 0; i < tx.length; i++) { + tx[i].setAttribute('style', 'height:' + (tx[i].scrollHeight) + 'px;overflow-y:hidden;'); + tx[i].addEventListener('input', OnInput, false); +} + +function OnInput() { + this.style.height = 'auto'; + this.style.height = (this.scrollHeight) + 'px'; +} +//Auto Height for Textarea \ No newline at end of file diff --git a/public/css/app.css b/public/css/app.css index cb0ec6e5e..6c15c44f0 100644 --- a/public/css/app.css +++ b/public/css/app.css @@ -1219,7 +1219,7 @@ input[type=file]::file-selector-button:hover{ [data-tooltip-style^='light'] + .tooltip > .tooltip-arrow:before{ border-style: solid; - border-color: #E5E7EB; + border-color: #e5e7eb; } [data-tooltip-style^='light'] + .tooltip[data-popper-placement^='top'] > .tooltip-arrow:before{ @@ -1588,7 +1588,7 @@ input[type="date"]::-webkit-inner-spin-button, } .overflow-overlay { - overflow: overlay; + overflow-x: overlay; } .py-top { @@ -15203,15 +15203,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)); @@ -15256,50 +15254,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)); @@ -15340,126 +15294,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)); @@ -15548,46 +15382,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)); @@ -15628,46 +15422,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)); @@ -15712,46 +15466,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)); @@ -15792,86 +15506,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)); @@ -15956,46 +15590,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)); @@ -16040,46 +15634,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)); @@ -16120,6 +15674,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)); @@ -16164,30 +15742,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)); @@ -16910,15 +16464,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)); @@ -16963,50 +16515,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)); @@ -17047,126 +16555,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)); @@ -17255,46 +16643,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)); @@ -17335,46 +16683,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)); @@ -17419,46 +16727,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)); @@ -17499,86 +16767,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)); @@ -17663,46 +16851,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)); @@ -17747,46 +16895,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)); @@ -17827,6 +16935,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)); @@ -17871,30 +17003,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)); @@ -17986,18 +17094,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)); @@ -18053,61 +17158,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)); @@ -18158,156 +17208,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)); @@ -18418,56 +17318,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)); @@ -18518,56 +17368,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)); @@ -18623,56 +17423,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)); @@ -18723,106 +17473,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)); @@ -18928,56 +17578,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)); @@ -19033,56 +17633,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)); @@ -19133,6 +17683,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)); @@ -19188,36 +17768,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)); @@ -19332,18 +17882,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)); @@ -19399,61 +17946,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)); @@ -19504,156 +17996,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)); @@ -19764,56 +18106,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)); @@ -19864,56 +18156,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)); @@ -19969,56 +18211,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)); @@ -20069,106 +18261,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)); @@ -20274,56 +18366,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)); @@ -20379,56 +18421,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)); @@ -20479,6 +18471,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)); @@ -20534,36 +18556,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)); @@ -20678,15 +18670,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)); @@ -20731,50 +18721,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)); @@ -20815,126 +18761,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)); @@ -21023,46 +18849,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)); @@ -21103,46 +18889,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)); @@ -21187,46 +18933,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)); @@ -21267,86 +18973,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)); @@ -21431,46 +19057,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)); @@ -21515,46 +19101,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)); @@ -21595,6 +19141,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)); @@ -21639,30 +19209,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)); @@ -21754,15 +19300,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)); @@ -21807,50 +19351,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)); @@ -21891,126 +19391,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)); @@ -22099,46 +19479,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)); @@ -22179,46 +19519,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)); @@ -22263,46 +19563,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)); @@ -22343,86 +19603,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)); @@ -22507,46 +19687,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)); @@ -22591,46 +19731,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)); @@ -22671,6 +19771,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)); @@ -22715,30 +19839,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)); @@ -22830,15 +19930,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)); @@ -22883,50 +19981,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)); @@ -22967,126 +20021,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)); @@ -23175,46 +20109,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)); @@ -23255,46 +20149,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)); @@ -23339,46 +20193,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)); @@ -23419,86 +20233,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)); @@ -23583,46 +20317,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)); @@ -23667,46 +20361,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)); @@ -23747,6 +20401,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)); @@ -23791,30 +20469,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)); @@ -23906,15 +20560,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)); @@ -23959,50 +20611,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)); @@ -24043,126 +20651,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)); @@ -24251,46 +20739,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)); @@ -24331,46 +20779,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)); @@ -24415,46 +20823,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)); @@ -24495,86 +20863,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)); @@ -24659,46 +20947,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)); @@ -24743,46 +20991,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)); @@ -24823,6 +21031,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)); @@ -24867,30 +21099,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)); @@ -25027,15 +21235,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)); @@ -25080,50 +21286,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)); @@ -25164,126 +21326,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)); @@ -25372,46 +21414,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)); @@ -25452,46 +21454,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)); @@ -25536,46 +21498,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)); @@ -25616,86 +21538,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)); @@ -25780,46 +21622,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)); @@ -25864,46 +21666,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)); @@ -25944,6 +21706,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)); @@ -25988,30 +21774,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)); @@ -26183,18 +21945,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)); @@ -26239,50 +21997,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)); @@ -26323,126 +22037,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)); @@ -26531,46 +22125,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)); @@ -26611,46 +22165,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)); @@ -26695,46 +22209,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)); @@ -26775,86 +22249,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)); @@ -26939,46 +22333,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)); @@ -27023,46 +22377,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)); @@ -27103,6 +22417,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)); @@ -27147,30 +22485,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)); @@ -27263,15 +22577,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)); } @@ -27305,39 +22616,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)); } @@ -27368,96 +22646,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)); } @@ -27524,36 +22712,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)); } @@ -27584,36 +22742,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)); } @@ -27647,36 +22775,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)); } @@ -27707,66 +22805,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)); } @@ -27830,36 +22868,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)); } @@ -27893,36 +22901,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)); } @@ -27953,6 +22931,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)); } @@ -27986,24 +22982,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)); } @@ -28073,15 +23051,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; } @@ -28115,39 +23090,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; } @@ -28178,96 +23120,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; } @@ -28334,36 +23186,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; } @@ -28394,36 +23216,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; } @@ -28457,36 +23249,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; } @@ -28517,66 +23279,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; } @@ -28640,36 +23342,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; } @@ -28703,36 +23375,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; } @@ -28763,6 +23405,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; } @@ -28796,24 +23456,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; } @@ -28984,15 +23626,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; } @@ -29026,39 +23665,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; } @@ -29089,96 +23695,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; } @@ -29245,36 +23761,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; } @@ -29305,36 +23791,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; } @@ -29368,36 +23824,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; } @@ -29428,66 +23854,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; } @@ -29551,36 +23917,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; } @@ -29614,36 +23950,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; } @@ -29674,6 +23980,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; } @@ -29707,24 +24031,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; } @@ -29794,15 +24100,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; } @@ -29836,39 +24139,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; } @@ -29899,96 +24169,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; } @@ -30055,36 +24235,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; } @@ -30115,36 +24265,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; } @@ -30178,36 +24298,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; } @@ -30238,66 +24328,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; } @@ -30361,36 +24391,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; } @@ -30424,36 +24424,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; } @@ -30484,6 +24454,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; } @@ -30517,24 +24505,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; } @@ -32200,15 +26170,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)); @@ -32253,50 +26221,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)); @@ -32337,126 +26261,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)); @@ -32545,46 +26349,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)); @@ -32625,46 +26389,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)); @@ -32709,46 +26433,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)); @@ -32789,86 +26473,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)); @@ -32953,46 +26557,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)); @@ -33037,46 +26601,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)); @@ -33117,6 +26641,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)); @@ -33161,30 +26709,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)); @@ -33337,18 +26861,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; @@ -33393,50 +26913,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; @@ -33477,126 +26953,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; @@ -33685,46 +27041,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; @@ -33765,46 +27081,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; @@ -33849,46 +27125,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; @@ -33929,86 +27165,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; @@ -34093,46 +27249,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; @@ -34177,46 +27293,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; @@ -34257,6 +27333,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; @@ -34301,30 +27401,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; @@ -34484,36 +27560,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; } @@ -34529,6 +27575,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)); @@ -34749,226 +27815,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)); @@ -35169,606 +28015,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)); @@ -36209,206 +28455,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)); @@ -36609,206 +28655,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)); @@ -37029,206 +28875,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)); @@ -37429,406 +29075,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)); @@ -38249,206 +29495,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)); @@ -38669,206 +29715,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)); @@ -39069,6 +29915,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)); @@ -39289,126 +30255,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)); @@ -40089,15 +30935,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; } @@ -40131,39 +30974,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; } @@ -40194,96 +31004,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; } @@ -40350,36 +31070,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; } @@ -40410,36 +31100,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; } @@ -40473,36 +31133,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; } @@ -40533,66 +31163,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; } @@ -40656,36 +31226,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; } @@ -40719,36 +31259,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; } @@ -40779,6 +31289,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; } @@ -40812,24 +31340,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; } @@ -40899,15 +31409,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; } @@ -40941,39 +31448,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; } @@ -41004,96 +31478,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; } @@ -41160,36 +31544,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; } @@ -41220,36 +31574,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; } @@ -41283,36 +31607,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; } @@ -41343,66 +31637,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; } @@ -41466,36 +31700,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; } @@ -41529,36 +31733,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; } @@ -41589,6 +31763,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; } @@ -41622,24 +31814,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; } @@ -41907,18 +32081,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); @@ -41963,50 +32133,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); @@ -42047,126 +32173,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); @@ -42255,46 +32261,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); @@ -42335,46 +32301,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); @@ -42419,46 +32345,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); @@ -42499,86 +32385,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); @@ -42663,46 +32469,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); @@ -42747,46 +32513,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); @@ -42827,6 +32553,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); @@ -42871,30 +32621,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); @@ -43039,15 +32765,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; } @@ -43081,39 +32804,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; } @@ -43144,96 +32834,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; } @@ -43300,36 +32900,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; } @@ -43360,36 +32930,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; } @@ -43423,36 +32963,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; } @@ -43483,66 +32993,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; } @@ -43606,36 +33056,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; } @@ -43669,36 +33089,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; } @@ -43729,6 +33119,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; } @@ -43762,24 +33170,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; } @@ -43888,15 +33278,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)); @@ -43941,50 +33329,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)); @@ -44025,126 +33369,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)); @@ -44233,46 +33457,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)); @@ -44313,46 +33497,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)); @@ -44397,46 +33541,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)); @@ -44477,86 +33581,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)); @@ -44641,46 +33665,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)); @@ -44725,46 +33709,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)); @@ -44805,6 +33749,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)); @@ -44849,30 +33817,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)); @@ -45024,15 +33968,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; } @@ -45066,39 +34007,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; } @@ -45129,96 +34037,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; } @@ -45285,36 +34103,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; } @@ -45345,36 +34133,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; } @@ -45408,36 +34166,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; } @@ -45468,66 +34196,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; } @@ -45591,36 +34259,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; } @@ -45654,36 +34292,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; } @@ -45714,6 +34322,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; } @@ -45747,24 +34373,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; } @@ -46935,6 +35543,10 @@ input[type="date"]::-webkit-inner-spin-button, content: "\e6e1"; } +.no-arrow .el-select__caret { + display: none; +} + .el-input .el-icon-circle-close { -webkit-transform: unset !important; transform: unset !important; diff --git a/public/css/print.css b/public/css/print.css index 67d125599..f98bb8dbd 100644 --- a/public/css/print.css +++ b/public/css/print.css @@ -59,12 +59,12 @@ th, td margin-bottom: 8px; } -.mt-1 +.print-template .mt-1 { margin-top: 8px; } -.ml-1 +.print-template .ml-1 { margin-left: 8px; } @@ -74,67 +74,67 @@ th, td padding-left: 18px; } -.mt-0 +.print-template .mt-0 { margin-top: 0 !important; } -.mt-1 +.print-template .mt-1 { margin-top: 8px; } -.mt-2 +.print-template .mt-2 { margin-top: 16px; } -.mt-3 +.print-template .mt-3 { margin-top: 24px; } -.mt-4 +.print-template .mt-4 { margin-top: 32px; } -.mt-5 +.print-template .mt-5 { margin-top: 40px; } -.mt-6 +.print-template .mt-6 { margin-top: 48px; } -.mt-7 +.print-template .mt-7 { margin-top: 56px; } -.mt-8 +.print-template .mt-8 { margin-top: 64px; } -.mt-9 +.print-template .mt-9 { margin-top: 72px; } -.pb-0 +.print-template .pb-0 { padding-bottom: 0; } -.pb-1 +.print-template .pb-1 { padding-bottom: 8px; } -.py-1 +.print-template .py-1 { padding-bottom: 3px; padding-top: 3px; @@ -158,47 +158,47 @@ th, td padding: 0 10px 0 10px; } -.pt-2 +.print-template .pt-2 { padding-top: 16px; } -.pb-2 +.print-template .pb-2 { padding-bottom: 16px; } -.pl-3 +.print-template .pl-3 { padding-left: 24px; } -.pl-4 +.print-template .pl-4 { padding-left: 32px; } -.pl-5 +.print-template .pl-5 { padding-left: 40px; } -.pl-6 +.print-template .pl-6 { padding-left: 48px; } -.pl-7 +.print-template .pl-7 { padding-left: 56px; } -.pl-8 +.print-template .pl-8 { padding-left: 64px; } -.pl-9 +.print-template .pl-9 { padding-left: 72px; } @@ -383,7 +383,7 @@ html[dir='rtl'] .text-alignment-right { .lines { border-collapse: collapse; - table-layout: fixed; + table-layout: auto; border-bottom: 1px solid #adadad; } @@ -564,7 +564,7 @@ html[dir='rtl'] .text-alignment-right { .modern-lines { border-collapse: collapse; - table-layout: fixed; + table-layout: auto; } .modern-lines .item diff --git a/public/img/akaunting-loading.gif b/public/img/akaunting-loading.gif index 3c0fd422a..ecba2f16c 100644 Binary files a/public/img/akaunting-loading.gif and b/public/img/akaunting-loading.gif differ diff --git a/resources/assets/js/components/AkauntingCompanyEdit.vue b/resources/assets/js/components/AkauntingCompanyEdit.vue index 3a2149b6a..21fae8338 100644 --- a/resources/assets/js/components/AkauntingCompanyEdit.vue +++ b/resources/assets/js/components/AkauntingCompanyEdit.vue @@ -222,7 +222,7 @@ export default { let documentClasses = document.body.classList; - documentClasses.remove("overflow-hidden"); + documentClasses.remove('overflow-y-hidden', 'overflow-overlay', '-ml-4'); } }) .catch(error => { @@ -239,7 +239,7 @@ export default { let documentClasses = document.body.classList; - documentClasses.remove("overflow-hidden"); + documentClasses.remove('overflow-y-hidden', 'overflow-overlay', '-ml-4'); }, }, }; diff --git a/resources/assets/js/components/AkauntingContactCard.vue b/resources/assets/js/components/AkauntingContactCard.vue index 4b335816a..212c5dad6 100644 --- a/resources/assets/js/components/AkauntingContactCard.vue +++ b/resources/assets/js/components/AkauntingContactCard.vue @@ -528,7 +528,7 @@ export default { let documentClasses = document.body.classList; - documentClasses.remove("overflow-hidden"); + documentClasses.remove('overflow-y-hidden', 'overflow-overlay', '-ml-4'); } }) .catch(error => { @@ -544,7 +544,7 @@ export default { let documentClasses = document.body.classList; - documentClasses.remove("overflow-hidden"); + documentClasses.remove('overflow-y-hidden', 'overflow-overlay', '-ml-4'); }, closeIfClickedOutside(event) { diff --git a/resources/assets/js/components/AkauntingEditItemColumns.vue b/resources/assets/js/components/AkauntingEditItemColumns.vue index cfd014939..dc0d58b91 100644 --- a/resources/assets/js/components/AkauntingEditItemColumns.vue +++ b/resources/assets/js/components/AkauntingEditItemColumns.vue @@ -165,7 +165,7 @@ export default { let documentClasses = document.body.classList; - documentClasses.remove("overflow-hidden"); + documentClasses.remove('overflow-y-hidden', 'overflow-overlay', '-ml-4'); }, }, }; diff --git a/resources/assets/js/components/AkauntingItemButton.vue b/resources/assets/js/components/AkauntingItemButton.vue index 792d4e99d..c00572fd1 100644 --- a/resources/assets/js/components/AkauntingItemButton.vue +++ b/resources/assets/js/components/AkauntingItemButton.vue @@ -444,7 +444,7 @@ export default { let documentClasses = document.body.classList; - documentClasses.remove("overflow-hidden"); + documentClasses.remove('overflow-y-hidden', 'overflow-overlay', '-ml-4'); } }) .catch(error => { @@ -463,7 +463,7 @@ export default { let documentClasses = document.body.classList; - documentClasses.remove("overflow-hidden"); + documentClasses.remove('overflow-y-hidden', 'overflow-overlay', '-ml-4'); }, closeIfClickedOutside(event) { diff --git a/resources/assets/js/components/AkauntingModal.vue b/resources/assets/js/components/AkauntingModal.vue index 3cbe01bb0..5dc8d4c7c 100644 --- a/resources/assets/js/components/AkauntingModal.vue +++ b/resources/assets/js/components/AkauntingModal.vue @@ -125,7 +125,7 @@ export default { if (this.show) { let documentClasses = document.body.classList; - documentClasses.add("overflow-hidden"); + documentClasses.add('overflow-y-hidden', 'overflow-overlay', '-ml-4'); } if (this.modalDialogClass) { @@ -158,7 +158,7 @@ export default { onCancel() { let documentClasses = document.body.classList; - documentClasses.remove("overflow-hidden"); + documentClasses.remove('overflow-y-hidden', 'overflow-overlay', '-ml-4'); this.$emit("cancel"); } @@ -169,9 +169,9 @@ export default { let documentClasses = document.body.classList; if (val) { - documentClasses.add("overflow-hidden"); + documentClasses.add('overflow-y-hidden', 'overflow-overlay', '-ml-4'); } else { - documentClasses.remove("overflow-hidden"); + documentClasses.remove('overflow-y-hidden', 'overflow-overlay', '-ml-4'); } } } diff --git a/resources/assets/js/components/AkauntingModalAddNew.vue b/resources/assets/js/components/AkauntingModalAddNew.vue index 6da73b8ef..28c42c205 100644 --- a/resources/assets/js/components/AkauntingModalAddNew.vue +++ b/resources/assets/js/components/AkauntingModalAddNew.vue @@ -154,7 +154,7 @@ export default { created: function () { let documentClasses = document.body.classList; - documentClasses.add("overflow-hidden"); + documentClasses.add('overflow-y-hidden', 'overflow-overlay', '-ml-4'); if (this.modalDialogClass) { let modal_size = this.modalDialogClass.replace('modal-', 'max-w-screen-'); @@ -311,7 +311,7 @@ export default { onCancel() { let documentClasses = document.body.classList; - documentClasses.remove("overflow-hidden"); + documentClasses.remove('overflow-y-hidden', 'overflow-overlay', '-ml-4'); this.$emit("cancel"); } @@ -322,9 +322,9 @@ export default { let documentClasses = document.body.classList; if (val) { - documentClasses.add("overflow-hidden"); + documentClasses.add('overflow-y-hidden', 'overflow-overlay', '-ml-4'); } else { - documentClasses.remove("overflow-hidden"); + documentClasses.remove('overflow-y-hidden', 'overflow-overlay', '-ml-4'); } } } diff --git a/resources/assets/js/components/AkauntingSelect.vue b/resources/assets/js/components/AkauntingSelect.vue index 03197720c..daa3b503d 100644 --- a/resources/assets/js/components/AkauntingSelect.vue +++ b/resources/assets/js/components/AkauntingSelect.vue @@ -693,7 +693,7 @@ export default { let documentClasses = document.body.classList; - documentClasses.remove("overflow-hidden"); + documentClasses.remove('overflow-y-hidden', 'overflow-overlay', '-ml-4'); } }) .catch(error => { @@ -712,7 +712,7 @@ export default { let documentClasses = document.body.classList; - documentClasses.remove("overflow-hidden"); + documentClasses.remove('overflow-y-hidden', 'overflow-overlay', '-ml-4'); }, addModal() { diff --git a/resources/assets/js/components/AkauntingSelectRemote.vue b/resources/assets/js/components/AkauntingSelectRemote.vue index 61ba7963a..f738c8ad3 100644 --- a/resources/assets/js/components/AkauntingSelectRemote.vue +++ b/resources/assets/js/components/AkauntingSelectRemote.vue @@ -5,6 +5,7 @@ :class="[ {'readonly': readonly}, {'disabled': disabled}, + {'no-arrow': noArrow}, formClasses ]" :error="formError"> @@ -346,6 +347,12 @@ export default { description: "Selectbox disabled status" }, + noArrow: { + type: Boolean, + default: false, + description: "Selectbox show arrow" + }, + clearable: { type: Boolean, default: true, @@ -908,7 +915,7 @@ export default { let documentClasses = document.body.classList; - documentClasses.remove("overflow-hidden"); + documentClasses.remove('overflow-y-hidden', 'overflow-overlay', '-ml-4'); } }) .catch(error => { @@ -927,7 +934,7 @@ export default { let documentClasses = document.body.classList; - documentClasses.remove("overflow-hidden"); + documentClasses.remove('overflow-y-hidden', 'overflow-overlay', '-ml-4'); }, addModal() { diff --git a/resources/assets/js/components/AkauntingWidget.vue b/resources/assets/js/components/AkauntingWidget.vue index 278e909a4..89e7680bb 100644 --- a/resources/assets/js/components/AkauntingWidget.vue +++ b/resources/assets/js/components/AkauntingWidget.vue @@ -253,7 +253,7 @@ export default { onCancel() { let documentClasses = document.body.classList; - documentClasses.remove("overflow-hidden"); + documentClasses.remove('overflow-y-hidden', 'overflow-overlay', '-ml-4'); this.display = false; this.form.name = ''; @@ -272,9 +272,9 @@ export default { let documentClasses = document.body.classList; if (val) { - documentClasses.add("overflow-hidden"); + documentClasses.add('overflow-y-hidden', 'overflow-overlay', '-ml-4'); } else { - documentClasses.remove("overflow-hidden"); + documentClasses.remove('overflow-y-hidden', 'overflow-overlay', '-ml-4'); } } } diff --git a/resources/assets/js/components/Modal.vue b/resources/assets/js/components/Modal.vue index 25c45f9c9..7face37b8 100644 --- a/resources/assets/js/components/Modal.vue +++ b/resources/assets/js/components/Modal.vue @@ -110,9 +110,9 @@ show(val) { let documentClasses = document.body.classList; if (val) { - documentClasses.add("overflow-hidden"); + documentClasses.add('overflow-y-hidden', 'overflow-overlay', '-ml-4'); } else { - documentClasses.remove("overflow-hidden"); + documentClasses.remove('overflow-y-hidden', 'overflow-overlay', '-ml-4'); } } } diff --git a/resources/assets/js/mixins/global.js b/resources/assets/js/mixins/global.js index 93ddd3eae..6d7a29814 100644 --- a/resources/assets/js/mixins/global.js +++ b/resources/assets/js/mixins/global.js @@ -85,7 +85,12 @@ export default { "thousands_separator":",", }, all_currencies: [], - content_loading: true + content_loading: true, + connect: { + show: false, + currency: {}, + documents: [], + }, } }, @@ -627,7 +632,7 @@ export default { let documentClasses = document.body.classList; - documentClasses.remove("modal-open"); + documentClasses.remove('overflow-y-hidden', 'overflow-overlay', '-ml-4'); }, } }) @@ -656,6 +661,34 @@ export default { copy_badge.classList.remove('flex'); copy_html.classList.remove('hidden'); }, 800); - } + }, + + //connect transactions for account, document or etc. + onConnectTransactions(route) { + let dial_promise = Promise.resolve(window.axios.get(route)); + + dial_promise.then(response => { + this.connect.show = true; + + this.connect.transaction = JSON.parse(response.data.transaction); + + let currency = JSON.parse(response.data.currency); + + this.connect.currency = { + decimal_mark: currency.decimal_mark, + precision: currency.precision, + symbol: currency.symbol, + symbol_first: currency.symbol_first, + thousands_separator: currency.thousands_separator, + }; + + this.connect.documents = JSON.parse(response.data.documents); + }) + .catch(error => { + }) + .finally(function () { + // always executed + }); + }, } } diff --git a/resources/assets/js/views/banking/transactions.js b/resources/assets/js/views/banking/transactions.js index 6556f6745..8f5735c3b 100644 --- a/resources/assets/js/views/banking/transactions.js +++ b/resources/assets/js/views/banking/transactions.js @@ -29,42 +29,10 @@ const app = new Vue({ return { form: new Form('transaction'), bulk_action: new BulkAction('transactions'), - connect: { - show: false, - currency: {}, - documents: [], - }, } }, methods: { - onConnect(route) { - let dial_promise = Promise.resolve(window.axios.get(route)); - - dial_promise.then(response => { - this.connect.show = true; - - this.connect.transaction = JSON.parse(response.data.transaction); - - let currency = JSON.parse(response.data.currency); - - this.connect.currency = { - decimal_mark: currency.decimal_mark, - precision: currency.precision, - symbol: currency.symbol, - symbol_first: currency.symbol_first, - thousands_separator: currency.thousands_separator, - }; - - this.connect.documents = JSON.parse(response.data.documents); - }) - .catch(error => { - }) - .finally(function () { - // always executed - }); - }, - async onEmail(route) { let email = { modal: false, @@ -110,7 +78,7 @@ const app = new Vue({ let documentClasses = document.body.classList; - documentClasses.remove("modal-open"); + documentClasses.remove('overflow-y-hidden', 'overflow-overlay', '-ml-4'); }, } }) diff --git a/resources/assets/js/views/common/documents.js b/resources/assets/js/views/common/documents.js index 8ef1226d6..4c16b4348 100644 --- a/resources/assets/js/views/common/documents.js +++ b/resources/assets/js/views/common/documents.js @@ -68,7 +68,13 @@ const app = new Vue({ dynamic_taxes: [], show_discount: false, show_discount_text: true, - delete_discount: false + delete_discount: false, + regex_condition: [ + '..', + '.,', + ',.', + ',,' + ], } }, @@ -488,11 +494,14 @@ const app = new Vue({ onChangeDiscountType(type) { this.form.discount_type = type; + + this.onAddTotalDiscount(); this.onCalculateTotal(); }, onChangeLineDiscountType(item_index, type) { this.items[item_index].discount_type = type; + this.onCalculateTotal(); }, @@ -669,7 +678,7 @@ const app = new Vue({ let documentClasses = document.body.classList; - documentClasses.remove("modal-open"); + documentClasses.remove('overflow-y-hidden', 'overflow-overlay', '-ml-4'); }, } }) @@ -787,7 +796,7 @@ const app = new Vue({ let documentClasses = document.body.classList; - documentClasses.remove("modal-open"); + documentClasses.remove('overflow-y-hidden', 'overflow-overlay', '-ml-4'); }, } }) @@ -844,7 +853,7 @@ const app = new Vue({ let documentClasses = document.body.classList; - documentClasses.remove("modal-open"); + documentClasses.remove('overflow-y-hidden', 'overflow-overlay', '-ml-4'); }, } }) @@ -1062,5 +1071,27 @@ const app = new Vue({ } this.page_loaded = true; - } + }, + + watch: { + 'form.discount': function (newVal, oldVal) { + if (newVal != '' && newVal.search('^(?=.*?[0-9])[0-9.,]+$') !== 0) { + this.form.discount = oldVal; + this.form.discount = this.form.discount.replace(',', '.'); + + return; + } + + for (let item of this.regex_condition) { + if (this.form.discount.includes(item)) { + const removeLastChar = newVal.length - 1; + const inputShown = newVal.slice(0, removeLastChar); + + this.form.discount = inputShown; + } + } + + this.form.discount = this.form.discount.replace(',', '.'); + }, + }, }); diff --git a/resources/assets/js/views/modules/apps.js b/resources/assets/js/views/modules/apps.js index 8078dad7b..12ff89136 100644 --- a/resources/assets/js/views/modules/apps.js +++ b/resources/assets/js/views/modules/apps.js @@ -82,12 +82,15 @@ const app = new Vue({ html: '' }, + addToCartLoading: false, loadMoreLoading: false, } }, methods: { addToCart(alias, subscription_type) { + this.addToCartLoading = true; + let add_to_cart_promise = Promise.resolve(axios.get(url + '/apps/' + alias + '/' + subscription_type +'/add')); add_to_cart_promise.then(response => { @@ -95,25 +98,15 @@ const app = new Vue({ this.$notify({ message: response.data.message, timeout: 0, - icon: "fas fa-bell", + icon: "shopping_cart_checkout", type: 'success' }); } - if (response.data.error) { - this.installation.status = 'exception'; - this.installation.html = '
' + response.data.message + '
'; - } - - // Set steps - if (response.data.data) { - this.installation.steps = response.data.data; - this.installation.steps_total = this.installation.steps.length; - - this.next(); - } + this.addToCartLoading = false; }) .catch(error => { + this.addToCartLoading = false; }); }, diff --git a/resources/assets/sass/app.css b/resources/assets/sass/app.css index 0b13f324f..610fd9e42 100644 --- a/resources/assets/sass/app.css +++ b/resources/assets/sass/app.css @@ -185,7 +185,7 @@ } .overflow-overlay { - overflow: overlay; + overflow-x: overlay; } .py-top { @@ -357,6 +357,10 @@ content: "\e6e1"; } +.no-arrow .el-select__caret { + display: none; +} + .el-input .el-icon-circle-close { transform: unset !important; transition: unset !important; diff --git a/resources/lang/bs-BA/documents.php b/resources/lang/bs-BA/documents.php index f775c0028..592339b70 100644 --- a/resources/lang/bs-BA/documents.php +++ b/resources/lang/bs-BA/documents.php @@ -2,84 +2,80 @@ return [ - 'edit_columns' => 'Izmjena kolona', - 'empty_items' => 'Niste dodali nijednu stavku.', + 'edit_columns' => 'Izmjena kolona', + 'empty_items' => 'Niste dodali nijednu stavku.', + 'grand_total' => 'TOTAL', + 'accept_payment_online' => 'Prihvatite plaćanja na mreži', + 'transaction' => 'Plaćanje za :iznos je izvršeno pomoću :računa.', + 'billing' => 'Naplata', + 'advanced' => 'Napredno', - 'invoice_detail' => [ - 'marked' => ' Vi označili ste ovu fakturu kao', - 'services' => 'Usluge', - 'another_item' => 'Druga stavka', - 'another_description' => 'i drugi opis', - 'more_item' => '+:count više stavki', + 'invoice_detail' => [ + 'marked' => ' Vi označili ste ovu fakturu kao', + 'services' => 'Usluge', + 'another_item' => 'Druga stavka', + 'another_description' => 'i drugi opis', + 'more_item' => '+:count više stavki', ], - 'grand_total' => 'TOTAL', - - 'accept_payment_online' => 'Prihvatite plaćanja na mreži', - - 'transaction' => 'Plaćanje za :iznos je izvršeno pomoću :računa.', - - 'billing' => 'Naplata', - 'advanced' => 'Napredno', - 'statuses' => [ - 'draft' => 'U pripremi', - 'sent' => 'Poslano', - 'expired' => 'Isteklo', - 'viewed' => 'Pregledano', - 'approved' => 'Odobreno', - 'received' => 'Primjeno', - 'refused' => 'Odbijeno', - 'restored' => 'Vraćeno', - 'reversed' => 'Obrnuto', - 'partial' => 'Djelomično', - 'paid' => 'Plaćeno', - 'pending' => 'Na čekanju', - 'invoiced' => 'Fakturisano', - 'overdue' => 'Kasni uplata', - 'unpaid' => 'Neplaćeno', - 'cancelled' => 'Otkazano', - 'voided' => 'Poništeno', - 'completed' => 'Završenoi', - 'shipped' => 'Dostavljeno', - 'refunded' => 'Izvršiti povrat novca', - 'failed' => 'Neuspješno', - 'denied' => 'Odbijenos', - 'processed' => 'U obradi', - 'open' => 'Otvoreno', - 'closed' => 'Zatvoreno', - 'billed' => 'Naplaćeno', - 'delivered' => 'Dostavljeno', - 'returned' => 'Vraćeno', - 'drawn' => 'Izvučeno', - 'not_billed' => 'Nije naplaćeno', - 'issued' => 'Izdato', - 'not_invoiced' => 'Nije fakturisano', - 'confirmed' => 'Potvrđeno', - 'not_confirmed' => 'Nije potvrđeno', - 'active' => 'Aktivan', - 'ended' => 'Završeno', + 'draft' => 'U pripremi', + 'sent' => 'Poslano', + 'expired' => 'Isteklo', + 'viewed' => 'Pregledano', + 'approved' => 'Odobreno', + 'received' => 'Primjeno', + 'refused' => 'Odbijeno', + 'restored' => 'Vraćeno', + 'reversed' => 'Obrnuto', + 'partial' => 'Djelomično', + 'paid' => 'Plaćeno', + 'pending' => 'Na čekanju', + 'invoiced' => 'Fakturisano', + 'overdue' => 'Kasni uplata', + 'unpaid' => 'Neplaćeno', + 'cancelled' => 'Otkazano', + 'voided' => 'Poništeno', + 'completed' => 'Završenoi', + 'shipped' => 'Dostavljeno', + 'refunded' => 'Izvršiti povrat novca', + 'failed' => 'Neuspješno', + 'denied' => 'Odbijenos', + 'processed' => 'U obradi', + 'open' => 'Otvoreno', + 'closed' => 'Zatvoreno', + 'billed' => 'Naplaćeno', + 'delivered' => 'Dostavljeno', + 'returned' => 'Vraćeno', + 'drawn' => 'Izvučeno', + 'not_billed' => 'Nije naplaćeno', + 'issued' => 'Izdato', + 'not_invoiced' => 'Nije fakturisano', + 'confirmed' => 'Potvrđeno', + 'not_confirmed' => 'Nije potvrđeno', + 'active' => 'Aktivan', + 'ended' => 'Završeno', ], 'form_description' => [ - 'companies' => 'Promijenite adresu, logo i druge informacije za svoju kompaniju.', - 'billing' => 'Detalji naplate se pojavljuju u vašem dokumentu.', - 'advanced' => 'Odaberite kategoriju, dodajte ili uredite podnožje i dodajte priloge svom :type.', - 'attachment' => 'Preuzmite datoteke priložene ovom :type', + 'companies' => 'Promijenite adresu, logo i druge informacije za svoju kompaniju.', + 'billing' => 'Detalji naplate se pojavljuju u vašem dokumentu.', + 'advanced' => 'Odaberite kategoriju, dodajte ili uredite podnožje i dodajte priloge svom :type.', + 'attachment' => 'Preuzmite datoteke priložene ovom :type', ], 'messages' => [ - 'email_sent' => ':type email je poslan!', - 'marked_as' => ':type prebačen je u :status!', - 'marked_sent' => ':type označen je kao poslan!', - 'marked_paid' => ':type označen je kao plaćen!', - 'marked_viewed' => ':type označen je kao pregledan!', - 'marked_cancelled' => ':type označen je kao otkazan!', - 'marked_received' => ':type označen je kao primljen!', + 'email_sent' => ':type email je poslan!', + 'marked_as' => ':type prebačen je u :status!', + 'marked_sent' => ':type označen je kao poslan!', + 'marked_paid' => ':type označen je kao plaćen!', + 'marked_viewed' => ':type označen je kao pregledan!', + 'marked_cancelled' => ':type označen je kao otkazan!', + 'marked_received' => ':type označen je kao primljen!', ], 'recurring' => [ - 'auto_generated' => 'Auto-generisani', + 'auto_generated' => 'Auto-generisani', 'tooltip' => [ 'document_date' => 'Datum :type će biti automatski dodijeljen na osnovu :type rasporeda i učestalosti.', diff --git a/resources/lang/bs-BA/general.php b/resources/lang/bs-BA/general.php index 8aab98f34..4f72316ec 100644 --- a/resources/lang/bs-BA/general.php +++ b/resources/lang/bs-BA/general.php @@ -4,7 +4,6 @@ return [ 'dashboards' => 'Kontrolna ploča|Kontrolna ploče', 'items' => 'Stavka|Stavke', - 'incomes' => 'Prihod|Prihodi', 'invoices' => 'Faktura|Fakture', 'recurring_invoices' => 'Ponavljajuća faktura|Ponavljajuće fakture', 'customers' => 'Kupac|Kupci', @@ -70,6 +69,7 @@ return [ 'invitations' => 'Pozivnica|Pozivnice', 'attachments' => 'Prilog|Prilozi', 'histories' => 'Istorija|Istorije', + 'your_notifications' => 'Vaše obavještenje|Vaša obavještenja', 'welcome' => 'Dobrodošli', 'banking' => 'Bankarstvo', @@ -184,6 +184,7 @@ return [ 'no_matching_data' => 'Nema podudaranja podataka', 'clear_cache' => 'Očisti cache', 'go_to_dashboard' => 'Idite na nadzornu ploču', + 'create_first_invoice' => 'Kreiraj prvu fakturu', 'is' => 'je', 'isnot' => 'nije', 'recurring_and_more' => 'Ponavlja se i više', @@ -199,7 +200,6 @@ return [ 'email_send_me' => 'Pošalji kopiju meni na email :email', 'connect' => 'Poveži', 'assign' => 'Dodijeliti', - 'your_notifications' => 'Vaše obavještenje|Vaša obavještenja', 'new' => 'Novo', 'new_more' => 'Novo...', 'number' => 'Broj', diff --git a/resources/lang/bs-BA/recurring.php b/resources/lang/bs-BA/recurring.php index e5992d0ab..81d631e6b 100644 --- a/resources/lang/bs-BA/recurring.php +++ b/resources/lang/bs-BA/recurring.php @@ -15,6 +15,27 @@ return [ 'weeks' => 'Sedmice(a)', 'months' => 'Mjesec(i)', 'years' => 'Godine(a)', + 'frequency' => 'Frekvencija', + 'duration' => 'Trajanje', + 'last_issued' => 'Zadnje izdavanje', + 'after' => 'Nakon', + 'on' => 'Uključeno', + 'never' => 'Nikad', + 'ends_after' => 'Ističe nakon :times puta', + 'ends_never' => 'Nikad ne završi', + 'ends_date' => 'Završava :date', + 'next_date' => 'Slijedeći :date ', + 'end' => 'Kraj ponavljanja', + 'child' => ':url je automatski kreiran :date', 'message' => 'Ovo je ponavljajući :type i sljedeći :type će automatski biti generiran :date', + 'message_parent' => 'Ovaj :type je automatski generisan ovdje :link', + + 'frequency_type' => 'Ponovite ovo :type', + 'limit_date' => 'Kreirajte prvo :type', + 'limit_middle' => 'i kraj', + + 'form_description' => [ + 'schedule' => 'Odaberite uslove i vrijeme početka/završetka kako biste osigurali da vaš kupac dobije vaš :type na ispravan dan.', + ], ]; diff --git a/resources/lang/bs-BA/reports.php b/resources/lang/bs-BA/reports.php index 1e33a52c4..97351fd0f 100644 --- a/resources/lang/bs-BA/reports.php +++ b/resources/lang/bs-BA/reports.php @@ -2,27 +2,42 @@ return [ - 'years' => 'Godina|Godine', - 'this_year' => 'Tekuća godina', - 'previous_year' => 'Prethodna godina', - 'this_quarter' => 'Ovaj kvartal', - 'previous_quarter' => 'Prethodni kvartal', - 'last_12_months' => 'Zadnjih 12 mjeseci', - 'profit_loss' => 'Dobit i gubitak', - 'gross_profit' => 'Bruto dobit', - 'net_profit' => 'Neto dobit', - 'total_expenses' => 'Ukupni troškovi', - 'net' => 'Neto', - 'income_expense' => 'Prihod i rashod', - 'income_summary' => 'Sažetak prihoda', - 'expense_summary' => 'Sažetak troškova', - 'income_expense_summary' => 'Prihodi nasuprot troškovima', - 'tax_summary' => 'Sažetak poreza', + 'years' => 'Godina|Godine', + 'preferences' => 'Benefit|Benefiti', + 'this_year' => 'Tekuća godina', + 'previous_year' => 'Prethodna godina', + 'this_quarter' => 'Ovaj kvartal', + 'previous_quarter' => 'Prethodni kvartal', + 'last_12_months' => 'Zadnjih 12 mjeseci', + 'profit_loss' => 'Dobit i gubitak', + 'income_summary' => 'Sažetak prihoda', + 'expense_summary' => 'Sažetak troškova', + 'income_expense_summary' => 'Prihodi nasuprot troškovima', + 'tax_summary' => 'Sažetak poreza', + 'gross_profit' => 'Bruto dobit', + 'net_profit' => 'Neto dobit', + 'total_expenses' => 'Ukupni troškovi', + 'net' => 'Neto', + 'income_expense' => 'Prihod i rashod', + 'pin' => 'Zakačite svoj izvještaj', - 'charts' => [ - 'line' => 'Crta', - 'bar' => 'Graf', - 'pie' => 'Pita', + 'income_expense_description' => 'Opis izvještaja o prihodima i rashodima', + 'accounting_description' => 'Opis za računovodstvene izvještaje', + + 'form_description' => [ + 'general' => 'Ovdje možete unijeti opće informacije izvještaja kao što su naziv, tip, opis itd.', + 'preferences' => 'Podešavanja vam pomažu da prilagodite svoje izvještaje.' ], + 'charts' => [ + 'line' => 'Crta', + 'bar' => 'Graf', + 'pie' => 'Pita', + ], + + 'pin_text' => [ + 'unpin_report' => 'Otkačite svoj izvještaj', + 'pin_report' => 'Zakačite svoj izvještaj', + ] + ]; diff --git a/resources/lang/ca-ES/documents.php b/resources/lang/ca-ES/documents.php index 27d921093..c883393c4 100644 --- a/resources/lang/ca-ES/documents.php +++ b/resources/lang/ca-ES/documents.php @@ -2,84 +2,80 @@ return [ - 'edit_columns' => 'Edita les columnes', - 'empty_items' => 'No has afegit cap element.', + 'edit_columns' => 'Edita les columnes', + 'empty_items' => 'No has afegit cap element.', + 'grand_total' => 'Suma total', + 'accept_payment_online' => 'Accepta pagaments en línia', + 'transaction' => 'S\'ha efectuat un pagament de :amount utilitzant :account', + 'billing' => 'Facturació', + 'advanced' => 'Avançat', - 'invoice_detail' => [ - 'marked' => ' Tu has marcat aquesta factura com', - 'services' => 'Serveis', - 'another_item' => 'Un altre article', - 'another_description' => 'i una altra descripció', - 'more_item' => '+:count més article(s)', + 'invoice_detail' => [ + 'marked' => ' Tu has marcat aquesta factura com', + 'services' => 'Serveis', + 'another_item' => 'Un altre article', + 'another_description' => 'i una altra descripció', + 'more_item' => '+:count més article(s)', ], - 'grand_total' => 'Suma total', - - 'accept_payment_online' => 'Accepta pagaments en línia', - - 'transaction' => 'S\'ha efectuat un pagament de :amount utilitzant :account', - - 'billing' => 'Facturació', - 'advanced' => 'Avançat', - 'statuses' => [ - 'draft' => 'Esborrany', - 'sent' => 'Enviat', - 'expired' => 'Vençut', - 'viewed' => 'Vist', - 'approved' => 'Aprovat', - 'received' => 'Rebut', - 'refused' => 'Refusat', - 'restored' => 'Restablert', - 'reversed' => 'Capgirat', - 'partial' => 'Parcial', - 'paid' => 'Pagat', - 'pending' => 'Pendent', - 'invoiced' => 'Facturat', - 'overdue' => 'Vençut', - 'unpaid' => 'Pendent de pagament', - 'cancelled' => 'Cancel·lat', - 'voided' => 'Invalidat', - 'completed' => 'Completat', - 'shipped' => 'Enviat', - 'refunded' => 'Reemborsat', - 'failed' => 'S\'ha produït un error', - 'denied' => 'Denegat', - 'processed' => 'Processat', - 'open' => 'Obert', - 'closed' => 'Tancat', - 'billed' => 'Facturat', - 'delivered' => 'Enviat', - 'returned' => 'Retornat', - 'drawn' => 'Retirat', - 'not_billed' => 'No cobrat', - 'issued' => 'Emès', - 'not_invoiced' => 'No facturat', - 'confirmed' => 'Confirmat', - 'not_confirmed' => 'No confirmat', - 'active' => 'Actiu', - 'ended' => 'Finalitzat', + 'draft' => 'Esborrany', + 'sent' => 'Enviat', + 'expired' => 'Vençut', + 'viewed' => 'Vist', + 'approved' => 'Aprovat', + 'received' => 'Rebut', + 'refused' => 'Refusat', + 'restored' => 'Restablert', + 'reversed' => 'Capgirat', + 'partial' => 'Parcial', + 'paid' => 'Pagat', + 'pending' => 'Pendent', + 'invoiced' => 'Facturat', + 'overdue' => 'Vençut', + 'unpaid' => 'Pendent de pagament', + 'cancelled' => 'Cancel·lat', + 'voided' => 'Invalidat', + 'completed' => 'Completat', + 'shipped' => 'Enviat', + 'refunded' => 'Reemborsat', + 'failed' => 'S\'ha produït un error', + 'denied' => 'Denegat', + 'processed' => 'Processat', + 'open' => 'Obert', + 'closed' => 'Tancat', + 'billed' => 'Facturat', + 'delivered' => 'Enviat', + 'returned' => 'Retornat', + 'drawn' => 'Retirat', + 'not_billed' => 'No cobrat', + 'issued' => 'Emès', + 'not_invoiced' => 'No facturat', + 'confirmed' => 'Confirmat', + 'not_confirmed' => 'No confirmat', + 'active' => 'Actiu', + 'ended' => 'Finalitzat', ], 'form_description' => [ - 'companies' => 'Canvia l\'adreça, el logotip i altra informació de la teva empresa.', - 'billing' => 'Els detalls de facturació apareixen al teu document.', - 'advanced' => 'Selecciona la categoria, afegeix o edita el peu de pàgina i afegeix adjunts al teu :type.', - 'attachment' => 'Descarrega els arxius enllaçats a aquest :type', + 'companies' => 'Canvia l\'adreça, el logotip i altra informació de la teva empresa.', + 'billing' => 'Els detalls de facturació apareixen al teu document.', + 'advanced' => 'Selecciona la categoria, afegeix o edita el peu de pàgina i afegeix adjunts al teu :type.', + 'attachment' => 'Descarrega els arxius enllaçats a aquest :type', ], 'messages' => [ - 'email_sent' => 'S\'ha enviat :type per correu!', - 'marked_as' => 'S\'ha marcat :type com :status!', - 'marked_sent' => 'S\'ha marcat :type com enviat!', - 'marked_paid' => 'S\'ha marcat :type com enviat!', - 'marked_viewed' => 'S\'ha marcat :type com enviat!', - 'marked_cancelled' => 'S\'ha marcat :type com cancel·lat!', - 'marked_received' => 'S\'ha marcat :type com rebut!', + 'email_sent' => 'S\'ha enviat :type per correu!', + 'marked_as' => 'S\'ha marcat :type com :status!', + 'marked_sent' => 'S\'ha marcat :type com enviat!', + 'marked_paid' => 'S\'ha marcat :type com enviat!', + 'marked_viewed' => 'S\'ha marcat :type com enviat!', + 'marked_cancelled' => 'S\'ha marcat :type com cancel·lat!', + 'marked_received' => 'S\'ha marcat :type com rebut!', ], 'recurring' => [ - 'auto_generated' => 'Auto-generat', + 'auto_generated' => 'Auto-generat', 'tooltip' => [ 'document_date' => 'La data de :type s\'assignarà automàticament en funció de la planificació i frequència de :type.', diff --git a/resources/lang/en-AU/documents.php b/resources/lang/en-AU/documents.php index faee0a7d7..f31fe3a01 100644 --- a/resources/lang/en-AU/documents.php +++ b/resources/lang/en-AU/documents.php @@ -2,84 +2,80 @@ return [ - 'edit_columns' => 'Edit Columns', - 'empty_items' => 'You have not added any items.', + 'edit_columns' => 'Edit Columns', + 'empty_items' => 'You have not added any items.', + 'grand_total' => 'Grand Total', + 'accept_payment_online' => 'Accept Payments Online', + 'transaction' => 'A payment for :amount was made using :account.', + 'billing' => 'Billing', + 'advanced' => 'Advanced', - 'invoice_detail' => [ - 'marked' => ' You marked this invoice as', - 'services' => 'Services', - 'another_item' => 'Another Item', - 'another_description' => 'and another description', - 'more_item' => '+:count more item', + 'invoice_detail' => [ + 'marked' => ' You marked this invoice as', + 'services' => 'Services', + 'another_item' => 'Another Item', + 'another_description' => 'and another description', + 'more_item' => '+:count more item', ], - 'grand_total' => 'Grand Total', - - 'accept_payment_online' => 'Accept Payments Online', - - 'transaction' => 'A payment for :amount was made using :account.', - - 'billing' => 'Billing', - 'advanced' => 'Advanced', - 'statuses' => [ - 'draft' => 'Draft', - 'sent' => 'Sent', - 'expired' => 'Expired', - 'viewed' => 'Viewed', - 'approved' => 'Approved', - 'received' => 'Received', - 'refused' => 'Refused', - 'restored' => 'Restored', - 'reversed' => 'Reversed', - 'partial' => 'Partial', - 'paid' => 'Paid', - 'pending' => 'Pending', - 'invoiced' => 'Invoiced', - 'overdue' => 'Overdue', - 'unpaid' => 'Unpaid', - 'cancelled' => 'Cancelled', - 'voided' => 'Voided', - 'completed' => 'Completed', - 'shipped' => 'Shipped', - 'refunded' => 'Refunded', - 'failed' => 'Failed', - 'denied' => 'Denied', - 'processed' => 'Processed', - 'open' => 'Open', - 'closed' => 'Closed', - 'billed' => 'Billed', - 'delivered' => 'Delivered', - 'returned' => 'Returned', - 'drawn' => 'Drawn', - 'not_billed' => 'Not Billed', - 'issued' => 'Issued', - 'not_invoiced' => 'Not Invoiced', - 'confirmed' => 'Confirmed', - 'not_confirmed' => 'Not Confirmed', - 'active' => 'Active', - 'ended' => 'Ended', + 'draft' => 'Draft', + 'sent' => 'Sent', + 'expired' => 'Expired', + 'viewed' => 'Viewed', + 'approved' => 'Approved', + 'received' => 'Received', + 'refused' => 'Refused', + 'restored' => 'Restored', + 'reversed' => 'Reversed', + 'partial' => 'Partial', + 'paid' => 'Paid', + 'pending' => 'Pending', + 'invoiced' => 'Invoiced', + 'overdue' => 'Overdue', + 'unpaid' => 'Unpaid', + 'cancelled' => 'Cancelled', + 'voided' => 'Voided', + 'completed' => 'Completed', + 'shipped' => 'Shipped', + 'refunded' => 'Refunded', + 'failed' => 'Failed', + 'denied' => 'Denied', + 'processed' => 'Processed', + 'open' => 'Open', + 'closed' => 'Closed', + 'billed' => 'Billed', + 'delivered' => 'Delivered', + 'returned' => 'Returned', + 'drawn' => 'Drawn', + 'not_billed' => 'Not Billed', + 'issued' => 'Issued', + 'not_invoiced' => 'Not Invoiced', + 'confirmed' => 'Confirmed', + 'not_confirmed' => 'Not Confirmed', + 'active' => 'Active', + 'ended' => 'Ended', ], 'form_description' => [ - 'companies' => 'Change the address, logo, and other information for your company.', - 'billing' => 'Billing details appears in your document.', - 'advanced' => 'Select the category, add or edit the footer, and add attachments to your :type.', - 'attachment' => 'Download the files attached to this :type', + 'companies' => 'Change the address, logo, and other information for your company.', + 'billing' => 'Billing details appears in your document.', + 'advanced' => 'Select the category, add or edit the footer, and add attachments to your :type.', + 'attachment' => 'Download the files attached to this :type', ], 'messages' => [ - 'email_sent' => ':type email has been sent!', - 'marked_as' => ':type marked as :status!', - 'marked_sent' => ':type marked as sent!', - 'marked_paid' => ':type marked as paid!', - 'marked_viewed' => ':type marked as viewed!', - 'marked_cancelled' => ':type marked as cancelled!', - 'marked_received' => ':type marked as received!', + 'email_sent' => ':type email has been sent!', + 'marked_as' => ':type marked as :status!', + 'marked_sent' => ':type marked as sent!', + 'marked_paid' => ':type marked as paid!', + 'marked_viewed' => ':type marked as viewed!', + 'marked_cancelled' => ':type marked as cancelled!', + 'marked_received' => ':type marked as received!', ], 'recurring' => [ - 'auto_generated' => 'Auto-generated', + 'auto_generated' => 'Auto-generated', 'tooltip' => [ 'document_date' => 'The :type date will be automatically assigned based on the :type schedule and frequency.', diff --git a/resources/lang/en-AU/general.php b/resources/lang/en-AU/general.php index 4648815f2..c2eb46b8c 100644 --- a/resources/lang/en-AU/general.php +++ b/resources/lang/en-AU/general.php @@ -4,7 +4,6 @@ return [ 'dashboards' => 'Dashboard|Dashboards', 'items' => 'Item|Items', - 'incomes' => 'Income|Incomes', 'invoices' => 'Invoice|Invoices', 'recurring_invoices' => 'Recurring Invoice|Recurring Invoices', 'customers' => 'Customer|Customers', @@ -70,6 +69,7 @@ return [ 'invitations' => 'Invitation|Invitations', 'attachments' => 'Attachment|Attachments', 'histories' => 'History|Histories', + 'your_notifications' => 'Your notification|Your notifications', 'welcome' => 'Welcome', 'banking' => 'Banking', @@ -184,6 +184,7 @@ return [ 'no_matching_data' => 'No matching data', 'clear_cache' => 'Clear Cache', 'go_to_dashboard' => 'Go to dashboard', + 'create_first_invoice' => 'Create your first invoice', 'is' => 'is', 'isnot' => 'is not', 'recurring_and_more' => 'Recurring and more..', @@ -199,7 +200,6 @@ return [ 'email_send_me' => 'Send a copy to myself at :email', 'connect' => 'Connect', 'assign' => 'Assign', - 'your_notifications' => 'Your notification|Your notifications', 'new' => 'New', 'new_more' => 'New ...', 'number' => 'Number', diff --git a/resources/lang/en-GB/countries.php b/resources/lang/en-GB/countries.php index c2d0dd18c..64d62808c 100644 --- a/resources/lang/en-GB/countries.php +++ b/resources/lang/en-GB/countries.php @@ -1,6 +1,7 @@ 'Afghanistan', 'AX' => 'Åland Islands', 'AL' => 'Albania', @@ -119,6 +120,7 @@ return [ 'KZ' => 'Kazakhstan', 'KE' => 'Kenya', 'KI' => 'Kiribati', + 'XK' => 'Kosovo', 'KW' => 'Kuwait', 'KG' => 'Kyrgyzstan', 'LA' => 'Laos', @@ -250,4 +252,5 @@ return [ 'YE' => 'Yemen', 'ZM' => 'Zambia', 'ZW' => 'Zimbabwe', + ]; diff --git a/resources/lang/en-GB/documents.php b/resources/lang/en-GB/documents.php index faee0a7d7..bb4170856 100644 --- a/resources/lang/en-GB/documents.php +++ b/resources/lang/en-GB/documents.php @@ -2,84 +2,80 @@ return [ - 'edit_columns' => 'Edit Columns', - 'empty_items' => 'You have not added any items.', + 'edit_columns' => 'Edit Columns', + 'empty_items' => 'You have not added any items.', + 'grand_total' => 'Grand Total', + 'accept_payment_online' => 'Accept Payments Online', + 'transaction' => 'A payment for :amount was made using :account.', + 'billing' => 'Billing', + 'advanced' => 'Advanced', - 'invoice_detail' => [ - 'marked' => ' You marked this invoice as', - 'services' => 'Services', - 'another_item' => 'Another Item', - 'another_description' => 'and another description', - 'more_item' => '+:count more item', + 'invoice_detail' => [ + 'marked' => 'You marked this invoice as', + 'services' => 'Services', + 'another_item' => 'Another Item', + 'another_description' => 'and another description', + 'more_item' => '+:count more item', ], - 'grand_total' => 'Grand Total', - - 'accept_payment_online' => 'Accept Payments Online', - - 'transaction' => 'A payment for :amount was made using :account.', - - 'billing' => 'Billing', - 'advanced' => 'Advanced', - 'statuses' => [ - 'draft' => 'Draft', - 'sent' => 'Sent', - 'expired' => 'Expired', - 'viewed' => 'Viewed', - 'approved' => 'Approved', - 'received' => 'Received', - 'refused' => 'Refused', - 'restored' => 'Restored', - 'reversed' => 'Reversed', - 'partial' => 'Partial', - 'paid' => 'Paid', - 'pending' => 'Pending', - 'invoiced' => 'Invoiced', - 'overdue' => 'Overdue', - 'unpaid' => 'Unpaid', - 'cancelled' => 'Cancelled', - 'voided' => 'Voided', - 'completed' => 'Completed', - 'shipped' => 'Shipped', - 'refunded' => 'Refunded', - 'failed' => 'Failed', - 'denied' => 'Denied', - 'processed' => 'Processed', - 'open' => 'Open', - 'closed' => 'Closed', - 'billed' => 'Billed', - 'delivered' => 'Delivered', - 'returned' => 'Returned', - 'drawn' => 'Drawn', - 'not_billed' => 'Not Billed', - 'issued' => 'Issued', - 'not_invoiced' => 'Not Invoiced', - 'confirmed' => 'Confirmed', - 'not_confirmed' => 'Not Confirmed', - 'active' => 'Active', - 'ended' => 'Ended', + 'draft' => 'Draft', + 'sent' => 'Sent', + 'expired' => 'Expired', + 'viewed' => 'Viewed', + 'approved' => 'Approved', + 'received' => 'Received', + 'refused' => 'Refused', + 'restored' => 'Restored', + 'reversed' => 'Reversed', + 'partial' => 'Partial', + 'paid' => 'Paid', + 'pending' => 'Pending', + 'invoiced' => 'Invoiced', + 'overdue' => 'Overdue', + 'unpaid' => 'Unpaid', + 'cancelled' => 'Cancelled', + 'voided' => 'Voided', + 'completed' => 'Completed', + 'shipped' => 'Shipped', + 'refunded' => 'Refunded', + 'failed' => 'Failed', + 'denied' => 'Denied', + 'processed' => 'Processed', + 'open' => 'Open', + 'closed' => 'Closed', + 'billed' => 'Billed', + 'delivered' => 'Delivered', + 'returned' => 'Returned', + 'drawn' => 'Drawn', + 'not_billed' => 'Not Billed', + 'issued' => 'Issued', + 'not_invoiced' => 'Not Invoiced', + 'confirmed' => 'Confirmed', + 'not_confirmed' => 'Not Confirmed', + 'active' => 'Active', + 'ended' => 'Ended', ], 'form_description' => [ - 'companies' => 'Change the address, logo, and other information for your company.', - 'billing' => 'Billing details appears in your document.', - 'advanced' => 'Select the category, add or edit the footer, and add attachments to your :type.', - 'attachment' => 'Download the files attached to this :type', + 'companies' => 'Change the address, logo, and other information for your company.', + 'billing' => 'Billing details appears in your document.', + 'advanced' => 'Select the category, add or edit the footer, and add attachments to your :type.', + 'attachment' => 'Download the files attached to this :type', ], 'messages' => [ - 'email_sent' => ':type email has been sent!', - 'marked_as' => ':type marked as :status!', - 'marked_sent' => ':type marked as sent!', - 'marked_paid' => ':type marked as paid!', - 'marked_viewed' => ':type marked as viewed!', - 'marked_cancelled' => ':type marked as cancelled!', - 'marked_received' => ':type marked as received!', + 'email_sent' => ':type email has been sent!', + 'marked_as' => ':type marked as :status!', + 'marked_sent' => ':type marked as sent!', + 'marked_paid' => ':type marked as paid!', + 'marked_viewed' => ':type marked as viewed!', + 'marked_cancelled' => ':type marked as cancelled!', + 'marked_received' => ':type marked as received!', ], 'recurring' => [ - 'auto_generated' => 'Auto-generated', + 'auto_generated' => 'Auto-generated', 'tooltip' => [ 'document_date' => 'The :type date will be automatically assigned based on the :type schedule and frequency.', diff --git a/resources/lang/fr-FR/documents.php b/resources/lang/fr-FR/documents.php index f9fff8a84..386bb118c 100644 --- a/resources/lang/fr-FR/documents.php +++ b/resources/lang/fr-FR/documents.php @@ -2,84 +2,80 @@ return [ - 'edit_columns' => 'Editer les colonnes', - 'empty_items' => 'Vous n\'avez ajouté aucun élément.', + 'edit_columns' => 'Editer les colonnes', + 'empty_items' => 'Vous n\'avez ajouté aucun élément.', + 'grand_total' => 'Total global', + 'accept_payment_online' => 'Accepter les paiements en ligne', + 'transaction' => 'Un paiement de :amount a été effectué en utilisant :account.', + 'billing' => 'Facturation', + 'advanced' => 'Avancé', - 'invoice_detail' => [ - 'marked' => ' Vous avez marqué cette facture comme', - 'services' => 'Services', - 'another_item' => 'Un autre élément', - 'another_description' => 'et une autre description', - 'more_item' => '+:count plus d\'élément', + 'invoice_detail' => [ + 'marked' => ' Vous avez marqué cette facture comme', + 'services' => 'Services', + 'another_item' => 'Un autre élément', + 'another_description' => 'et une autre description', + 'more_item' => '+:count plus d\'élément', ], - 'grand_total' => 'Total global', - - 'accept_payment_online' => 'Accepter les paiements en ligne', - - 'transaction' => 'Un paiement de :amount a été effectué en utilisant :account.', - - 'billing' => 'Facturation', - 'advanced' => 'Avancé', - 'statuses' => [ - 'draft' => 'Brouillon', - 'sent' => 'Envoyé', - 'expired' => 'Expiré', - 'viewed' => 'Vu', - 'approved' => 'Approuvé', - 'received' => 'Reçu', - 'refused' => 'Refusé', - 'restored' => 'Restauré', - 'reversed' => 'Inversé', - 'partial' => 'Partiel', - 'paid' => 'Payé', - 'pending' => 'En attente', - 'invoiced' => 'Facturé', - 'overdue' => 'En retard', - 'unpaid' => 'Impayé', - 'cancelled' => 'Annulé', - 'voided' => 'Annulé', - 'completed' => 'Terminé', - 'shipped' => 'Envoyé', - 'refunded' => 'Remboursé', - 'failed' => 'Echoué', - 'denied' => 'Refusé', - 'processed' => 'Traité', - 'open' => 'Ouvert', - 'closed' => 'Fermé', - 'billed' => 'Facturé', - 'delivered' => 'Livré', - 'returned' => 'Retourné', - 'drawn' => 'Dessiné', - 'not_billed' => 'Non facturé', - 'issued' => 'Résolu', - 'not_invoiced' => 'Non facturé', - 'confirmed' => 'Confirmé', - 'not_confirmed' => 'Non confirmé', - 'active' => 'Actif', - 'ended' => 'Terminé', + 'draft' => 'Brouillon', + 'sent' => 'Envoyé', + 'expired' => 'Expiré', + 'viewed' => 'Vu', + 'approved' => 'Approuvé', + 'received' => 'Reçu', + 'refused' => 'Refusé', + 'restored' => 'Restauré', + 'reversed' => 'Inversé', + 'partial' => 'Partiel', + 'paid' => 'Payé', + 'pending' => 'En attente', + 'invoiced' => 'Facturé', + 'overdue' => 'En retard', + 'unpaid' => 'Impayé', + 'cancelled' => 'Annulé', + 'voided' => 'Annulé', + 'completed' => 'Terminé', + 'shipped' => 'Envoyé', + 'refunded' => 'Remboursé', + 'failed' => 'Echoué', + 'denied' => 'Refusé', + 'processed' => 'Traité', + 'open' => 'Ouvert', + 'closed' => 'Fermé', + 'billed' => 'Facturé', + 'delivered' => 'Livré', + 'returned' => 'Retourné', + 'drawn' => 'Dessiné', + 'not_billed' => 'Non facturé', + 'issued' => 'Résolu', + 'not_invoiced' => 'Non facturé', + 'confirmed' => 'Confirmé', + 'not_confirmed' => 'Non confirmé', + 'active' => 'Actif', + 'ended' => 'Terminé', ], 'form_description' => [ - 'companies' => 'Changez l\'adresse, le logo et d\'autres informations pour votre entreprise.', - 'billing' => 'Les détails de facturation apparaissent dans votre document.', - 'advanced' => 'Sélectionnez la catégorie, ajoutez ou modifiez le pied de page et ajoutez des pièces jointes à votre :type.', - 'attachment' => 'Télécharger les fichiers attachés à ce :type', + 'companies' => 'Changez l\'adresse, le logo et d\'autres informations pour votre entreprise.', + 'billing' => 'Les détails de facturation apparaissent dans votre document.', + 'advanced' => 'Sélectionnez la catégorie, ajoutez ou modifiez le pied de page et ajoutez des pièces jointes à votre :type.', + 'attachment' => 'Télécharger les fichiers attachés à ce :type', ], 'messages' => [ - 'email_sent' => ':type L\'email vous a été envoyé.', - 'marked_as' => ':type marqué comme :status!', - 'marked_sent' => ':type marqué comme envoyé!', - 'marked_paid' => ':type marqué comme payé !', - 'marked_viewed' => ':type marqué comme vu !', - 'marked_cancelled' => ':type marqué comme annulé !', - 'marked_received' => ':type marqué comme reçu!', + 'email_sent' => ':type L\'email vous a été envoyé.', + 'marked_as' => ':type marqué comme :status!', + 'marked_sent' => ':type marqué comme envoyé!', + 'marked_paid' => ':type marqué comme payé !', + 'marked_viewed' => ':type marqué comme vu !', + 'marked_cancelled' => ':type marqué comme annulé !', + 'marked_received' => ':type marqué comme reçu!', ], 'recurring' => [ - 'auto_generated' => 'Généré automatiquement', + 'auto_generated' => 'Généré automatiquement', 'tooltip' => [ 'document_date' => 'La date de :type sera automatiquement assignée en fonction du planning et de la fréquence :type.', diff --git a/resources/lang/fr-FR/general.php b/resources/lang/fr-FR/general.php index ea733b833..85a6224e6 100644 --- a/resources/lang/fr-FR/general.php +++ b/resources/lang/fr-FR/general.php @@ -4,7 +4,6 @@ return [ 'dashboards' => 'Tableau de bord|Tableaux de bord', 'items' => 'Article|Articles', - 'incomes' => 'Revenu|Revenus', 'invoices' => 'Facture|Factures', 'recurring_invoices' => 'Factures récurrentes|Factures récurrentes', 'customers' => 'Client|Clients', @@ -70,6 +69,7 @@ return [ 'invitations' => 'Invitation|Invitations', 'attachments' => 'Pièce jointe|Pièces jointes', 'histories' => 'Historique|Historiques', + 'your_notifications' => 'Votre notification|Vos notifications', 'welcome' => 'Bienvenue', 'banking' => 'Banque', @@ -184,6 +184,7 @@ return [ 'no_matching_data' => 'Aucune donnée correspondante', 'clear_cache' => 'Vider le cache', 'go_to_dashboard' => 'Aller au tableau de bord', + 'create_first_invoice' => 'Créez votre première facture', 'is' => 'est', 'isnot' => 'n\'est pas', 'recurring_and_more' => 'Récurrents et plus..', @@ -199,7 +200,6 @@ return [ 'email_send_me' => 'Envoyez-moi une copie à :email', 'connect' => 'Connecter', 'assign' => 'Attribuer', - 'your_notifications' => 'Votre notification|Vos notifications', 'new' => 'Nouveau', 'new_more' => 'Nouveau...', 'number' => 'Numéro', diff --git a/resources/lang/lv-LV/documents.php b/resources/lang/lv-LV/documents.php index c57b5fb4a..8a2051f2b 100644 --- a/resources/lang/lv-LV/documents.php +++ b/resources/lang/lv-LV/documents.php @@ -2,84 +2,80 @@ return [ - 'edit_columns' => 'Rediģēt kolonnas', - 'empty_items' => 'Jūs neesat pievienojis nevienu vienumu.', + 'edit_columns' => 'Rediģēt kolonnas', + 'empty_items' => 'Jūs neesat pievienojis nevienu vienumu.', + 'grand_total' => 'Kopsumma', + 'accept_payment_online' => 'Pieņemt maksājumus tiešsaistē', + 'transaction' => 'Maksājums par :amount tika veikts, izmantojot :account', + 'billing' => 'Norēķini', + 'advanced' => 'Papildu', - 'invoice_detail' => [ - 'marked' => ' Jūs atzīmējāt šo rēķinu kā', - 'services' => 'Pakalpojumi', - 'another_item' => 'Cits vienums', - 'another_description' => 'un cits apraksts', - 'more_item' => '+:count vairāk preču', + 'invoice_detail' => [ + 'marked' => ' Jūs atzīmējāt šo rēķinu kā', + 'services' => 'Pakalpojumi', + 'another_item' => 'Cits vienums', + 'another_description' => 'un cits apraksts', + 'more_item' => '+:count vairāk preču', ], - 'grand_total' => 'Kopsumma', - - 'accept_payment_online' => 'Pieņemt maksājumus tiešsaistē', - - 'transaction' => 'Maksājums par :amount tika veikts, izmantojot :account', - - 'billing' => 'Norēķini', - 'advanced' => 'Papildu', - 'statuses' => [ - 'draft' => 'Melnraksts', - 'sent' => 'Nosūtīts', - 'expired' => 'Termiņš beidzies', - 'viewed' => 'Skatīts', - 'approved' => 'Apstiprināts', - 'received' => 'Saņemts', - 'refused' => 'Atteikts', - 'restored' => 'Atjaunots', - 'reversed' => 'Reverss', - 'partial' => 'Daļējs', - 'paid' => 'Samaksāts', - 'pending' => 'Gaida', - 'invoiced' => 'Izrakstīts', - 'overdue' => 'Nokavēts', - 'unpaid' => 'Neapmaksāts', - 'cancelled' => 'Atcelts', - 'voided' => 'Anulēts', - 'completed' => 'Pabeigts', - 'shipped' => 'Nosūtīts', - 'refunded' => 'Atmaksāts', - 'failed' => 'Neizdevās', - 'denied' => 'Atteikts', - 'processed' => 'Apstrādāts', - 'open' => 'Atvērums', - 'closed' => 'Slēgts', - 'billed' => 'Izrakstīts', - 'delivered' => 'Piegādāts', - 'returned' => 'Atgriezts', - 'drawn' => 'Uzzīmēts', - 'not_billed' => 'Nav izrakstīts rēķins', - 'issued' => 'Izdots', - 'not_invoiced' => 'Nav iekļauts rēķinā', - 'confirmed' => 'Apstiprināts', - 'not_confirmed' => 'Nav apstiprināts', - 'active' => 'Aktīvs', - 'ended' => 'Beidzies', + 'draft' => 'Melnraksts', + 'sent' => 'Nosūtīts', + 'expired' => 'Termiņš beidzies', + 'viewed' => 'Skatīts', + 'approved' => 'Apstiprināts', + 'received' => 'Saņemts', + 'refused' => 'Atteikts', + 'restored' => 'Atjaunots', + 'reversed' => 'Reverss', + 'partial' => 'Daļējs', + 'paid' => 'Samaksāts', + 'pending' => 'Gaida', + 'invoiced' => 'Izrakstīts', + 'overdue' => 'Nokavēts', + 'unpaid' => 'Neapmaksāts', + 'cancelled' => 'Atcelts', + 'voided' => 'Anulēts', + 'completed' => 'Pabeigts', + 'shipped' => 'Nosūtīts', + 'refunded' => 'Atmaksāts', + 'failed' => 'Neizdevās', + 'denied' => 'Atteikts', + 'processed' => 'Apstrādāts', + 'open' => 'Atvērums', + 'closed' => 'Slēgts', + 'billed' => 'Izrakstīts', + 'delivered' => 'Piegādāts', + 'returned' => 'Atgriezts', + 'drawn' => 'Uzzīmēts', + 'not_billed' => 'Nav izrakstīts rēķins', + 'issued' => 'Izdots', + 'not_invoiced' => 'Nav iekļauts rēķinā', + 'confirmed' => 'Apstiprināts', + 'not_confirmed' => 'Nav apstiprināts', + 'active' => 'Aktīvs', + 'ended' => 'Beidzies', ], 'form_description' => [ - 'companies' => 'Mainiet sava uzņēmuma adresi, logotipu un citu informāciju.', - 'billing' => 'Norēķinu informācija tiek parādīta jūsu dokumentā.', - 'advanced' => 'Atlasiet kategoriju, pievienojiet vai rediģējiet kājeni un pievienojiet pielikumus savam :type.', - 'attachment' => 'Lejupielādējiet šim :type pievienotos failus', + 'companies' => 'Mainiet sava uzņēmuma adresi, logotipu un citu informāciju.', + 'billing' => 'Norēķinu informācija tiek parādīta jūsu dokumentā.', + 'advanced' => 'Atlasiet kategoriju, pievienojiet vai rediģējiet kājeni un pievienojiet pielikumus savam :type.', + 'attachment' => 'Lejupielādējiet šim :type pievienotos failus', ], 'messages' => [ - 'email_sent' => ':veids e-pasts nosūtīts veiksmīgi!', - 'marked_as' => ':veids atzīmēts kā :status!', - 'marked_sent' => ':veids atzīmēts kā nosūtīts!', - 'marked_paid' => ':veids atzīmēts kā samaksāts!', - 'marked_viewed' => ':type atzīmēts kā skatīts!', - 'marked_cancelled' => ':veids atzīmēts kā atcelts!', - 'marked_received' => ':veids atzīmēts kā saņemts!', + 'email_sent' => ':veids e-pasts nosūtīts veiksmīgi!', + 'marked_as' => ':veids atzīmēts kā :status!', + 'marked_sent' => ':veids atzīmēts kā nosūtīts!', + 'marked_paid' => ':veids atzīmēts kā samaksāts!', + 'marked_viewed' => ':type atzīmēts kā skatīts!', + 'marked_cancelled' => ':veids atzīmēts kā atcelts!', + 'marked_received' => ':veids atzīmēts kā saņemts!', ], 'recurring' => [ - 'auto_generated' => 'Automātiski ģenerēts', + 'auto_generated' => 'Automātiski ģenerēts', 'tooltip' => [ 'document_date' => ':type datums tiks automātiski piešķirts, pamatojoties uz :type grafiku un biežumu.', diff --git a/resources/lang/lv-LV/general.php b/resources/lang/lv-LV/general.php index 4085f6182..c155c80bc 100644 --- a/resources/lang/lv-LV/general.php +++ b/resources/lang/lv-LV/general.php @@ -4,7 +4,6 @@ return [ 'dashboards' => 'Informācijas panelis', 'items' => 'Preces|Preces', - 'incomes' => 'Ienākumi|Ienākumi', 'invoices' => 'Rēķini|Rēķini', 'recurring_invoices' => 'Atkārtots rēķins|Atkārtoti rēķini', 'customers' => 'Pircēji|Pircēji', @@ -70,6 +69,7 @@ return [ 'invitations' => 'Ielūgums|Ielūgumi', 'attachments' => 'Pielikums|Pielikumi', 'histories' => 'Vēsture|Vēstures', + 'your_notifications' => 'Jūsu paziņojums|Jūsu paziņojumi', 'welcome' => 'Laipni lūdzam', 'banking' => 'Banka', @@ -184,6 +184,7 @@ return [ 'no_matching_data' => 'Nav sakritību datos', 'clear_cache' => 'Notīrīt kešatmiņu', 'go_to_dashboard' => 'Doties uz galveno paneli', + 'create_first_invoice' => 'Izveidojiet savu pirmo rēķinu', 'is' => 'ir', 'isnot' => 'nav', 'recurring_and_more' => 'Atkārtojas un vairāk..', @@ -199,7 +200,6 @@ return [ 'email_send_me' => 'Nosūtīt kopiju man uz :email', 'connect' => 'Pieslēgties', 'assign' => 'Piešķirt', - 'your_notifications' => 'Jūsu paziņojums|Jūsu paziņojumi', 'new' => 'Jauns', 'new_more' => 'Jauns...', 'number' => 'Numurs', diff --git a/resources/lang/lv-LV/notifications.php b/resources/lang/lv-LV/notifications.php index a79a2e0dd..9327bb734 100644 --- a/resources/lang/lv-LV/notifications.php +++ b/resources/lang/lv-LV/notifications.php @@ -2,9 +2,179 @@ return [ - 'whoops' => 'Whoops!', + 'whoops' => 'Klau!', 'hello' => 'Sveicināts!', - 'salutation' => 'Sveicieniem,
: company_name', - 'subcopy' => 'Ja rodas problēmas, noklikšķinot uz ": tekstu" pogu, nokopējiet šo URL un ielīmējiet to savā web pārlūkprogrammā: [: url](:url)', + 'salutation' => 'Sveicināti,
:uzņēmuma nosaukums', + 'subcopy' => 'Ja rodas problēmas, noklikšķinot uz ": tekstu" pogu, nokopējiet šo URL un ielīmējiet to savā web pārlūkprogrammā: [:url](:url)', + 'mark_read' => 'Atzīmēt kā izlasītu', + 'mark_read_all' => 'Atzīmēt visu kā izlasītu', + 'empty' => 'Oho, nav jaunu paziņojumu!', + 'update' => [ + + 'mail' => [ + + 'title' => '⚠️ Atjaunināšana neizdevās :domain', + 'description' => 'Šāda atjaunināšana no :alias :current_version uz :new_version neizdevās :solis solis ar šādu ziņojumu: :error_message', + + ], + + 'slack' => [ + + 'description' => 'Atjaunināšana neizdevās :domain', + + ], + + ], + + 'import' => [ + + 'completed' => [ + + 'title' => 'Importēšana pabeigta', + 'description' => 'Importēšana ir pabeigta, un ieraksti ir pieejami panelī.', + + ], + + 'failed' => [ + + 'title' => 'Importēšana neizdevās', + 'description' => 'Failu nevar importēt šādu problēmu dēļ:', + + ], + ], + + 'export' => [ + + 'completed' => [ + + 'title' => 'Eksportēšana ir pabeigta', + 'description' => 'Eksportēšanas fails ir gatavs lejupielādei no šīs saites:', + + ], + + 'failed' => [ + + 'title' => 'Eksportēšana neizdevās', + 'description' => 'Nevar izveidot eksportēšanas failu šādas problēmas dēļ:', + + ], + + ], + + 'menu' => [ + + 'export_completed' => [ + + 'title' => 'Eksportēšana ir pabeigta', + 'description' => 'Jūsu :type eksporta fails ir gatavs lejupielādei.', + + ], + + 'export_failed' => [ + + 'title' => 'Eksportēšana neizdevās', + 'description' => 'Nevar izveidot eksporta failu šādas problēmas dēļ: :issues', + + ], + + 'import_completed' => [ + + 'title' => 'Importēšana pabeigta', + 'description' => 'Jūsu :type līnijas :count dati ir veiksmīgi importēti.', + + ], + + 'new_apps' => [ + + 'title' => 'Jauna lietotne', + 'description' => ':name lietotne ir beigusies. Jūs varat nospiežot šeit redzēt detaļas.', + + ], + + 'invoice_new_customer' => [ + + 'title' => 'Jauns rēķins', + 'description' => ':invoice_numberrēķins ir izveidots. Jūs varat noklikšķiniet šeit lai redzētu detalizētu informāciju un turpinātu maksājumu.', + + ], + + 'invoice_remind_customer' => [ + + 'title' => 'Nokavēts rēķins', + 'description' => ':invoice_number rēķins bija jāsamaksā :invoice_due_date. Varat noklikšķināt šeit lai skatītu detalizētu informāciju un turpinātu maksājumu.', + + ], + + 'invoice_remind_admin' => [ + + 'title' => 'Nokavēts rēķins', + 'description' => ':invoice_number rēķins bija jāsamaksā:invoice_due_date. Varat noklikšķināt šeit lai skatītu detalizētu informāciju.', + + ], + + 'invoice_recur_customer' => [ + + 'title' => 'Jauns periodisks rēķins', + 'description' => 'Rēķins :invoice_number tiek izveidots, pamatojoties uz jūsu periodiskumu. Varat noklikšķināt šeit, lai skatītu detalizētu informāciju un turpinātu maksājumu.', + + ], + + 'invoice_recur_admin' => [ + + 'title' => 'Jauns periodisks rēķins', + 'description' => ':invoice_number rēķins tiek izveidots, pamatojoties uz :customer_name periodiskumu. Varat noklikšķināt šeit, lai skatītu detalizētu informāciju.', + + ], + + 'invoice_view_admin' => [ + + 'title' => 'Rēķins skatīts', + 'description' => ':customer_name ir skatījis :invoice_number rēķinu. Varat noklikšķināt šeit, lai skatītu detalizētu informāciju.', + + ], + + 'revenue_new_customer' => [ + + 'title' => 'Saņemts maksājums', + 'description' => 'Paldies par apmaksu rēķinam :invoice_number. Varat noklikšķināt šeit, lai skatītu detalizētu informāciju.', + + ], + + 'invoice_payment_customer' => [ + + 'title' => 'Saņemts maksājums', + 'description' => 'Paldies par apmaksu rēķinam :invoice_number. Varat noklikšķināt šeit, lai skatītu detalizētu informāciju.', + + ], + + 'invoice_payment_admin' => [ + + 'title' => 'Saņemts maksājums', + 'description' => ':customer_name reģistrēts maksājums par rēķinu:invoice_number. Varat noklikšķināt šeit, lai skatītu detalizētu informāciju.', + + ], + + 'bill_remind_admin' => [ + + 'title' => 'Rēķins Nokavēts ', + 'description' => ':bill_number rēķins bija jāsamaksā :bill_demis_date. Varat noklikšķināt šeit, lai skatītu detalizētu informāciju.', + + ], + + 'bill_recur_admin' => [ + + 'title' => 'Jauns periodisks rēķins', + 'description' => 'Rēķins :bill_number tiek izveidots, pamatojoties uz :vendor_name periodiskumu. Varat noklikšķināt šeit, lai skatītu detalizētu informāciju.', + + ], + + ], + + 'messages' => [ + + 'mark_read' => ':veids ir izlasīts šis paziņojums!', + 'mark_read_all' => ':veids ir izlasīti visi paziņojumi!', + + ], ]; diff --git a/resources/lang/lv-LV/settings.php b/resources/lang/lv-LV/settings.php index 0ffba4076..bfb687c92 100644 --- a/resources/lang/lv-LV/settings.php +++ b/resources/lang/lv-LV/settings.php @@ -167,7 +167,7 @@ return [ ], 'scheduling' => [ - 'name' => 'Ieplānotšana', + 'name' => 'Plānošana', 'description' => 'Automātiskie atgādinātāji un komandas atkārtojumu veikšanai', 'search_keywords' => 'automātisks, atgādinājums, atkārtots, cron, komanda', 'send_invoice' => 'Sūtīt rēķinu atgādinājumus', diff --git a/resources/lang/pt-BR/documents.php b/resources/lang/pt-BR/documents.php index 59a5c2e1b..2c4cfce1c 100644 --- a/resources/lang/pt-BR/documents.php +++ b/resources/lang/pt-BR/documents.php @@ -2,84 +2,80 @@ return [ - 'edit_columns' => 'Editar colunas', - 'empty_items' => 'Você não adicionou nenhum item.', + 'edit_columns' => 'Editar colunas', + 'empty_items' => 'Você não adicionou nenhum item.', + 'grand_total' => 'Total Geral', + 'accept_payment_online' => 'Aceite Pagamentos Online', + 'transaction' => 'Um pagamento para :amount foi feito usando :account.', + 'billing' => 'Cobrança', + 'advanced' => 'Avançado', - 'invoice_detail' => [ - 'marked' => ' Você marcou esta fatura como', - 'services' => 'Serviços', - 'another_item' => 'Outro item', - 'another_description' => 'e outra descrição', - 'more_item' => '+:count mais itens', + 'invoice_detail' => [ + 'marked' => ' Você marcou esta fatura como', + 'services' => 'Serviços', + 'another_item' => 'Outro item', + 'another_description' => 'e outra descrição', + 'more_item' => '+:count mais itens', ], - 'grand_total' => 'Total Geral', - - 'accept_payment_online' => 'Aceite Pagamentos Online', - - 'transaction' => 'Um pagamento para :amount foi feito usando :account.', - - 'billing' => 'Cobrança', - 'advanced' => 'Avançado', - 'statuses' => [ - 'draft' => 'Rascunho', - 'sent' => 'Enviado', - 'expired' => 'Expirado', - 'viewed' => 'Visualizado', - 'approved' => 'Aprovado', - 'received' => 'Recebido', - 'refused' => 'Recusado', - 'restored' => 'Restaurado', - 'reversed' => 'Revertido', - 'partial' => 'Parcial', - 'paid' => 'Pago', - 'pending' => 'Pendente', - 'invoiced' => 'Faturado', - 'overdue' => 'Vencido', - 'unpaid' => 'Não Pago', - 'cancelled' => 'Cancelado', - 'voided' => 'Anulado', - 'completed' => 'Concluído', - 'shipped' => 'Enviado', - 'refunded' => 'Reembolsado', - 'failed' => 'Falhou', - 'denied' => 'Negado', - 'processed' => 'Processado', - 'open' => 'Aberto', - 'closed' => 'Fechado', - 'billed' => 'Faturado', - 'delivered' => 'Entregue', - 'returned' => 'Devolvido', - 'drawn' => 'Rascunho', - 'not_billed' => 'Não faturado', - 'issued' => 'Emitido', - 'not_invoiced' => 'Não faturado', - 'confirmed' => 'Confirmado', - 'not_confirmed' => 'Não confirmado', - 'active' => 'Ativo', - 'ended' => 'Finalizado', + 'draft' => 'Rascunho', + 'sent' => 'Enviado', + 'expired' => 'Expirado', + 'viewed' => 'Visualizado', + 'approved' => 'Aprovado', + 'received' => 'Recebido', + 'refused' => 'Recusado', + 'restored' => 'Restaurado', + 'reversed' => 'Revertido', + 'partial' => 'Parcial', + 'paid' => 'Pago', + 'pending' => 'Pendente', + 'invoiced' => 'Faturado', + 'overdue' => 'Vencido', + 'unpaid' => 'Não Pago', + 'cancelled' => 'Cancelado', + 'voided' => 'Anulado', + 'completed' => 'Concluído', + 'shipped' => 'Enviado', + 'refunded' => 'Reembolsado', + 'failed' => 'Falhou', + 'denied' => 'Negado', + 'processed' => 'Processado', + 'open' => 'Aberto', + 'closed' => 'Fechado', + 'billed' => 'Faturado', + 'delivered' => 'Entregue', + 'returned' => 'Devolvido', + 'drawn' => 'Rascunho', + 'not_billed' => 'Não faturado', + 'issued' => 'Emitido', + 'not_invoiced' => 'Não faturado', + 'confirmed' => 'Confirmado', + 'not_confirmed' => 'Não confirmado', + 'active' => 'Ativo', + 'ended' => 'Finalizado', ], 'form_description' => [ - 'companies' => 'Altere o endereço, logotipo, e outras informações para sua empresa.', - 'billing' => 'Detalhes de faturamento aparecem no seu documento.', - 'advanced' => 'Selecione a categoria, adicione ou edite o rodapé e adicione anexos ao seu :type.', - 'attachment' => 'Baixar os arquivos anexados a esse :type', + 'companies' => 'Altere o endereço, logotipo, e outras informações para sua empresa.', + 'billing' => 'Detalhes de faturamento aparecem no seu documento.', + 'advanced' => 'Selecione a categoria, adicione ou edite o rodapé e adicione anexos ao seu :type.', + 'attachment' => 'Baixar os arquivos anexados a esse :type', ], 'messages' => [ - 'email_sent' => 'E-mail :type foi enviado!', - 'marked_as' => ':type marcado como :status!', - 'marked_sent' => ':type marcado como enviado!', - 'marked_paid' => ':type marcado como pago!', - 'marked_viewed' => ':type marcado como visualizado!', - 'marked_cancelled' => ':type marcado como cancelado!', - 'marked_received' => ':type marcado como recebido!', + 'email_sent' => 'E-mail :type foi enviado!', + 'marked_as' => ':type marcado como :status!', + 'marked_sent' => ':type marcado como enviado!', + 'marked_paid' => ':type marcado como pago!', + 'marked_viewed' => ':type marcado como visualizado!', + 'marked_cancelled' => ':type marcado como cancelado!', + 'marked_received' => ':type marcado como recebido!', ], 'recurring' => [ - 'auto_generated' => 'Gerado automaticamente', + 'auto_generated' => 'Gerado automaticamente', 'tooltip' => [ 'document_date' => 'A data :type será automaticamente atribuída com base no agendamento e frequência :type.', diff --git a/resources/lang/pt-BR/general.php b/resources/lang/pt-BR/general.php index 264a35c28..ffcd1ce33 100644 --- a/resources/lang/pt-BR/general.php +++ b/resources/lang/pt-BR/general.php @@ -4,11 +4,10 @@ return [ 'dashboards' => 'Painel | Painéis', 'items' => 'Item | Itens', - 'incomes' => 'Renda|Rendas', 'invoices' => 'Fatura|Faturas', 'recurring_invoices' => 'Fatura recorrente|Faturas recorrentes', 'customers' => 'Cliente|Clientes', - 'incomes' => 'Receita|Receitas', + 'incomes' => 'Renda|Rendas', 'recurring_incomes' => 'Receita recorrente|Receitas recorrentes', 'expenses' => 'Despesa|Despesas', 'recurring_expenses' => 'Despesa recorrente|Despesas recorrentes', @@ -70,6 +69,7 @@ return [ 'invitations' => 'Convite|Convites', 'attachments' => 'Anexo|Anexos', 'histories' => 'Histórico|Históricos', + 'your_notifications' => 'Sua notificação|Suas notificações', 'welcome' => 'Bem-vindo', 'banking' => 'Banco', @@ -184,6 +184,7 @@ return [ 'no_matching_data' => 'Não há dados correspondentes', 'clear_cache' => 'Limpar o Cache', 'go_to_dashboard' => 'Ir para o Painel', + 'create_first_invoice' => 'Crie sua primeira fatura', 'is' => 'é', 'isnot' => 'não é', 'recurring_and_more' => 'Recorrente e mais..', @@ -199,7 +200,6 @@ return [ 'email_send_me' => 'Enviar uma cópia para mim mesmo em :email', 'connect' => 'Conectar', 'assign' => 'Atribuir', - 'your_notifications' => 'Sua notificação|Suas notificações', 'new' => 'Novo', 'new_more' => 'Novo ...', 'number' => 'Número', diff --git a/resources/views/banking/accounts/show.blade.php b/resources/views/banking/accounts/show.blade.php index 6e75ee539..060163ee0 100644 --- a/resources/views/banking/accounts/show.blade.php +++ b/resources/views/banking/accounts/show.blade.php @@ -291,11 +291,17 @@ {{ $item->contact->name }} - + @if ($item->document) +
{{ $item->document->document_number }} + +
+ + +
@else @endif @@ -444,6 +450,16 @@ + +
diff --git a/resources/views/banking/recurring_transactions/show.blade.php b/resources/views/banking/recurring_transactions/show.blade.php index 33f12e6fe..9053cc4ae 100644 --- a/resources/views/banking/recurring_transactions/show.blade.php +++ b/resources/views/banking/recurring_transactions/show.blade.php @@ -8,7 +8,7 @@
- + @@ -21,8 +21,8 @@ hide-button-share hide-button-email hide-divider-2 - hide-button-delete hide-divider-4 + hide-button-delete /> diff --git a/resources/views/banking/transactions/index.blade.php b/resources/views/banking/transactions/index.blade.php index e3574de72..af3e802be 100644 --- a/resources/views/banking/transactions/index.blade.php +++ b/resources/views/banking/transactions/index.blade.php @@ -59,6 +59,7 @@ @@ -162,15 +163,18 @@ {{ $item->contact->name }} - + @if ($item->document) - - {{ $item->document->document_number }} - +
+ + {{ $item->document->document_number }} + -
+
+
- + +
@else @endif diff --git a/resources/views/components/contacts/show/content.blade.php b/resources/views/components/contacts/show/content.blade.php index 765cfa22b..d0f9c7a01 100644 --- a/resources/views/components/contacts/show/content.blade.php +++ b/resources/views/components/contacts/show/content.blade.php @@ -215,12 +215,12 @@ {{ $item->contact_name }}
- + {{ $item->document_number }} -
+
diff --git a/resources/views/components/documents/form/line-item.blade.php b/resources/views/components/documents/form/line-item.blade.php index fe98b5940..43af37ff1 100644 --- a/resources/views/components/documents/form/line-item.blade.php +++ b/resources/views/components/documents/form/line-item.blade.php @@ -65,7 +65,7 @@ @if (! $hideItemDescription)