From 498015ce0ed158dc7c7bc83c6c91ad07b2696fbd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=BCneyt=20=C5=9Eent=C3=BCrk?= Date: Tue, 26 Jul 2022 11:38:15 +0300 Subject: [PATCH 01/22] styling.. --- resources/views/components/form/group/contact.blade.php | 2 -- 1 file changed, 2 deletions(-) diff --git a/resources/views/components/form/group/contact.blade.php b/resources/views/components/form/group/contact.blade.php index 4e120f344..91d5bd9cc 100644 --- a/resources/views/components/form/group/contact.blade.php +++ b/resources/views/components/form/group/contact.blade.php @@ -6,7 +6,6 @@ add-new path="{{ $path }}" - add-new name="{{ $name }}" label="{!! $label !!}" :options="$contacts" @@ -26,7 +25,6 @@ add-new path="{{ $path }}" - add-new name="{{ $name }}" label="{!! $label !!}" :options="$contacts" From 951bb1a232ebacc77120fa2eda9f2e8f2ce420d1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=BCneyt=20=C5=9Eent=C3=BCrk?= Date: Tue, 26 Jul 2022 11:51:11 +0300 Subject: [PATCH 02/22] closed #2550 Added: Akaunting select and select remote component lazy load ( #2xgvehx ) --- app/Abstracts/View/Components/Form.php | 42 ++++- .../assets/js/components/AkauntingSelect.vue | 151 +++++++++++++++++- .../js/components/AkauntingSelectRemote.vue | 149 ++++++++++++++++- .../components/form/group/select.blade.php | 18 +++ .../components/form/input/select.blade.php | 18 +++ 5 files changed, 366 insertions(+), 12 deletions(-) diff --git a/app/Abstracts/View/Components/Form.php b/app/Abstracts/View/Components/Form.php index 4c39e8cfd..15b75cb81 100644 --- a/app/Abstracts/View/Components/Form.php +++ b/app/Abstracts/View/Components/Form.php @@ -27,6 +27,9 @@ abstract class Form extends Component /** @var string */ public $placeholder; + /** @var string */ + public $searchText; + /** @var array */ public $options; @@ -39,6 +42,9 @@ abstract class Form extends Component /** @var string */ public $optionValue; + /** @var array */ + public $fullOptions; + /** @var string */ public $checked; @@ -66,6 +72,9 @@ abstract class Form extends Component /** @var bool */ public $group; + /** @var bool */ + public $searchable; + /** @var bool */ public $disabled; @@ -99,10 +108,10 @@ abstract class Form extends Component * @return void */ public function __construct( - string $name = '', string $type = 'text', string $label = '', string $id = null, $value = '', $valueKey = null, string $placeholder = '', - $options = [], $option = [], string $optionKey = 'id', string $optionValue = 'name', $checked = null, $checkedKey = null, $selected = null, $selectedKey = null, $rows = '3', + string $name = '', string $type = 'text', string $label = '', string $id = null, $value = '', $valueKey = null, string $placeholder = '', string $searchText = '', + $options = [], $option = [], string $optionKey = 'id', string $optionValue = 'name', $fullOptions = [], $checked = null, $checkedKey = null, $selected = null, $selectedKey = null, $rows = '3', $remote = false, $multiple = false, $addNew = false, $group = false, - bool $disabled = false, bool $readonly = false, bool $required = true, bool $notRequired = false, + bool $searchable = false, bool $disabled = false, bool $readonly = false, bool $required = true, bool $notRequired = false, string $formGroupClass = '', string $inputGroupClass = '', $dynamicAttributes = '', bool $hideCurrency = false @@ -113,6 +122,7 @@ abstract class Form extends Component $this->id = $id ?? $name; $this->value = $this->getValue($value, $valueKey); $this->placeholder = $this->getPlaceholder($placeholder); + $this->searchText = $this->getSearchText($searchText); $this->rows = $rows; $this->remote = $remote; @@ -120,6 +130,7 @@ abstract class Form extends Component $this->addNew = $addNew; $this->group = $group; + $this->searchable = $searchable; $this->disabled = $disabled; $this->readonly = $readonly; $this->required = $this->getRequired($required, $notRequired); @@ -128,6 +139,7 @@ abstract class Form extends Component $this->option = $option; $this->optionKey = $optionKey; $this->optionValue = $optionValue; + $this->fullOptions = $this->getFullOptions($fullOptions, $options, $searchable); $this->checked = $this->getChecked($checked, $checkedKey); $this->selected = $this->getSelected($selected, $selectedKey); @@ -222,6 +234,15 @@ abstract class Form extends Component return trans('general.form.enter', ['field' => $label]); } + protected function getSearchText($searchText) + { + if (! empty($searchText)) { + return $searchText; + } + + return trans('general.search_placeholder'); + } + protected function getOptions($options) { if (! empty($options)) { @@ -248,6 +269,21 @@ abstract class Form extends Component return []; } + protected function getFullOptions($fullOptions, $options, $searchable) + { + if (! empty($fullOptions)) { + return $fullOptions; + } + + if ($searchable && empty($fullOptions)) { + $this->options = $this->options->take(setting('default.select_limit')); + + return $options; + } + + return []; + } + protected function getChecked($checked, $checkedKey) { return $this->getValue($checked, $checkedKey); diff --git a/resources/assets/js/components/AkauntingSelect.vue b/resources/assets/js/components/AkauntingSelect.vue index 5e0befea7..4aa377ea4 100644 --- a/resources/assets/js/components/AkauntingSelect.vue +++ b/resources/assets/js/components/AkauntingSelect.vue @@ -10,8 +10,10 @@ ]" :error="formError"> - @@ -81,7 +83,7 @@ :label="group_options.key"> @@ -189,6 +191,8 @@ export default { dynamicOptions: null, + fullOptions: null, + disabledOptions: { type: Array, default: function () { @@ -283,10 +287,23 @@ export default { default: 'No Matchign Data', description: "Selectbox search option not found item message" }, + + searchable: { + type: Boolean, + default: false, + description: "Selectbox searchable" + }, + + searchText: { + type: String, + default: '', + description: "Selectbox input search placeholder text" + }, }, data() { return { + dynamicPlaceholder: this.placeholder, add_new: { text: this.addNew.text, show: false, @@ -301,18 +318,26 @@ export default { form: {}, sorted_options: [], + full_options:[], new_options: {}, loading: false, + remote: false, } }, created() { this.setSortedOptions(); + + if (this.searchable) { + this.remote = true; + + this.setFullOptions(); + } }, computed: { sortedOptions() { - if (!this.sortOptions) { + if (! this.sortOptions) { return this.sorted_options } @@ -344,7 +369,6 @@ export default { } catch (e) { this.selected = this.model; } - } if (this.multiple && !this.selected.length) { @@ -453,6 +477,82 @@ export default { } }, + setFullOptions() { + // Reset full_options + this.full_options = []; + + let created_options = (this.dynamicOptions) ? this.dynamicOptions : this.fullOptions; + + if (this.group) { + // Option set sort_option data + if (!Array.isArray(created_options)) { + for (const [index, options] of Object.entries(created_options)) { + let values = []; + + for (const [key, value] of Object.entries(options)) { + values.push({ + key: key, + value: value, + level: 0 + }); + } + + this.full_options.push({ + key: index, + value: values + }); + } + } else { + created_options.forEach(function (option, index) { + if (typeof(option) == 'string') { + this.full_options.push({ + index: index, + key: index.toString(), + value: option, + level: 0 + }); + } else { + this.full_options.push({ + index: index, + key: option.id.toString(), + value: (option.title) ? option.title : (option.display_name) ? option.display_name : option.name, + level: (option.level) ? option.level : 0 + }); + } + }, this); + } + } else { + // Option set sort_option data + if (!Array.isArray(created_options)) { + for (const [key, value] of Object.entries(created_options)) { + this.full_options.push({ + key: key, + value: value, + level: 0 + }); + } + } else { + created_options.forEach(function (option, index) { + if (typeof(option) == 'string') { + this.full_options.push({ + index: index, + key: index.toString(), + value: option, + level: 0 + }); + } else { + this.full_options.push({ + index: index, + key: option.id.toString(), + value: (option.title) ? option.title : (option.display_name) ? option.display_name : option.name, + level: (option.level) ? option.level : 0 + }); + } + }, this); + } + } + }, + change() { // This controll added add new changed.. if (typeof(this.selected) === 'object' && typeof(this.selected.type) !== 'undefined') { @@ -531,6 +631,30 @@ export default { visibleChange(event) { this.$emit('visible-change', event); + + this.dynamicPlaceholder = this.placeholder; + + if (event && this.searchText) { + this.dynamicPlaceholder = this.searchText; + } + + if (this.searchable) { + let selected = this.selected; + this.sorted_options = []; + + this.setSortedOptions(); + + for (const [key, value] of Object.entries(this.full_options)) { + if (selected == value.key) { + this.sorted_options.push({ + index: value.index, + key: value.key, + value: value.value, + level: value.level + }); + } + } + } }, removeTag(event) { @@ -724,6 +848,23 @@ export default { addModal() { }, + + serchableMethod(query) { + if (query !== '') { + this.loading = true; + + setTimeout(() => { + this.loading = false; + + this.sorted_options = this.full_options.filter(item => { + return item.value.toLowerCase() + .indexOf(query.toLowerCase()) > -1; + }); + }, 200); + } else { + this.setSortedOptions(); + } + }, }, watch: { diff --git a/resources/assets/js/components/AkauntingSelectRemote.vue b/resources/assets/js/components/AkauntingSelectRemote.vue index 5f53754fa..56414fa39 100644 --- a/resources/assets/js/components/AkauntingSelectRemote.vue +++ b/resources/assets/js/components/AkauntingSelectRemote.vue @@ -11,7 +11,7 @@ ]" :error="formError"> - - { + this.loading = false; + + this.sorted_options = this.full_options.filter(item => { + return item.value.toLowerCase() + .indexOf(query.toLowerCase()) > -1; + }); + }, 200); + } else { + this.setSortedOptions(); + } + }, + async onAddItem() { // Get Select Input value if (this.multiple) { diff --git a/resources/views/components/form/group/select.blade.php b/resources/views/components/form/group/select.blade.php index 410b3a9bf..c157a4c22 100644 --- a/resources/views/components/form/group/select.blade.php +++ b/resources/views/components/form/group/select.blade.php @@ -47,6 +47,24 @@ :dynamic-options="{{ $attributes['dynamicOptions'] }}" @endif + @if (! empty($attributes['searchable'])) + searchable + @elseif (! empty($searchable)) + searchable + @endif + + @if (isset($attributes['fullOptions']) || isset($attributes['full-options'])) + :full-options="{{ json_encode(! empty($attributes['fullOptions']) ? $attributes['fullOptions'] : $attributes['full-options']) }}" + @else + :full-options="{{ json_encode($fullOptions) }}" + @endif + + @if (isset($attributes['searchText']) || isset($attributes['search-text'])) + search-text="{{ ! empty($attributes['searchText']) ? $attributes['searchText'] : $attributes['search-text'] }}" + @else + search-text="{{ $searchText }}" + @endif + @if (empty($multiple)) @if (isset($selected) || old($name)) value="{{ old($name, $selected) }}" diff --git a/resources/views/components/form/input/select.blade.php b/resources/views/components/form/input/select.blade.php index 6a71b374b..a6b080761 100644 --- a/resources/views/components/form/input/select.blade.php +++ b/resources/views/components/form/input/select.blade.php @@ -47,6 +47,24 @@ :dynamic-options="{{ $attributes['dynamicOptions'] }}" @endif + @if (! empty($attributes['searchable'])) + searchable + @elseif (! empty($searchable)) + searchable + @endif + + @if (isset($attributes['fullOptions']) || isset($attributes['full-options'])) + :full-options="{{ json_encode(! empty($attributes['fullOptions']) ? $attributes['fullOptions'] : $attributes['full-options']) }}" + @else + :full-options="{{ json_encode($fullOptions) }}" + @endif + + @if (isset($attributes['searchText']) || isset($attributes['search-text'])) + search-text="{{ ! empty($attributes['searchText']) ? $attributes['searchText'] : $attributes['search-text'] }}" + @else + search-text="{{ $searchText }}" + @endif + @if (empty($multiple)) @if (isset($selected) || old($name)) value="{{ old($name, $selected) }}" From e7fc5404d57ccb08ef3a88e1e5a1da99e1c5ad41 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=BCneyt=20=C5=9Eent=C3=BCrk?= Date: Tue, 26 Jul 2022 11:59:38 +0300 Subject: [PATCH 03/22] changed currency code searchable enhancement ( #2xgvehx ) --- resources/views/settings/currencies/create.blade.php | 2 +- resources/views/settings/currencies/edit.blade.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/resources/views/settings/currencies/create.blade.php b/resources/views/settings/currencies/create.blade.php index 1845d3906..2381c8389 100644 --- a/resources/views/settings/currencies/create.blade.php +++ b/resources/views/settings/currencies/create.blade.php @@ -20,7 +20,7 @@ - + diff --git a/resources/views/settings/currencies/edit.blade.php b/resources/views/settings/currencies/edit.blade.php index cc1b4338c..7a10ce6a7 100644 --- a/resources/views/settings/currencies/edit.blade.php +++ b/resources/views/settings/currencies/edit.blade.php @@ -14,7 +14,7 @@ - + From 91ce0e5aa8a790dd6fa061bbeee333f0074f00fa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Denis=20Duli=C3=A7i?= Date: Tue, 26 Jul 2022 14:32:12 +0300 Subject: [PATCH 04/22] format expenses chart for humans --- app/Traits/Charts.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Traits/Charts.php b/app/Traits/Charts.php index be223e77f..d89fdf04d 100644 --- a/app/Traits/Charts.php +++ b/app/Traits/Charts.php @@ -28,7 +28,7 @@ trait Charts public function addMoneyToDonut($color, $amount, $description = '') { - $label = money($amount, setting('default.currency'), true)->format(); + $label = money($amount, setting('default.currency'), true)->formatForHumans(); if (!empty($description)) { $label .= ' - ' . $description; From b2f35d8d9c47c0701b30510b0f34c3196ecd8077 Mon Sep 17 00:00:00 2001 From: Burak Civan Date: Tue, 26 Jul 2022 14:39:36 +0300 Subject: [PATCH 05/22] code refactoring for send to button development --- resources/assets/js/views/common/documents.js | 18 ++++++++++++++++-- .../documents/form/buttons.blade.php | 2 +- 2 files changed, 17 insertions(+), 3 deletions(-) diff --git a/resources/assets/js/views/common/documents.js b/resources/assets/js/views/common/documents.js index f08f6b167..cb52d67d6 100644 --- a/resources/assets/js/views/common/documents.js +++ b/resources/assets/js/views/common/documents.js @@ -953,6 +953,7 @@ const app = new Vue({ form_html.querySelectorAll('[type="submit"]').forEach((submit) => { submit.addEventListener('click', () => { + this.minor_form_loading = false; window.onbeforeunload = null; }); }); @@ -967,13 +968,26 @@ const app = new Vue({ }, onSubmitViaSendEmail() { + let type_submit_icon = document.querySelector('[type="submit"]').querySelector('i'); + let type_submit_span = document.querySelector('[type="submit"]').querySelector('span'); + this.form['senddocument'] = true; this.minor_form_loading = true; - this.onSubmit(); + if (this.form.loading) { + type_submit_icon.classList.add('hidden'); + type_submit_span.classList.add('opacity-100'); + } - this.form.loading = false; + setTimeout(() => { + if (type_submit_icon && type_submit_span) { + type_submit_icon.classList.remove('hidden'); + type_submit_span.classList.remove('opacity-100'); + } + }, 5000); + + this.onSubmit(); setTimeout(() => { if (Object.keys(this.form.errors.errors.length > 0)) { diff --git a/resources/views/components/documents/form/buttons.blade.php b/resources/views/components/documents/form/buttons.blade.php index d8d77b63c..35380e887 100644 --- a/resources/views/components/documents/form/buttons.blade.php +++ b/resources/views/components/documents/form/buttons.blade.php @@ -8,7 +8,7 @@ id="invoice-send-to" class="relative flex items-center justify-center bg-green hover:bg-green-700 text-white px-6 py-1.5 ltr:ml-2 rtl:mr-2 text-base rounded-lg disabled:bg-green-100" override="class" - ::disabled="minor_form_loading" + ::disabled="form.loading" @click="onSubmitViaSendEmail" > From 040527734dedefb90b110a94a5d07dae4e788bfc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=BCneyt=20=C5=9Eent=C3=BCrk?= Date: Tue, 26 Jul 2022 15:56:43 +0300 Subject: [PATCH 06/22] close #2552 Added: Quick category modal add parent category field --- app/Http/Controllers/Modals/Categories.php | 21 +++++++++++++--- .../js/components/AkauntingModalAddNew.vue | 24 +++++++++++++++++++ .../components/form/group/select.blade.php | 4 ++++ .../views/modals/categories/create.blade.php | 6 ++++- 4 files changed, 51 insertions(+), 4 deletions(-) diff --git a/app/Http/Controllers/Modals/Categories.php b/app/Http/Controllers/Modals/Categories.php index fa4559fb2..11a422bfa 100644 --- a/app/Http/Controllers/Modals/Categories.php +++ b/app/Http/Controllers/Modals/Categories.php @@ -3,9 +3,10 @@ namespace App\Http\Controllers\Modals; use App\Abstracts\Http\Controller; -use App\Jobs\Setting\CreateCategory; -use Illuminate\Http\Request as IRequest; use App\Http\Requests\Setting\Category as Request; +use App\Jobs\Setting\CreateCategory; +use App\Models\Setting\Category; +use Illuminate\Http\Request as IRequest; class Categories extends Controller { @@ -30,7 +31,21 @@ class Categories extends Controller { $type = $request->get('type', 'item'); - $html = view('modals.categories.create', compact('type'))->render(); + $categories = []; + + foreach (config('type.category') as $type => $config) { + $categories[$type] = []; + } + + Category::enabled()->orderBy('name')->get()->each(function ($category) use (&$categories) { + $categories[$category->type][] = [ + 'id' => $category->id, + 'title' => $category->name, + 'level' => $category->level, + ]; + }); + + $html = view('modals.categories.create', compact('type', 'categories'))->render(); return response()->json([ 'success' => true, diff --git a/resources/assets/js/components/AkauntingModalAddNew.vue b/resources/assets/js/components/AkauntingModalAddNew.vue index 1846ca549..7225d8481 100644 --- a/resources/assets/js/components/AkauntingModalAddNew.vue +++ b/resources/assets/js/components/AkauntingModalAddNew.vue @@ -228,6 +228,8 @@ export default { '#efef32' ], min_date: false, + categoriesBasedTypes: null, + isParentCategoryDisabled: true, } }, @@ -288,6 +290,28 @@ export default { .catch(error => { }); }, + + updateParentCategories(event) { + if (event === '') { + return; + } + + if (typeof JSON.parse(this.form.categories)[event] === 'undefined') { + this.categoriesBasedTypes = []; + this.isParentCategoryDisabled = true; + + return; + } + + if (this.form.parent_category_id) { + this.form.parent_category_id = null; + + return; + } + + this.categoriesBasedTypes = JSON.parse(this.form.categories)[event]; + this.isParentCategoryDisabled = false; + }, } }) }); diff --git a/resources/views/components/form/group/select.blade.php b/resources/views/components/form/group/select.blade.php index c157a4c22..ff2c421ed 100644 --- a/resources/views/components/form/group/select.blade.php +++ b/resources/views/components/form/group/select.blade.php @@ -125,6 +125,10 @@ @change="{{ $attributes['change'] }}($event)" @endif + @if (! empty($attributes['focus'])) + @focus="{{ $attributes['focus'] }}" + @endif + @if (! empty($attributes['visible-change'])) @visible-change="{{ $attributes['visible-change'] }}" @endif diff --git a/resources/views/modals/categories/create.blade.php b/resources/views/modals/categories/create.blade.php index 1dd29da55..bf57ce287 100644 --- a/resources/views/modals/categories/create.blade.php +++ b/resources/views/modals/categories/create.blade.php @@ -4,7 +4,11 @@ - + + + + + From 60b4fcd212da7a001182ef11d5a7a5f99da38026 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Denis=20Duli=C3=A7i?= Date: Tue, 26 Jul 2022 17:40:25 +0300 Subject: [PATCH 07/22] updated lang files --- resources/lang/en-GB/passwords.php | 1 - resources/lang/en-GB/validation.php | 74 +++++++++++++++++------------ 2 files changed, 44 insertions(+), 31 deletions(-) diff --git a/resources/lang/en-GB/passwords.php b/resources/lang/en-GB/passwords.php index 363960360..2345a56b5 100644 --- a/resources/lang/en-GB/passwords.php +++ b/resources/lang/en-GB/passwords.php @@ -13,7 +13,6 @@ return [ | */ - 'password' => 'Passwords must be at least six characters and match the confirmation.', 'reset' => 'Your password has been reset!', 'sent' => 'We have emailed your password reset link!', 'throttled' => 'Please wait before retrying.', diff --git a/resources/lang/en-GB/validation.php b/resources/lang/en-GB/validation.php index 80ca77535..1f15c2df7 100644 --- a/resources/lang/en-GB/validation.php +++ b/resources/lang/en-GB/validation.php @@ -14,6 +14,7 @@ return [ */ 'accepted' => 'The :attribute must be accepted.', + 'accepted_if' => 'The :attribute must be accepted when :other is :value.', 'active_url' => 'The :attribute is not a valid URL.', 'after' => 'The :attribute must be a date after :date.', 'after_or_equal' => 'The :attribute must be a date after or equal to :date.', @@ -24,10 +25,10 @@ return [ 'before' => 'The :attribute must be a date before :date.', 'before_or_equal' => 'The :attribute must be a date before or equal to :date.', 'between' => [ - 'numeric' => 'The :attribute must be between :min and :max.', - 'file' => 'The :attribute must be between :min and :max kilobytes.', - 'string' => 'The :attribute must be between :min and :max characters.', 'array' => 'The :attribute must have between :min and :max items.', + 'file' => 'The :attribute must be between :min and :max kilobytes.', + 'numeric' => 'The :attribute must be between :min and :max.', + 'string' => 'The :attribute must be between :min and :max characters.', ], 'boolean' => 'The :attribute field must be true or false.', 'confirmed' => 'The :attribute confirmation does not match.', @@ -35,27 +36,31 @@ return [ 'date' => 'The :attribute is not a valid date.', 'date_equals' => 'The :attribute must be a date equal to :date.', 'date_format' => 'The :attribute does not match the format :format.', + 'declined' => 'The :attribute must be declined.', + 'declined_if' => 'The :attribute must be declined when :other is :value.', 'different' => 'The :attribute and :other must be different.', 'digits' => 'The :attribute must be :digits digits.', 'digits_between' => 'The :attribute must be between :min and :max digits.', 'dimensions' => 'The :attribute has invalid image dimensions.', 'distinct' => 'The :attribute field has a duplicate value.', + 'doesnt_start_with' => 'The :attribute may not start with one of the following: :values.', 'email' => 'The :attribute must be a valid email address.', 'ends_with' => 'The :attribute must end with one of the following: :values.', + 'enum' => 'The selected :attribute is invalid.', 'exists' => 'The selected :attribute is invalid.', 'file' => 'The :attribute must be a file.', 'filled' => 'The :attribute field must have a value.', 'gt' => [ - 'numeric' => 'The :attribute must be greater than :value.', - 'file' => 'The :attribute must be greater than :value kilobytes.', - 'string' => 'The :attribute must be greater than :value characters.', 'array' => 'The :attribute must have more than :value items.', + 'file' => 'The :attribute must be greater than :value kilobytes.', + 'numeric' => 'The :attribute must be greater than :value.', + 'string' => 'The :attribute must be greater than :value characters.', ], 'gte' => [ - 'numeric' => 'The :attribute must be greater than or equal :value.', - 'file' => 'The :attribute must be greater than or equal :value kilobytes.', - 'string' => 'The :attribute must be greater than or equal :value characters.', 'array' => 'The :attribute must have :value items or more.', + 'file' => 'The :attribute must be greater than or equal to :value kilobytes.', + 'numeric' => 'The :attribute must be greater than or equal to :value.', + 'string' => 'The :attribute must be greater than or equal to :value characters.', ], 'image' => 'The :attribute must be an image.', 'in' => 'The selected :attribute is invalid.', @@ -66,61 +71,70 @@ return [ 'ipv6' => 'The :attribute must be a valid IPv6 address.', 'json' => 'The :attribute must be a valid JSON string.', 'lt' => [ - 'numeric' => 'The :attribute must be less than :value.', - 'file' => 'The :attribute must be less than :value kilobytes.', - 'string' => 'The :attribute must be less than :value characters.', 'array' => 'The :attribute must have less than :value items.', + 'file' => 'The :attribute must be less than :value kilobytes.', + 'numeric' => 'The :attribute must be less than :value.', + 'string' => 'The :attribute must be less than :value characters.', ], 'lte' => [ - 'numeric' => 'The :attribute must be less than or equal :value.', - 'file' => 'The :attribute must be less than or equal :value kilobytes.', - 'string' => 'The :attribute must be less than or equal :value characters.', 'array' => 'The :attribute must not have more than :value items.', + 'file' => 'The :attribute must be less than or equal to :value kilobytes.', + 'numeric' => 'The :attribute must be less than or equal to :value.', + 'string' => 'The :attribute must be less than or equal to :value characters.', ], + 'mac_address' => 'The :attribute must be a valid MAC address.', 'max' => [ - 'numeric' => 'The :attribute must not be greater than :max.', - 'file' => 'The :attribute must not be greater than :max kilobytes.', - 'string' => 'The :attribute must not be greater than :max characters.', 'array' => 'The :attribute must not have more than :max items.', + 'file' => 'The :attribute must not be greater than :max kilobytes.', + 'numeric' => 'The :attribute must not be greater than :max.', + 'string' => 'The :attribute must not be greater than :max characters.', ], 'mimes' => 'The :attribute must be a file of type: :values.', 'mimetypes' => 'The :attribute must be a file of type: :values.', 'min' => [ - 'numeric' => 'The :attribute must be at least :min.', - 'file' => 'The :attribute must be at least :min kilobytes.', - 'string' => 'The :attribute must be at least :min characters.', 'array' => 'The :attribute must have at least :min items.', + 'file' => 'The :attribute must be at least :min kilobytes.', + 'numeric' => 'The :attribute must be at least :min.', + 'string' => 'The :attribute must be at least :min characters.', ], 'multiple_of' => 'The :attribute must be a multiple of :value.', 'not_in' => 'The selected :attribute is invalid.', 'not_regex' => 'The :attribute format is invalid.', 'numeric' => 'The :attribute must be a number.', - 'password' => 'The password is incorrect.', + 'password' => [ + 'letters' => 'The :attribute must contain at least one letter.', + 'mixed' => 'The :attribute must contain at least one uppercase and one lowercase letter.', + 'numbers' => 'The :attribute must contain at least one number.', + 'symbols' => 'The :attribute must contain at least one symbol.', + 'uncompromised' => 'The given :attribute has appeared in a data leak. Please choose a different :attribute.', + ], 'present' => 'The :attribute field must be present.', + 'prohibited' => 'The :attribute field is prohibited.', + 'prohibited_if' => 'The :attribute field is prohibited when :other is :value.', + 'prohibited_unless' => 'The :attribute field is prohibited unless :other is in :values.', + 'prohibits' => 'The :attribute field prohibits :other from being present.', 'regex' => 'The :attribute format is invalid.', 'required' => 'The :attribute field is required.', + 'required_array_keys' => 'The :attribute field must contain entries for: :values.', 'required_if' => 'The :attribute field is required when :other is :value.', 'required_unless' => 'The :attribute field is required unless :other is in :values.', 'required_with' => 'The :attribute field is required when :values is present.', 'required_with_all' => 'The :attribute field is required when :values are present.', 'required_without' => 'The :attribute field is required when :values is not present.', 'required_without_all' => 'The :attribute field is required when none of :values are present.', - 'prohibited' => 'The :attribute field is prohibited.', - 'prohibited_if' => 'The :attribute field is prohibited when :other is :value.', - 'prohibited_unless' => 'The :attribute field is prohibited unless :other is in :values.', 'same' => 'The :attribute and :other must match.', 'size' => [ - 'numeric' => 'The :attribute must be :size.', - 'file' => 'The :attribute must be :size kilobytes.', - 'string' => 'The :attribute must be :size characters.', 'array' => 'The :attribute must contain :size items.', + 'file' => 'The :attribute must be :size kilobytes.', + 'numeric' => 'The :attribute must be :size.', + 'string' => 'The :attribute must be :size characters.', ], 'starts_with' => 'The :attribute must start with one of the following: :values.', 'string' => 'The :attribute must be a string.', - 'timezone' => 'The :attribute must be a valid zone.', + 'timezone' => 'The :attribute must be a valid timezone.', 'unique' => 'The :attribute has already been taken.', 'uploaded' => 'The :attribute failed to upload.', - 'url' => 'The :attribute format is invalid.', + 'url' => 'The :attribute must be a valid URL.', 'uuid' => 'The :attribute must be a valid UUID.', /* From 114af3d04d163a400d575faf9be1c65858a6ef6a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=BCneyt=20=C5=9Eent=C3=BCrk?= Date: Tue, 26 Jul 2022 17:43:17 +0300 Subject: [PATCH 08/22] fixed contact and category set edit form model data.. --- app/View/Components/Form/Group/Category.php | 2 +- app/View/Components/Form/Group/Contact.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/app/View/Components/Form/Group/Category.php b/app/View/Components/Form/Group/Category.php index 609ad1ec3..57c583693 100644 --- a/app/View/Components/Form/Group/Category.php +++ b/app/View/Components/Form/Group/Category.php @@ -29,7 +29,7 @@ class Category extends Form $this->path = route('modals.categories.create', ['type' => $this->type]); $this->remoteAction = route('categories.index', ['search' => 'type:' . $this->type . ' enabled:1']); - $this->categories = Model::type($this->type)->enabled()->orderBy('name')->take(setting('default.select_limit'))->get(); + $this->categories = Model::type($this->type)->enabled()->orderBy('name')->take(setting('default.select_limit'))->pluck('name', 'id'); $model = $this->getParentData('model'); diff --git a/app/View/Components/Form/Group/Contact.php b/app/View/Components/Form/Group/Contact.php index e471d73ec..9baa00e51 100644 --- a/app/View/Components/Form/Group/Contact.php +++ b/app/View/Components/Form/Group/Contact.php @@ -35,7 +35,7 @@ class Contact extends Form $this->label = trans_choice('general.' . Str::plural($this->type), 1); - $this->contacts = Model::type($this->type)->enabled()->orderBy('name')->take(setting('default.select_limit'))->get(); + $this->contacts = Model::type($this->type)->enabled()->orderBy('name')->take(setting('default.select_limit'))->pluck('name', 'id'); $model = $this->getParentData('model'); From 6c23d8daf6e0578853b786c53c3253f2dfa149f7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=BCneyt=20=C5=9Eent=C3=BCrk?= Date: Tue, 26 Jul 2022 18:29:38 +0300 Subject: [PATCH 09/22] fixed set account for reconciliation ( #3695j9y ) --- .../banking/reconciliations/create.blade.php | 21 +++++++++++-------- .../banking/reconciliations/edit.blade.php | 16 +++++++------- 2 files changed, 20 insertions(+), 17 deletions(-) diff --git a/resources/views/banking/reconciliations/create.blade.php b/resources/views/banking/reconciliations/create.blade.php index 6cfcb8a90..a84f7b958 100644 --- a/resources/views/banking/reconciliations/create.blade.php +++ b/resources/views/banking/reconciliations/create.blade.php @@ -51,7 +51,10 @@ :currency="$currency" /> - +
- + {{ trans('reconciliations.opening_balance') }}: - + @@ -179,11 +182,11 @@ - + {{ trans('reconciliations.closing_balance') }}: - + - + {{ trans('reconciliations.cleared_amount') }}: - + - + {{ trans('general.difference') }} - +
- + {{ trans('reconciliations.opening_balance') }}: - + @@ -117,11 +117,11 @@ - + {{ trans('reconciliations.closing_balance') }}: - + - + {{ trans('reconciliations.cleared_amount') }}: - + - + {{ trans('general.difference') }} - +
Date: Wed, 27 Jul 2022 10:10:34 +0300 Subject: [PATCH 10/22] parent category column default disabled.. --- resources/views/modals/categories/create.blade.php | 2 +- resources/views/settings/categories/create.blade.php | 2 +- resources/views/settings/categories/edit.blade.php | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/resources/views/modals/categories/create.blade.php b/resources/views/modals/categories/create.blade.php index bf57ce287..1b6d1de36 100644 --- a/resources/views/modals/categories/create.blade.php +++ b/resources/views/modals/categories/create.blade.php @@ -4,7 +4,7 @@ - + diff --git a/resources/views/settings/categories/create.blade.php b/resources/views/settings/categories/create.blade.php index bdd193f23..e681c0703 100644 --- a/resources/views/settings/categories/create.blade.php +++ b/resources/views/settings/categories/create.blade.php @@ -24,7 +24,7 @@ - + diff --git a/resources/views/settings/categories/edit.blade.php b/resources/views/settings/categories/edit.blade.php index 5ba5f3847..96d7f0beb 100644 --- a/resources/views/settings/categories/edit.blade.php +++ b/resources/views/settings/categories/edit.blade.php @@ -24,7 +24,7 @@ @endif - + From 1dfd3b77221ea69e6a146891651b71ebeca38df0 Mon Sep 17 00:00:00 2001 From: Burak Civan Date: Wed, 27 Jul 2022 10:18:32 +0300 Subject: [PATCH 11/22] css file compiled --- public/css/app.css | 12822 ++++++++++++++++++++++++++++++++++++++++--- 1 file changed, 12107 insertions(+), 715 deletions(-) diff --git a/public/css/app.css b/public/css/app.css index 28e34acc2..25e2f7537 100644 --- a/public/css/app.css +++ b/public/css/app.css @@ -1221,7 +1221,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{ @@ -15191,13 +15191,15 @@ 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)); @@ -15242,6 +15244,50 @@ 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)); @@ -15282,6 +15328,126 @@ 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)); @@ -15370,6 +15536,46 @@ 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)); @@ -15410,6 +15616,46 @@ 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)); @@ -15454,6 +15700,46 @@ 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)); @@ -15494,6 +15780,86 @@ 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)); @@ -15578,6 +15944,46 @@ 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)); @@ -15622,6 +16028,46 @@ 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)); @@ -15662,30 +16108,6 @@ 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)); @@ -15730,6 +16152,30 @@ 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)); @@ -16452,13 +16898,15 @@ 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)); @@ -16503,6 +16951,50 @@ 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)); @@ -16543,6 +17035,126 @@ 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)); @@ -16631,6 +17243,46 @@ 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)); @@ -16671,6 +17323,46 @@ 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)); @@ -16715,6 +17407,46 @@ 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)); @@ -16755,6 +17487,86 @@ 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)); @@ -16839,6 +17651,46 @@ 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)); @@ -16883,6 +17735,46 @@ 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)); @@ -16923,30 +17815,6 @@ 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)); @@ -16991,6 +17859,30 @@ 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)); @@ -17082,15 +17974,18 @@ 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)); @@ -17146,6 +18041,61 @@ 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)); @@ -17196,6 +18146,156 @@ 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)); @@ -17306,6 +18406,56 @@ 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)); @@ -17356,6 +18506,56 @@ 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)); @@ -17411,6 +18611,56 @@ 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)); @@ -17461,6 +18711,106 @@ 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)); @@ -17566,6 +18916,56 @@ 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)); @@ -17621,6 +19021,56 @@ 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)); @@ -17671,36 +19121,6 @@ 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)); @@ -17756,6 +19176,36 @@ 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)); @@ -17870,15 +19320,18 @@ 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)); @@ -17934,6 +19387,61 @@ 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)); @@ -17984,6 +19492,156 @@ 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)); @@ -18094,6 +19752,56 @@ 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)); @@ -18144,6 +19852,56 @@ 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)); @@ -18199,6 +19957,56 @@ 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)); @@ -18249,6 +20057,106 @@ 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)); @@ -18354,6 +20262,56 @@ 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)); @@ -18409,6 +20367,56 @@ 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)); @@ -18459,36 +20467,6 @@ 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)); @@ -18544,6 +20522,36 @@ 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)); @@ -18658,13 +20666,15 @@ 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)); @@ -18709,6 +20719,50 @@ 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)); @@ -18749,6 +20803,126 @@ 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)); @@ -18837,6 +21011,46 @@ 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)); @@ -18877,6 +21091,46 @@ 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)); @@ -18921,6 +21175,46 @@ 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)); @@ -18961,6 +21255,86 @@ 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)); @@ -19045,6 +21419,46 @@ 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)); @@ -19089,6 +21503,46 @@ 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)); @@ -19129,30 +21583,6 @@ 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)); @@ -19197,6 +21627,30 @@ 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)); @@ -19288,13 +21742,15 @@ 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)); @@ -19339,6 +21795,50 @@ 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)); @@ -19379,6 +21879,126 @@ 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)); @@ -19467,6 +22087,46 @@ 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)); @@ -19507,6 +22167,46 @@ 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)); @@ -19551,6 +22251,46 @@ 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)); @@ -19591,6 +22331,86 @@ 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)); @@ -19675,6 +22495,46 @@ 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)); @@ -19719,6 +22579,46 @@ 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)); @@ -19759,30 +22659,6 @@ 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)); @@ -19827,6 +22703,30 @@ 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)); @@ -19918,13 +22818,15 @@ 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)); @@ -19969,6 +22871,50 @@ 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)); @@ -20009,6 +22955,126 @@ 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)); @@ -20097,6 +23163,46 @@ 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)); @@ -20137,6 +23243,46 @@ 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)); @@ -20181,6 +23327,46 @@ 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)); @@ -20221,6 +23407,86 @@ 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)); @@ -20305,6 +23571,46 @@ 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)); @@ -20349,6 +23655,46 @@ 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)); @@ -20389,30 +23735,6 @@ 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)); @@ -20457,6 +23779,30 @@ 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)); @@ -20548,13 +23894,15 @@ 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)); @@ -20599,6 +23947,50 @@ 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)); @@ -20639,6 +24031,126 @@ 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)); @@ -20727,6 +24239,46 @@ 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)); @@ -20767,6 +24319,46 @@ 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)); @@ -20811,6 +24403,46 @@ 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)); @@ -20851,6 +24483,86 @@ 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)); @@ -20935,6 +24647,46 @@ 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)); @@ -20979,6 +24731,46 @@ 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)); @@ -21019,30 +24811,6 @@ 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)); @@ -21087,6 +24855,30 @@ 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)); @@ -21223,13 +25015,15 @@ 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)); @@ -21274,6 +25068,50 @@ 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)); @@ -21314,6 +25152,126 @@ 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)); @@ -21402,6 +25360,46 @@ 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)); @@ -21442,6 +25440,46 @@ 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)); @@ -21486,6 +25524,46 @@ 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)); @@ -21526,6 +25604,86 @@ 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)); @@ -21610,6 +25768,46 @@ 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)); @@ -21654,6 +25852,46 @@ 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)); @@ -21694,30 +25932,6 @@ 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)); @@ -21762,6 +25976,30 @@ 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)); @@ -21933,14 +26171,18 @@ 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)); @@ -21985,6 +26227,50 @@ 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)); @@ -22025,6 +26311,126 @@ 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)); @@ -22113,6 +26519,46 @@ 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)); @@ -22153,6 +26599,46 @@ 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)); @@ -22197,6 +26683,46 @@ 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)); @@ -22237,6 +26763,86 @@ 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)); @@ -22321,6 +26927,46 @@ 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)); @@ -22365,6 +27011,46 @@ 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)); @@ -22405,30 +27091,6 @@ 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)); @@ -22473,6 +27135,30 @@ 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)); @@ -22565,12 +27251,15 @@ 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)); } @@ -22604,6 +27293,39 @@ 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)); } @@ -22634,6 +27356,96 @@ 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)); } @@ -22700,6 +27512,36 @@ 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)); } @@ -22730,6 +27572,36 @@ 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)); } @@ -22763,6 +27635,36 @@ 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)); } @@ -22793,6 +27695,66 @@ 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)); } @@ -22856,6 +27818,36 @@ 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)); } @@ -22889,6 +27881,36 @@ 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)); } @@ -22919,24 +27941,6 @@ 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)); } @@ -22970,6 +27974,24 @@ 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)); } @@ -23039,12 +28061,15 @@ 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; } @@ -23078,6 +28103,39 @@ 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; } @@ -23108,6 +28166,96 @@ 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; } @@ -23174,6 +28322,36 @@ 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; } @@ -23204,6 +28382,36 @@ 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; } @@ -23237,6 +28445,36 @@ 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; } @@ -23267,6 +28505,66 @@ 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; } @@ -23330,6 +28628,36 @@ 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; } @@ -23363,6 +28691,36 @@ 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; } @@ -23393,24 +28751,6 @@ 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; } @@ -23444,6 +28784,24 @@ 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; } @@ -23623,12 +28981,15 @@ 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; } @@ -23662,6 +29023,39 @@ 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; } @@ -23692,6 +29086,96 @@ 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; } @@ -23758,6 +29242,36 @@ 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; } @@ -23788,6 +29302,36 @@ 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; } @@ -23821,6 +29365,36 @@ 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; } @@ -23851,6 +29425,66 @@ 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; } @@ -23914,6 +29548,36 @@ 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; } @@ -23947,6 +29611,36 @@ 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; } @@ -23977,24 +29671,6 @@ 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; } @@ -24028,6 +29704,24 @@ 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; } @@ -24097,12 +29791,15 @@ 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; } @@ -24136,6 +29833,39 @@ 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; } @@ -24166,6 +29896,96 @@ 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; } @@ -24232,6 +30052,36 @@ 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; } @@ -24262,6 +30112,36 @@ 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; } @@ -24295,6 +30175,36 @@ 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; } @@ -24325,6 +30235,66 @@ 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; } @@ -24388,6 +30358,36 @@ 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; } @@ -24421,6 +30421,36 @@ 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; } @@ -24451,24 +30481,6 @@ 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; } @@ -24502,6 +30514,24 @@ 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; } @@ -26167,13 +32197,15 @@ 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)); @@ -26218,6 +32250,50 @@ 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)); @@ -26258,6 +32334,126 @@ 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)); @@ -26346,6 +32542,46 @@ 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)); @@ -26386,6 +32622,46 @@ 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)); @@ -26430,6 +32706,46 @@ 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)); @@ -26470,6 +32786,86 @@ 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)); @@ -26554,6 +32950,46 @@ 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)); @@ -26598,6 +33034,46 @@ 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)); @@ -26638,30 +33114,6 @@ 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)); @@ -26706,6 +33158,30 @@ 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)); @@ -26858,14 +33334,18 @@ 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; @@ -26910,6 +33390,50 @@ 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; @@ -26950,6 +33474,126 @@ 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; @@ -27038,6 +33682,46 @@ 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; @@ -27078,6 +33762,46 @@ 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; @@ -27122,6 +33846,46 @@ 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; @@ -27162,6 +33926,86 @@ 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; @@ -27246,6 +34090,46 @@ 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; @@ -27290,6 +34174,46 @@ 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; @@ -27330,30 +34254,6 @@ 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; @@ -27398,6 +34298,30 @@ 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; @@ -27557,6 +34481,36 @@ 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; } @@ -27572,26 +34526,6 @@ 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)); @@ -27812,6 +34746,226 @@ 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)); @@ -28012,6 +35166,606 @@ 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)); @@ -28452,6 +36206,206 @@ 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)); @@ -28652,6 +36606,206 @@ 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)); @@ -28872,6 +37026,206 @@ 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)); @@ -29072,6 +37426,406 @@ 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)); @@ -29492,6 +38246,206 @@ 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)); @@ -29712,6 +38666,206 @@ 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)); @@ -29912,126 +39066,6 @@ 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)); @@ -30252,6 +39286,126 @@ 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)); @@ -30932,12 +40086,15 @@ 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; } @@ -30971,6 +40128,39 @@ 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; } @@ -31001,6 +40191,96 @@ 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; } @@ -31067,6 +40347,36 @@ 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; } @@ -31097,6 +40407,36 @@ 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; } @@ -31130,6 +40470,36 @@ 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; } @@ -31160,6 +40530,66 @@ 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; } @@ -31223,6 +40653,36 @@ 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; } @@ -31256,6 +40716,36 @@ 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; } @@ -31286,24 +40776,6 @@ 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; } @@ -31337,6 +40809,24 @@ 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; } @@ -31406,12 +40896,15 @@ 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; } @@ -31445,6 +40938,39 @@ 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; } @@ -31475,6 +41001,96 @@ 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; } @@ -31541,6 +41157,36 @@ 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; } @@ -31571,6 +41217,36 @@ 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; } @@ -31604,6 +41280,36 @@ 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; } @@ -31634,6 +41340,66 @@ 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; } @@ -31697,6 +41463,36 @@ 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; } @@ -31730,6 +41526,36 @@ 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; } @@ -31760,24 +41586,6 @@ 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; } @@ -31811,6 +41619,24 @@ 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; } @@ -32078,12 +41904,16 @@ 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-transparent{ - --tw-shadow-color: transparent; +.shadow-inherit{ + --tw-shadow-color: inherit; --tw-shadow: var(--tw-shadow-colored); } -.shadow-white{ - --tw-shadow-color: #ffffff; +.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-black-50{ @@ -32130,6 +41960,50 @@ 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); @@ -32170,6 +42044,126 @@ 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); @@ -32258,6 +42252,46 @@ 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); @@ -32298,6 +42332,46 @@ 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); @@ -32342,6 +42416,46 @@ 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); @@ -32382,6 +42496,86 @@ 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); @@ -32466,6 +42660,46 @@ 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); @@ -32510,6 +42744,46 @@ 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); @@ -32550,30 +42824,6 @@ 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); @@ -32618,6 +42868,30 @@ 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); @@ -32762,12 +43036,15 @@ 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; } @@ -32801,6 +43078,39 @@ 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; } @@ -32831,6 +43141,96 @@ 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; } @@ -32897,6 +43297,36 @@ 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; } @@ -32927,6 +43357,36 @@ 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; } @@ -32960,6 +43420,36 @@ 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; } @@ -32990,6 +43480,66 @@ 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; } @@ -33053,6 +43603,36 @@ 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; } @@ -33086,6 +43666,36 @@ 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; } @@ -33116,24 +43726,6 @@ 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; } @@ -33167,6 +43759,24 @@ 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; } @@ -33275,13 +43885,15 @@ 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)); @@ -33326,6 +43938,50 @@ 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)); @@ -33366,6 +44022,126 @@ 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)); @@ -33454,6 +44230,46 @@ 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)); @@ -33494,6 +44310,46 @@ 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)); @@ -33538,6 +44394,46 @@ 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)); @@ -33578,6 +44474,86 @@ 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)); @@ -33662,6 +44638,46 @@ 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)); @@ -33706,6 +44722,46 @@ 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)); @@ -33746,30 +44802,6 @@ 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)); @@ -33814,6 +44846,30 @@ 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)); @@ -33965,12 +45021,15 @@ 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; } @@ -34004,6 +45063,39 @@ 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; } @@ -34034,6 +45126,96 @@ 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; } @@ -34100,6 +45282,36 @@ 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; } @@ -34130,6 +45342,36 @@ 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; } @@ -34163,6 +45405,36 @@ 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; } @@ -34193,6 +45465,66 @@ 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; } @@ -34256,6 +45588,36 @@ 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; } @@ -34289,6 +45651,36 @@ 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; } @@ -34319,24 +45711,6 @@ 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; } @@ -34370,6 +45744,24 @@ 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; } From 3b4dbf3ee5e13e66562332e1d517c756c12529da Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=BCneyt=20=C5=9Eent=C3=BCrk?= Date: Wed, 27 Jul 2022 10:30:34 +0300 Subject: [PATCH 12/22] quick category changes.. --- app/Http/Controllers/Modals/Categories.php | 12 ++++------ .../js/components/AkauntingModalAddNew.vue | 24 ------------------- .../views/modals/categories/create.blade.php | 4 +--- 3 files changed, 5 insertions(+), 35 deletions(-) diff --git a/app/Http/Controllers/Modals/Categories.php b/app/Http/Controllers/Modals/Categories.php index 11a422bfa..2e49a77d1 100644 --- a/app/Http/Controllers/Modals/Categories.php +++ b/app/Http/Controllers/Modals/Categories.php @@ -31,18 +31,14 @@ class Categories extends Controller { $type = $request->get('type', 'item'); - $categories = []; + $categories = collect(); - foreach (config('type.category') as $type => $config) { - $categories[$type] = []; - } - - Category::enabled()->orderBy('name')->get()->each(function ($category) use (&$categories) { - $categories[$category->type][] = [ + Category::type($type)->enabled()->orderBy('name')->get()->each(function ($category) use (&$categories) { + $categories->push([ 'id' => $category->id, 'title' => $category->name, 'level' => $category->level, - ]; + ]); }); $html = view('modals.categories.create', compact('type', 'categories'))->render(); diff --git a/resources/assets/js/components/AkauntingModalAddNew.vue b/resources/assets/js/components/AkauntingModalAddNew.vue index 7225d8481..1846ca549 100644 --- a/resources/assets/js/components/AkauntingModalAddNew.vue +++ b/resources/assets/js/components/AkauntingModalAddNew.vue @@ -228,8 +228,6 @@ export default { '#efef32' ], min_date: false, - categoriesBasedTypes: null, - isParentCategoryDisabled: true, } }, @@ -290,28 +288,6 @@ export default { .catch(error => { }); }, - - updateParentCategories(event) { - if (event === '') { - return; - } - - if (typeof JSON.parse(this.form.categories)[event] === 'undefined') { - this.categoriesBasedTypes = []; - this.isParentCategoryDisabled = true; - - return; - } - - if (this.form.parent_category_id) { - this.form.parent_category_id = null; - - return; - } - - this.categoriesBasedTypes = JSON.parse(this.form.categories)[event]; - this.isParentCategoryDisabled = false; - }, } }) }); diff --git a/resources/views/modals/categories/create.blade.php b/resources/views/modals/categories/create.blade.php index 1b6d1de36..f1f4e24ad 100644 --- a/resources/views/modals/categories/create.blade.php +++ b/resources/views/modals/categories/create.blade.php @@ -4,9 +4,7 @@ - - - + From 8f54a87d14ee9c9db3325aa900f5e722485f509d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Denis=20Duli=C3=A7i?= Date: Wed, 27 Jul 2022 10:48:01 +0300 Subject: [PATCH 13/22] show a warning if transfer is deleted --- app/Models/Banking/Transaction.php | 1 - config/type.php | 51 +++++++++++++++++++ resources/lang/en-GB/invoices.php | 2 +- resources/lang/en-GB/messages.php | 1 + .../transactions/show/transfer.blade.php | 43 ++++++++++------ 5 files changed, 81 insertions(+), 17 deletions(-) diff --git a/app/Models/Banking/Transaction.php b/app/Models/Banking/Transaction.php index 9563bcf34..5f5505484 100644 --- a/app/Models/Banking/Transaction.php +++ b/app/Models/Banking/Transaction.php @@ -4,7 +4,6 @@ namespace App\Models\Banking; use App\Abstracts\Model; use App\Models\Common\Media as MediaModel; -use App\Models\Setting\Category; use App\Scopes\Transaction as Scope; use App\Traits\Currencies; use App\Traits\DateTime; diff --git a/config/type.php b/config/type.php index af729558d..6092fad27 100644 --- a/config/type.php +++ b/config/type.php @@ -320,6 +320,32 @@ return [ ], ], + Transaction::INCOME_TRANSFER_TYPE => [ + 'group' => 'banking', + 'route' => [ + 'prefix' => 'transactions', // core use with group + prefix, module ex. estimates + 'parameter' => 'transaction', // banking/transactions/{parameter}/edit + //'create' => 'transactions.create', // if you change route, you can write full path + ], + 'permission' => [ + 'prefix' => 'transactions', + //'create' => 'create-banking-transactions', + ], + 'translation' => [ + 'prefix' => 'transactions', // this translation file name. + 'related_document_amount' => 'invoices.invoice_amount', + 'transactions' => 'general.incomes', + ], + 'contact_type' => 'customer', + 'document_type' => 'invoice', + 'split_type' => Transaction::INCOME_SPLIT_TYPE, + 'email_template' => 'payment_received_customer', + 'script' => [ + 'folder' => 'banking', + 'file' => 'transactions', + ], + ], + Transaction::INCOME_RECURRING_TYPE => [ 'group' => 'banking', 'route' => [ @@ -373,6 +399,31 @@ return [ ], ], + Transaction::EXPENSE_TRANSFER_TYPE => [ + 'group' => 'banking', + 'route' => [ + 'prefix' => 'transactions', // core use with group + prefix, module ex. estimates + 'parameter' => 'transaction', // banking/transactions/{parameter}/edit + //'create' => 'transactions.create', // if you change route, you can write full path + ], + 'permission' => [ + 'prefix' => 'transactions', + //'create' => 'create-banking-transactions', + ], + 'translation' => [ + 'prefix' => 'transactions', // this translation file name. + 'related_document_amount' => 'bills.bill_amount', + ], + 'contact_type' => 'vendor', + 'document_type' => 'bill', + 'split_type' => Transaction::EXPENSE_SPLIT_TYPE, + 'email_template' => 'payment_made_vendor', + 'script' => [ + 'folder' => 'banking', + 'file' => 'transactions', + ], + ], + Transaction::EXPENSE_RECURRING_TYPE => [ 'group' => 'banking', 'route' => [ diff --git a/resources/lang/en-GB/invoices.php b/resources/lang/en-GB/invoices.php index cd1448388..058920cbf 100644 --- a/resources/lang/en-GB/invoices.php +++ b/resources/lang/en-GB/invoices.php @@ -79,7 +79,7 @@ return [ ], 'sticky' => [ - 'description' => 'You are previewing how your customer will see the web version of your invoice.', + 'description' => 'You are previewing how your customer will see the web version of your invoice.', ], ]; diff --git a/resources/lang/en-GB/messages.php b/resources/lang/en-GB/messages.php index 80f1c0ec6..4652bc0cc 100644 --- a/resources/lang/en-GB/messages.php +++ b/resources/lang/en-GB/messages.php @@ -41,6 +41,7 @@ return [ 'reconciled_doc' => 'Warning: You are not allowed to change/delete :type because it has reconciled transactions!', 'disable_code' => 'Warning: You are not allowed to disable or change the currency of :name because it has :text related.', 'payment_cancel' => 'Warning: You have cancelled your recent :method payment!', + 'missing_transfer' => 'Warning: The transfer related to this transaction is missing. You should consider deleting this transaction.', ], ]; diff --git a/resources/views/components/transactions/show/transfer.blade.php b/resources/views/components/transactions/show/transfer.blade.php index 80b103c4b..46dcc143d 100644 --- a/resources/views/components/transactions/show/transfer.blade.php +++ b/resources/views/components/transactions/show/transfer.blade.php @@ -1,10 +1,15 @@ @if ($transaction->isTransferTransaction()) - @php - $from_account = '' . $transaction->transfer->expense_account->title . ''; - $to_account = '' . $transaction->transfer->income_account->title . ''; - @endphp + @php $transfer = $transaction->transfer; @endphp -
+ @if ($transfer) + @php + $from_account = '' . $transfer->expense_account->title . ''; + $to_account = '' . $transfer->income_account->title . ''; + $date = '' . company_date($transaction->paid_at) . ''; + @endphp + @endif + +
@endif From c47c5ed96b1c73d83f8555cc36e4950d8e67b290 Mon Sep 17 00:00:00 2001 From: Burak Civan Date: Wed, 27 Jul 2022 11:27:57 +0300 Subject: [PATCH 14/22] conversion ejected for reconcile inputs --- .../assets/js/views/banking/reconciliations.js | 14 -------------- .../views/banking/reconciliations/create.blade.php | 6 +++--- .../views/banking/reconciliations/edit.blade.php | 6 +++--- 3 files changed, 6 insertions(+), 20 deletions(-) diff --git a/resources/assets/js/views/banking/reconciliations.js b/resources/assets/js/views/banking/reconciliations.js index 09f57d81b..713e56320 100644 --- a/resources/assets/js/views/banking/reconciliations.js +++ b/resources/assets/js/views/banking/reconciliations.js @@ -48,26 +48,12 @@ const app = new Vue({ if (this.form._method == 'PATCH') { this.onCalculate(); } - - this.currencyConversion(); }, methods:{ setDueMinDate(date) { this.min_due_date = date; }, - - currencyConversion() { - setTimeout(() => { - if (document.querySelectorAll('.js-conversion-input')) { - let currency_input = document.querySelectorAll('.js-conversion-input'); - - for (let input of currency_input) { - input.setAttribute('size', input.value.length); - } - } - }, 250) - }, onReconcilition() { let form = document.getElementById('form-create-reconciliation'); diff --git a/resources/views/banking/reconciliations/create.blade.php b/resources/views/banking/reconciliations/create.blade.php index a84f7b958..a6f630869 100644 --- a/resources/views/banking/reconciliations/create.blade.php +++ b/resources/views/banking/reconciliations/create.blade.php @@ -195,7 +195,7 @@ v-model="totals.closing_balance" :currency="$currency" dynamicCurrency="currency" - money-class="text-right disabled-money banking-price-text w-auto position-absolute right-4 ltr:pr-0 rtl:pl-0 text-sm js-conversion-input" + money-class="text-right disabled-money banking-price-text w-auto position-absolute right-4 ltr:pr-0 rtl:pl-0 text-sm" form-group-class="text-right disabled-money" /> @@ -215,7 +215,7 @@ v-model="totals.cleared_amount" :currency="$currency" dynamicCurrency="currency" - money-class="text-right disabled-money banking-price-text w-auto position-absolute right-4 ltr:pr-0 rtl:pl-0 text-sm js-conversion-input" + money-class="text-right disabled-money banking-price-text w-auto position-absolute right-4 ltr:pr-0 rtl:pl-0 text-sm" form-group-class="text-right disabled-money" /> @@ -238,7 +238,7 @@ v-model="totals.difference" :currency="$currency" dynamicCurrency="currency" - money-class="text-right disabled-money banking-price-text w-auto position-absolute right-4 ltr:pr-0 rtl:pl-0 text-sm js-conversion-input" + money-class="text-right disabled-money banking-price-text w-auto position-absolute right-4 ltr:pr-0 rtl:pl-0 text-sm" form-group-class="text-right disabled-money" />
diff --git a/resources/views/banking/reconciliations/edit.blade.php b/resources/views/banking/reconciliations/edit.blade.php index 595db69f7..9c5f2d3e8 100644 --- a/resources/views/banking/reconciliations/edit.blade.php +++ b/resources/views/banking/reconciliations/edit.blade.php @@ -130,7 +130,7 @@ v-model="totals.closing_balance" :currency="$currency" dynamicCurrency="currency" - money-class="text-right disabled-money banking-price-text w-auto position-absolute right-4 ltr:pr-0 rtl:pl-0 text-sm js-conversion-input" + money-class="text-right disabled-money banking-price-text w-auto position-absolute right-4 ltr:pr-0 rtl:pl-0 text-sm" form-group-class="text-right disabled-money" /> @@ -150,7 +150,7 @@ v-model="totals.cleared_amount" :currency="$currency" dynamicCurrency="currency" - money-class="text-right disabled-money banking-price-text w-auto position-absolute right-4 ltr:pr-0 rtl:pl-0 text-sm js-conversion-input" + money-class="text-right disabled-money banking-price-text w-auto position-absolute right-4 ltr:pr-0 rtl:pl-0 text-sm" form-group-class="text-right disabled-money" /> @@ -173,7 +173,7 @@ v-model="totals.difference" :currency="$currency" dynamicCurrency="currency" - money-class="text-right disabled-money banking-price-text w-auto position-absolute right-4 ltr:pr-0 rtl:pl-0 text-sm js-conversion-input" + money-class="text-right disabled-money banking-price-text w-auto position-absolute right-4 ltr:pr-0 rtl:pl-0 text-sm" form-group-class="text-right disabled-money" />
From cb40c63b222bcb3b453a6f6e4b8b66b2f0580963 Mon Sep 17 00:00:00 2001 From: Burak Civan Date: Wed, 27 Jul 2022 11:29:25 +0300 Subject: [PATCH 15/22] Update create.blade.php --- resources/views/banking/reconciliations/create.blade.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/resources/views/banking/reconciliations/create.blade.php b/resources/views/banking/reconciliations/create.blade.php index a84f7b958..a6f630869 100644 --- a/resources/views/banking/reconciliations/create.blade.php +++ b/resources/views/banking/reconciliations/create.blade.php @@ -195,7 +195,7 @@ v-model="totals.closing_balance" :currency="$currency" dynamicCurrency="currency" - money-class="text-right disabled-money banking-price-text w-auto position-absolute right-4 ltr:pr-0 rtl:pl-0 text-sm js-conversion-input" + money-class="text-right disabled-money banking-price-text w-auto position-absolute right-4 ltr:pr-0 rtl:pl-0 text-sm" form-group-class="text-right disabled-money" /> @@ -215,7 +215,7 @@ v-model="totals.cleared_amount" :currency="$currency" dynamicCurrency="currency" - money-class="text-right disabled-money banking-price-text w-auto position-absolute right-4 ltr:pr-0 rtl:pl-0 text-sm js-conversion-input" + money-class="text-right disabled-money banking-price-text w-auto position-absolute right-4 ltr:pr-0 rtl:pl-0 text-sm" form-group-class="text-right disabled-money" /> @@ -238,7 +238,7 @@ v-model="totals.difference" :currency="$currency" dynamicCurrency="currency" - money-class="text-right disabled-money banking-price-text w-auto position-absolute right-4 ltr:pr-0 rtl:pl-0 text-sm js-conversion-input" + money-class="text-right disabled-money banking-price-text w-auto position-absolute right-4 ltr:pr-0 rtl:pl-0 text-sm" form-group-class="text-right disabled-money" />
From 605576449424462cd406086989e0a0e4ec4f7563 Mon Sep 17 00:00:00 2001 From: Burak Civan Date: Wed, 27 Jul 2022 11:29:44 +0300 Subject: [PATCH 16/22] Update edit.blade.php --- resources/views/banking/reconciliations/edit.blade.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/resources/views/banking/reconciliations/edit.blade.php b/resources/views/banking/reconciliations/edit.blade.php index 595db69f7..9c5f2d3e8 100644 --- a/resources/views/banking/reconciliations/edit.blade.php +++ b/resources/views/banking/reconciliations/edit.blade.php @@ -130,7 +130,7 @@ v-model="totals.closing_balance" :currency="$currency" dynamicCurrency="currency" - money-class="text-right disabled-money banking-price-text w-auto position-absolute right-4 ltr:pr-0 rtl:pl-0 text-sm js-conversion-input" + money-class="text-right disabled-money banking-price-text w-auto position-absolute right-4 ltr:pr-0 rtl:pl-0 text-sm" form-group-class="text-right disabled-money" /> @@ -150,7 +150,7 @@ v-model="totals.cleared_amount" :currency="$currency" dynamicCurrency="currency" - money-class="text-right disabled-money banking-price-text w-auto position-absolute right-4 ltr:pr-0 rtl:pl-0 text-sm js-conversion-input" + money-class="text-right disabled-money banking-price-text w-auto position-absolute right-4 ltr:pr-0 rtl:pl-0 text-sm" form-group-class="text-right disabled-money" /> @@ -173,7 +173,7 @@ v-model="totals.difference" :currency="$currency" dynamicCurrency="currency" - money-class="text-right disabled-money banking-price-text w-auto position-absolute right-4 ltr:pr-0 rtl:pl-0 text-sm js-conversion-input" + money-class="text-right disabled-money banking-price-text w-auto position-absolute right-4 ltr:pr-0 rtl:pl-0 text-sm" form-group-class="text-right disabled-money" /> From 838e9dd644a9448f63f7fa30fb9c4b931ea31ebe Mon Sep 17 00:00:00 2001 From: Burak Civan Date: Wed, 27 Jul 2022 11:30:26 +0300 Subject: [PATCH 17/22] Update reconciliations.js --- .../assets/js/views/banking/reconciliations.js | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/resources/assets/js/views/banking/reconciliations.js b/resources/assets/js/views/banking/reconciliations.js index 09f57d81b..713e56320 100644 --- a/resources/assets/js/views/banking/reconciliations.js +++ b/resources/assets/js/views/banking/reconciliations.js @@ -48,26 +48,12 @@ const app = new Vue({ if (this.form._method == 'PATCH') { this.onCalculate(); } - - this.currencyConversion(); }, methods:{ setDueMinDate(date) { this.min_due_date = date; }, - - currencyConversion() { - setTimeout(() => { - if (document.querySelectorAll('.js-conversion-input')) { - let currency_input = document.querySelectorAll('.js-conversion-input'); - - for (let input of currency_input) { - input.setAttribute('size', input.value.length); - } - } - }, 250) - }, onReconcilition() { let form = document.getElementById('form-create-reconciliation'); From 2e103092106646a487e010ec7eb470e5ca08cd04 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=BCneyt=20=C5=9Eent=C3=BCrk?= Date: Wed, 27 Jul 2022 11:34:08 +0300 Subject: [PATCH 18/22] apps my page fixed empty page message ( #337ymcn ) --- app/Http/Controllers/Modules/My.php | 8 +++++++- resources/views/modules/my/index.blade.php | 16 ++++++++++++++-- 2 files changed, 21 insertions(+), 3 deletions(-) diff --git a/app/Http/Controllers/Modules/My.php b/app/Http/Controllers/Modules/My.php index 0d082359e..880ecdc00 100644 --- a/app/Http/Controllers/Modules/My.php +++ b/app/Http/Controllers/Modules/My.php @@ -3,9 +3,12 @@ namespace App\Http\Controllers\Modules; use App\Abstracts\Http\Controller; +use App\Traits\Modules; class My extends Controller { + use Modules; + /** * Display a listing of the resource. * @@ -13,6 +16,9 @@ class My extends Controller */ public function index() { - return $this->response('modules.my.index'); + $purchase = $this->getMyModules(['query' => ['limit' => 16]]); + $installed = $this->getInstalledModules(); + + return $this->response('modules.my.index', compact('purchase', 'installed')); } } diff --git a/resources/views/modules/my/index.blade.php b/resources/views/modules/my/index.blade.php index ff54bc29d..d213d85a6 100644 --- a/resources/views/modules/my/index.blade.php +++ b/resources/views/modules/my/index.blade.php @@ -14,9 +14,21 @@
- + @if (! empty($purchase) || ! empty($installed)) + - + + @else +
+
+

+ {{ trans('modules.my_apps') }} +

+
+ + +
+ @endif
From 9c2a472357d903bec1f1dae51a26b2bfc692f081 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=BCneyt=20=C5=9Eent=C3=BCrk?= Date: Wed, 27 Jul 2022 12:13:04 +0300 Subject: [PATCH 19/22] Reconcile action fixed.. --- .../js/views/banking/reconciliations.js | 10 +++++----- .../banking/reconciliations/create.blade.php | 19 ++++++++++--------- .../banking/reconciliations/edit.blade.php | 16 ++++++++-------- 3 files changed, 23 insertions(+), 22 deletions(-) diff --git a/resources/assets/js/views/banking/reconciliations.js b/resources/assets/js/views/banking/reconciliations.js index 713e56320..8fb684bd9 100644 --- a/resources/assets/js/views/banking/reconciliations.js +++ b/resources/assets/js/views/banking/reconciliations.js @@ -29,7 +29,7 @@ const app = new Vue({ return { form: new Form('reconciliation'), bulk_action: new BulkAction('reconciliations'), - reconcile: true, + reconcile: false, difference: null, totals: { closing_balance: 0, @@ -54,7 +54,7 @@ const app = new Vue({ setDueMinDate(date) { this.min_due_date = date; }, - + onReconcilition() { let form = document.getElementById('form-create-reconciliation'); @@ -64,7 +64,7 @@ const app = new Vue({ }, onCalculate() { - this.reconcile = true; + this.reconcile = false; this.difference = null; let transactions = this.form.transactions; @@ -106,10 +106,10 @@ const app = new Vue({ if (difference != 0) { this.difference = 'bg-orange-300'; - this.reconcile = true; + this.reconcile = false; } else { this.difference = 'bg-green-100'; - this.reconcile = false; + this.reconcile = true; } this.totals.cleared_amount = parseFloat(cleared_amount); diff --git a/resources/views/banking/reconciliations/create.blade.php b/resources/views/banking/reconciliations/create.blade.php index a6f630869..ea9f09cc8 100644 --- a/resources/views/banking/reconciliations/create.blade.php +++ b/resources/views/banking/reconciliations/create.blade.php @@ -267,37 +267,38 @@ class="flex items-center justify-center bg-transparent hover:bg-gray-200 px-3 py-1.5 text-base rounded-lg disabled:opacity-50" override="class" > - + {{ trans('reconciliations.save_draft') }} - -
+ +
- + {{ trans('reconciliations.reconcile') }}
+
- + {{ trans('reconciliations.reconcile') }} diff --git a/resources/views/banking/reconciliations/edit.blade.php b/resources/views/banking/reconciliations/edit.blade.php index 9c5f2d3e8..e068f7a98 100644 --- a/resources/views/banking/reconciliations/edit.blade.php +++ b/resources/views/banking/reconciliations/edit.blade.php @@ -203,22 +203,22 @@ class="relative flex items-center justify-center bg-transparent hover:bg-gray-200 px-3 py-1.5 text-base rounded-lg disabled:opacity-50" override="class" > - + {{ trans('general.save') }} -
+
- + {{ trans('reconciliations.reconcile') }} @@ -228,13 +228,13 @@
- + {{ trans('reconciliations.reconcile') }} From b34d62d2d77df9ababc1cb11f0319667f2a31e97 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Denis=20Duli=C3=A7i?= Date: Wed, 27 Jul 2022 12:50:57 +0300 Subject: [PATCH 20/22] composer lock --- composer.lock | 90 +++++++++++++++++++++++++-------------------------- 1 file changed, 44 insertions(+), 46 deletions(-) diff --git a/composer.lock b/composer.lock index acb285548..af3fbf0c1 100644 --- a/composer.lock +++ b/composer.lock @@ -413,16 +413,16 @@ }, { "name": "akaunting/laravel-money", - "version": "3.1.1", + "version": "3.1.2", "source": { "type": "git", "url": "https://github.com/akaunting/laravel-money.git", - "reference": "daf8ca8dc91b5a08d31dbf0788e2a4723185451f" + "reference": "cbc66d1dc457c169f6081e0ae6c661b499dad301" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/akaunting/laravel-money/zipball/daf8ca8dc91b5a08d31dbf0788e2a4723185451f", - "reference": "daf8ca8dc91b5a08d31dbf0788e2a4723185451f", + "url": "https://api.github.com/repos/akaunting/laravel-money/zipball/cbc66d1dc457c169f6081e0ae6c661b499dad301", + "reference": "cbc66d1dc457c169f6081e0ae6c661b499dad301", "shasum": "" }, "require": { @@ -475,9 +475,9 @@ ], "support": { "issues": "https://github.com/akaunting/laravel-money/issues", - "source": "https://github.com/akaunting/laravel-money/tree/3.1.1" + "source": "https://github.com/akaunting/laravel-money/tree/3.1.2" }, - "time": "2022-07-20T09:28:53+00:00" + "time": "2022-07-27T08:16:36+00:00" }, { "name": "akaunting/laravel-mutable-observer", @@ -907,16 +907,16 @@ }, { "name": "aws/aws-sdk-php", - "version": "3.231.9", + "version": "3.231.14", "source": { "type": "git", "url": "https://github.com/aws/aws-sdk-php.git", - "reference": "fbda3e544226b44f79ead89de78f220d30ef3796" + "reference": "6b79b9c8204813d9674ffa7badcd567d7f608165" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/aws/aws-sdk-php/zipball/fbda3e544226b44f79ead89de78f220d30ef3796", - "reference": "fbda3e544226b44f79ead89de78f220d30ef3796", + "url": "https://api.github.com/repos/aws/aws-sdk-php/zipball/6b79b9c8204813d9674ffa7badcd567d7f608165", + "reference": "6b79b9c8204813d9674ffa7badcd567d7f608165", "shasum": "" }, "require": { @@ -993,9 +993,9 @@ "support": { "forum": "https://forums.aws.amazon.com/forum.jspa?forumID=80", "issues": "https://github.com/aws/aws-sdk-php/issues", - "source": "https://github.com/aws/aws-sdk-php/tree/3.231.9" + "source": "https://github.com/aws/aws-sdk-php/tree/3.231.14" }, - "time": "2022-07-19T18:14:37+00:00" + "time": "2022-07-26T18:20:14+00:00" }, { "name": "balping/json-raw-encoder", @@ -4473,16 +4473,16 @@ }, { "name": "laravel/framework", - "version": "v9.21.0", + "version": "v9.22.1", "source": { "type": "git", "url": "https://github.com/laravel/framework.git", - "reference": "a8a529d371faaa38bde087aa6171a5b53a6a8760" + "reference": "b3b3dd43b9899f23df6d1d3e5390bd4662947a46" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laravel/framework/zipball/a8a529d371faaa38bde087aa6171a5b53a6a8760", - "reference": "a8a529d371faaa38bde087aa6171a5b53a6a8760", + "url": "https://api.github.com/repos/laravel/framework/zipball/b3b3dd43b9899f23df6d1d3e5390bd4662947a46", + "reference": "b3b3dd43b9899f23df6d1d3e5390bd4662947a46", "shasum": "" }, "require": { @@ -4649,7 +4649,7 @@ "issues": "https://github.com/laravel/framework/issues", "source": "https://github.com/laravel/framework" }, - "time": "2022-07-19T14:12:19+00:00" + "time": "2022-07-26T16:16:33+00:00" }, { "name": "laravel/sanctum", @@ -5227,16 +5227,16 @@ }, { "name": "league/flysystem", - "version": "3.1.1", + "version": "3.2.0", "source": { "type": "git", "url": "https://github.com/thephpleague/flysystem.git", - "reference": "1a941703dfb649f9b821e7bc425e782f576a805e" + "reference": "ed0ecc7f9b5c2f4a9872185846974a808a3b052a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/1a941703dfb649f9b821e7bc425e782f576a805e", - "reference": "1a941703dfb649f9b821e7bc425e782f576a805e", + "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/ed0ecc7f9b5c2f4a9872185846974a808a3b052a", + "reference": "ed0ecc7f9b5c2f4a9872185846974a808a3b052a", "shasum": "" }, "require": { @@ -5297,7 +5297,7 @@ ], "support": { "issues": "https://github.com/thephpleague/flysystem/issues", - "source": "https://github.com/thephpleague/flysystem/tree/3.1.1" + "source": "https://github.com/thephpleague/flysystem/tree/3.2.0" }, "funding": [ { @@ -5313,20 +5313,20 @@ "type": "tidelift" } ], - "time": "2022-07-18T09:59:40+00:00" + "time": "2022-07-26T07:26:36+00:00" }, { "name": "league/flysystem-aws-s3-v3", - "version": "3.1.1", + "version": "3.2.0", "source": { "type": "git", "url": "https://github.com/thephpleague/flysystem-aws-s3-v3.git", - "reference": "fa46ce9fbad9bfc73d8b160ffeb2c1793fe9c73b" + "reference": "257893ef7398b3c9255b26dff8b0118bb93fc5ff" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/thephpleague/flysystem-aws-s3-v3/zipball/fa46ce9fbad9bfc73d8b160ffeb2c1793fe9c73b", - "reference": "fa46ce9fbad9bfc73d8b160ffeb2c1793fe9c73b", + "url": "https://api.github.com/repos/thephpleague/flysystem-aws-s3-v3/zipball/257893ef7398b3c9255b26dff8b0118bb93fc5ff", + "reference": "257893ef7398b3c9255b26dff8b0118bb93fc5ff", "shasum": "" }, "require": { @@ -5367,7 +5367,7 @@ ], "support": { "issues": "https://github.com/thephpleague/flysystem-aws-s3-v3/issues", - "source": "https://github.com/thephpleague/flysystem-aws-s3-v3/tree/3.1.1" + "source": "https://github.com/thephpleague/flysystem-aws-s3-v3/tree/3.2.0" }, "funding": [ { @@ -5383,7 +5383,7 @@ "type": "tidelift" } ], - "time": "2022-07-18T09:31:34+00:00" + "time": "2022-07-26T07:22:40+00:00" }, { "name": "league/mime-type-detection", @@ -6231,16 +6231,16 @@ }, { "name": "monolog/monolog", - "version": "2.7.0", + "version": "2.8.0", "source": { "type": "git", "url": "https://github.com/Seldaek/monolog.git", - "reference": "5579edf28aee1190a798bfa5be8bc16c563bd524" + "reference": "720488632c590286b88b80e62aa3d3d551ad4a50" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Seldaek/monolog/zipball/5579edf28aee1190a798bfa5be8bc16c563bd524", - "reference": "5579edf28aee1190a798bfa5be8bc16c563bd524", + "url": "https://api.github.com/repos/Seldaek/monolog/zipball/720488632c590286b88b80e62aa3d3d551ad4a50", + "reference": "720488632c590286b88b80e62aa3d3d551ad4a50", "shasum": "" }, "require": { @@ -6260,11 +6260,10 @@ "guzzlehttp/psr7": "^2.2", "mongodb/mongodb": "^1.8", "php-amqplib/php-amqplib": "~2.4 || ^3", - "php-console/php-console": "^3.1.3", "phpspec/prophecy": "^1.15", "phpstan/phpstan": "^0.12.91", "phpunit/phpunit": "^8.5.14", - "predis/predis": "^1.1", + "predis/predis": "^1.1 || ^2.0", "rollbar/rollbar": "^1.3 || ^2 || ^3", "ruflin/elastica": "^7", "swiftmailer/swiftmailer": "^5.3|^6.0", @@ -6284,7 +6283,6 @@ "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server", "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)", "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib", - "php-console/php-console": "Allow sending log messages to Google Chrome", "rollbar/rollbar": "Allow sending log messages to Rollbar", "ruflin/elastica": "Allow sending log messages to an Elastic Search server" }, @@ -6319,7 +6317,7 @@ ], "support": { "issues": "https://github.com/Seldaek/monolog/issues", - "source": "https://github.com/Seldaek/monolog/tree/2.7.0" + "source": "https://github.com/Seldaek/monolog/tree/2.8.0" }, "funding": [ { @@ -6331,7 +6329,7 @@ "type": "tidelift" } ], - "time": "2022-06-09T08:59:12+00:00" + "time": "2022-07-24T11:55:47+00:00" }, { "name": "mtdowling/jmespath.php", @@ -11676,16 +11674,16 @@ }, { "name": "fakerphp/faker", - "version": "v1.19.0", + "version": "v1.20.0", "source": { "type": "git", "url": "https://github.com/FakerPHP/Faker.git", - "reference": "d7f08a622b3346766325488aa32ddc93ccdecc75" + "reference": "37f751c67a5372d4e26353bd9384bc03744ec77b" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/FakerPHP/Faker/zipball/d7f08a622b3346766325488aa32ddc93ccdecc75", - "reference": "d7f08a622b3346766325488aa32ddc93ccdecc75", + "url": "https://api.github.com/repos/FakerPHP/Faker/zipball/37f751c67a5372d4e26353bd9384bc03744ec77b", + "reference": "37f751c67a5372d4e26353bd9384bc03744ec77b", "shasum": "" }, "require": { @@ -11712,7 +11710,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-main": "v1.19-dev" + "dev-main": "v1.20-dev" } }, "autoload": { @@ -11737,9 +11735,9 @@ ], "support": { "issues": "https://github.com/FakerPHP/Faker/issues", - "source": "https://github.com/FakerPHP/Faker/tree/v1.19.0" + "source": "https://github.com/FakerPHP/Faker/tree/v1.20.0" }, - "time": "2022-02-02T17:38:57+00:00" + "time": "2022-07-20T13:12:54+00:00" }, { "name": "filp/whoops", @@ -14216,5 +14214,5 @@ "ext-zip": "*" }, "platform-dev": [], - "plugin-api-version": "2.3.0" + "plugin-api-version": "2.2.0" } From 5cf2961998f46a232de86a4eaf180cfc8bbb6ff1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=BCneyt=20=C5=9Eent=C3=BCrk?= Date: Wed, 27 Jul 2022 12:53:25 +0300 Subject: [PATCH 21/22] Fixed document item change tax ( #363ax08 ) --- resources/assets/js/views/common/documents.js | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/resources/assets/js/views/common/documents.js b/resources/assets/js/views/common/documents.js index cb52d67d6..0c791449e 100644 --- a/resources/assets/js/views/common/documents.js +++ b/resources/assets/js/views/common/documents.js @@ -163,10 +163,17 @@ const app = new Vue({ sub_total += item.total; grand_total += item.grand_total; + let item_tax_ids = []; + + item.tax_ids.forEach(function(item_tax, item_tax_index) { + item_tax_ids.push(item_tax.id); + }); + this.form.items[index].name = item.name; this.form.items[index].description = item.description; this.form.items[index].quantity = item.quantity; this.form.items[index].price = item.price; + this.form.items[index].tax_ids = item_tax_ids; this.form.items[index].discount = item.discount; this.form.items[index].discount_type = item.discount_type; this.form.items[index].total = item.total; @@ -263,6 +270,7 @@ const app = new Vue({ if (inclusives.length) { inclusives.forEach(function(inclusive) { + item.tax_ids[inclusive.tax_index].name = inclusive.tax_name; item.tax_ids[inclusive.tax_index].price = item.grand_total - (item.grand_total / (1 + inclusive.tax_rate / 100)); inclusive_tax_total += item.tax_ids[inclusive.tax_index].price; @@ -275,6 +283,7 @@ const app = new Vue({ if (fixed.length) { fixed.forEach(function(fixed) { + item.tax_ids[fixed.tax_index].name = fixed.tax_name; item.tax_ids[fixed.tax_index].price = fixed.tax_rate * item.quantity; total_tax_amount += item.tax_ids[fixed.tax_index].price; @@ -291,6 +300,7 @@ const app = new Vue({ if (normal.length) { normal.forEach(function(normal) { + item.tax_ids[normal.tax_index].name = normal.tax_name; item.tax_ids[normal.tax_index].price = price_for_tax * (normal.tax_rate / 100); total_tax_amount += item.tax_ids[normal.tax_index].price; @@ -301,6 +311,7 @@ const app = new Vue({ if (withholding.length) { withholding.forEach(function(withholding) { + item.tax_ids[withholding.tax_index].name = withholding.tax_name; item.tax_ids[withholding.tax_index].price = -(price_for_tax * (withholding.tax_rate / 100)); total_tax_amount += item.tax_ids[withholding.tax_index].price; @@ -313,6 +324,7 @@ const app = new Vue({ if (compounds.length) { compounds.forEach(function(compound) { + item.tax_ids[compound.tax_index].name = compound.tax_name; item.tax_ids[compound.tax_index].price = (item.grand_total / 100) * compound.tax_rate; totals_taxes = this.calculateTotalsTax(totals_taxes, compound.tax_id, compound.tax_name, item.tax_ids[compound.tax_index].price); @@ -449,6 +461,7 @@ const app = new Vue({ }, onSelectedTax(item_index) { + if (! this.tax_id) { return; } @@ -477,6 +490,7 @@ const app = new Vue({ } this.tax_id = ''; + this.items[item_index].add_tax = false; this.onCalculateTotal(); }, From 9d7cd71e09e914c41a4985abfe8e0bbeb46028dd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Denis=20Duli=C3=A7i?= Date: Wed, 27 Jul 2022 14:13:58 +0300 Subject: [PATCH 22/22] improved exception handler --- app/Exceptions/Handler.php | 68 +++++++++++++++++++++++----- resources/lang/en-GB/errors.php | 2 + resources/views/errors/403.blade.php | 6 +++ resources/views/errors/404.blade.php | 6 +++ resources/views/errors/500.blade.php | 6 +++ 5 files changed, 77 insertions(+), 11 deletions(-) diff --git a/app/Exceptions/Handler.php b/app/Exceptions/Handler.php index 8915373ed..b238b099e 100644 --- a/app/Exceptions/Handler.php +++ b/app/Exceptions/Handler.php @@ -2,6 +2,7 @@ namespace App\Exceptions; +use Akaunting\Money\Exceptions\UnexpectedAmountException; use App\Exceptions\Http\Resource as ResourceException; use Illuminate\Auth\AuthenticationException; use Illuminate\Database\Eloquent\ModelNotFoundException; @@ -10,6 +11,7 @@ use Illuminate\Http\Exceptions\ThrottleRequestsException; use Illuminate\Http\Response; use Illuminate\Support\Str; use Illuminate\Validation\ValidationException; +use Illuminate\View\ViewException; use Symfony\Component\Debug\Exception\FatalThrowableError; use Symfony\Component\HttpKernel\Exception\HttpExceptionInterface; use Symfony\Component\HttpKernel\Exception\NotFoundHttpException; @@ -17,21 +19,31 @@ use Throwable; class Handler extends ExceptionHandler { + /** + * A list of exception types with their corresponding custom log levels. + * + * @var array, \Psr\Log\LogLevel::*> + */ + protected $levels = [ + // + ]; + /** * A list of the exception types that are not reported. * - * @var array + * @var array> */ protected $dontReport = [ // ]; /** - * A list of the inputs that are never flashed for validation exceptions. + * A list of the inputs that are never flashed to the session on validation exceptions. * - * @var array + * @var array */ protected $dontFlash = [ + 'current_password', 'password', 'password_confirmation', ]; @@ -95,7 +107,9 @@ class Handler extends ExceptionHandler if ($exception instanceof NotFoundHttpException) { // ajax 404 json feedback if ($request->ajax()) { - return response()->json(['error' => 'Not Found'], 404); + return response()->json([ + 'error' => trans('errors.header.404'), + ], 404); } flash(trans('errors.body.page_not_found'))->error()->important(); @@ -109,7 +123,9 @@ class Handler extends ExceptionHandler if ($exception instanceof ModelNotFoundException) { // ajax 404 json feedback if ($request->ajax()) { - return response()->json(['error' => 'Not Found'], 404); + return response()->json([ + 'error' => trans('errors.header.404'), + ], 404); } try { @@ -130,7 +146,9 @@ class Handler extends ExceptionHandler if ($exception instanceof FatalThrowableError) { // ajax 500 json feedback if ($request->ajax()) { - return response()->json(['error' => 'Error Page'], 500); + return response()->json([ + 'error' => trans('errors.header.500'), + ], 500); } // normal 500 view page feedback @@ -140,7 +158,25 @@ class Handler extends ExceptionHandler if ($exception instanceof ThrottleRequestsException) { // ajax 500 json feedback if ($request->ajax()) { - return response()->json(['error' => $exception->getMessage()], 429); + return response()->json([ + 'error' => $exception->getMessage(), + ], 429); + } + } + + if ($exception instanceof ViewException) { + $real_exception = $this->getRealException($exception, ViewException::class); + + if ($real_exception instanceof UnexpectedAmountException) { + if ($request->ajax()) { + return response()->json([ + 'error' => trans('errors.message.amount'), + ], 500); + } + + return response()->view('errors.500', [ + 'message' => trans('errors.message.amount'), + ], 500); } } @@ -273,10 +309,6 @@ class Handler extends ExceptionHandler /** * Get the headers from the exception. - * - * @param Throwable $exception - * - * @return array */ protected function getHeaders(Throwable $exception): array { @@ -284,4 +316,18 @@ class Handler extends ExceptionHandler ? $exception->getHeaders() : []; } + + /** + * Get the real exception. + */ + protected function getRealException(Throwable $exception, string $current): Throwable + { + $previous = $exception->getPrevious() ?? $exception; + + while (($previous instanceof $current) && $previous->getPrevious()) { + $previous = $previous->getPrevious(); + } + + return $previous; + } } diff --git a/resources/lang/en-GB/errors.php b/resources/lang/en-GB/errors.php index dac3aa6f2..b9e41150f 100644 --- a/resources/lang/en-GB/errors.php +++ b/resources/lang/en-GB/errors.php @@ -19,5 +19,7 @@ return [ '404' => 'We could not find the page you were looking for.', '500' => 'We will work on fixing that right away.', 'record' => 'We could not find the record you were looking for.', + 'amount' => 'This page contains invalid amounts! Please, contact the system administrator.', ], + ]; diff --git a/resources/views/errors/403.blade.php b/resources/views/errors/403.blade.php index 7f2a06aea..0010199e2 100644 --- a/resources/views/errors/403.blade.php +++ b/resources/views/errors/403.blade.php @@ -14,6 +14,12 @@ {{ trans('errors.title.403') }} + @if (! empty($message)) + + {{ $message }} + + @endif + @php $landing_page = user() ? user()->getLandingPageOfUser() : route('login'); @endphp {{ trans('general.go_to_dashboard') }} diff --git a/resources/views/errors/404.blade.php b/resources/views/errors/404.blade.php index c35fd01e2..aa278940a 100644 --- a/resources/views/errors/404.blade.php +++ b/resources/views/errors/404.blade.php @@ -14,6 +14,12 @@ {{ trans('errors.title.404') }} + @if (! empty($message)) + + {{ $message }} + + @endif + @php $landing_page = user() ? user()->getLandingPageOfUser() : route('login'); @endphp {{ trans('general.go_to_dashboard') }} diff --git a/resources/views/errors/500.blade.php b/resources/views/errors/500.blade.php index 5ef9f5b4a..12f037609 100644 --- a/resources/views/errors/500.blade.php +++ b/resources/views/errors/500.blade.php @@ -14,6 +14,12 @@ {{ trans('errors.title.500') }} + @if (! empty($message)) + + {{ $message }} + + @endif + @php $landing_page = user() ? user()->getLandingPageOfUser() : route('login'); @endphp {{ trans('general.go_to_dashboard') }}