Skip to content

Commit

Permalink
Replace all text-gray-900 with text-neutral
Browse files Browse the repository at this point in the history
  • Loading branch information
JimmyHoenderdaal committed Aug 7, 2024
1 parent 6d2fb65 commit 6c684e1
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion resources/views/cart/coupon.blade.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<div class="bg-white rounded-lg border p-3">
<x-rapidez::title tag="h3" class="text-lg leading-6 font-medium text-gray-900 mb-5">
<x-rapidez::title tag="h3" class="text-lg leading-6 font-medium text-neutral mb-5">
@lang('Apply coupon code')
</x-rapidez::title>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
name="email"
type="email"
v-model="variables.email"
class="w-full min-w-0 appearance-none rounded-md border h-10 border-text-inactive bg-white py-2 px-4 text-base text-gray-900 placeholder-text-neutral shadow-sm focus:border-indigo-500 focus:placeholder-gray-400 focus:outline-none focus:ring-indigo-500"
class="w-full min-w-0 appearance-none rounded-md border h-10 border-text-inactive bg-white py-2 px-4 text-base text-neutral placeholder-text-neutral shadow-sm focus:border-indigo-500 focus:placeholder-gray-400 focus:outline-none focus:ring-indigo-500"
wrapperClass="flex-grow"
dusk="newsletter-email"
autocomplete="email"
Expand Down
2 changes: 1 addition & 1 deletion resources/views/listing/partials/filter/boolean.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
:component-id="filter.code"
:data-field="filter.code+(filter.type != 'int' ? '.keyword' : '')"
:inner-class="{
title: 'capitalize text-sm font-medium text-gray-900',
title: 'capitalize text-sm font-medium text-neutral',
count: 'text-gray-400',
list: '!max-h-full',
label: 'ml-1 text-sm text-gray-600'
Expand Down
2 changes: 1 addition & 1 deletion resources/views/listing/partials/filter/price.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
:react="{and: ['query-filter']}"
:show-filter="false"
:inner-class="{
title: 'capitalize text-sm font-medium text-gray-900',
title: 'capitalize text-sm font-medium text-neutral',
}"
:slider-options="{ dragOnClick: true, useKeyboard: false }"
u-r-l-params
Expand Down
2 changes: 1 addition & 1 deletion resources/views/listing/partials/filter/swatch.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
:component-id="filter.code"
:data-field="filter.super ? 'super_' + filter.code : filter.code"
:inner-class="{
title: 'capitalize text-sm font-medium text-gray-900',
title: 'capitalize text-sm font-medium text-neutral',
list: '!max-h-full flex flex-wrap',
}"
:title="filter.name.replace('_', ' ')"
Expand Down
2 changes: 1 addition & 1 deletion resources/views/listing/partials/item.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ class="mb-3 h-48 w-full rounded-t object-contain" :alt="item.name" :loading="con
/>
<x-rapidez::no-image v-else class="mb-3 h-48 rounded-t" />
<div class="px-2">
<div class="text-base font-medium text-gray-900">@{{ item.name }}</div>
<div class="text-base font-medium text-neutral">@{{ item.name }}</div>
@if (!Rapidez::config('catalog/frontend/show_swatches_in_product_list', 1))
<div class="flex items-center space-x-2">
<div class="font-semibold">@{{ (item.special_price || item.price) | price }}</div>
Expand Down
4 changes: 2 additions & 2 deletions resources/views/product/partials/images.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -42,10 +42,10 @@ class="max-h-full max-w-full"
/>
</a>
<button class="{{ config('rapidez.frontend.z-indexes.lightbox') }} top-1/2 left-3 -translate-y-1/2" :class="zoomed ? 'fixed' : 'absolute'" v-if="active" v-on:click="change(active-1)" aria-label="@lang('Prev')">
<x-heroicon-o-chevron-left class="h-8 w-8 text-gray-900" />
<x-heroicon-o-chevron-left class="h-8 w-8 text-neutral" />
</button>
<button class="{{ config('rapidez.frontend.z-indexes.lightbox') }} top-1/2 right-3 -translate-y-1/2" :class="zoomed ? 'fixed' : 'absolute'" v-if="active != images.length-1" v-on:click="change(active+1)" aria-label="@lang('Next')">
<x-heroicon-o-chevron-right class="h-8 w-8 text-gray-900" />
<x-heroicon-o-chevron-right class="h-8 w-8 text-neutral" />
</button>
</div>
<x-rapidez::no-image v-else class="h-96 rounded" />
Expand Down

0 comments on commit 6c684e1

Please sign in to comment.