Skip to content

Commit e0ef3ba

Browse files
alterando estilos
1 parent 4983b0e commit e0ef3ba

16 files changed

+18
-18
lines changed

public/assets/css/app.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
--textColor0: hsl(from var(--textColor) h s calc(l - 10));
44
--textColor1: hsl(from var(--textColor) h s calc(l - 20));
55

6-
--highlightColor: #559949;
6+
--highlightColor: #10b981;
77
--highlightColor0: hsl(from var(--highlightColor) h s calc(l - 10));
88
--highlightColor1: hsl(from var(--highlightColor) h s calc(l - 20));
99

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
@props(['value'])
22

3-
<label {{ $attributes->merge(['class' => 'font-medium text-sm text-gray-700']) }}>
3+
<label {{ $attributes->merge(['class' => 'font-medium text-sm text-stone-700']) }}>
44
{{ $value ?? $slot }}
55
</label>
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
@props(['disabled' => false])
22

3-
<input @disabled($disabled) type="color" {{ $attributes->merge(['class' => 'rounded p-1 w-full h-10 cursor-pointer border border-gray-200 bg-white shadow-sm']) }}>
3+
<input @disabled($disabled) type="color" {{ $attributes->merge(['class' => 'rounded p-1 w-full h-10 cursor-pointer border border-stone-300 bg-white shadow-sm hover:bg-stone-100 focus:border-emerald-500 focus:ring-emerald-500 focus:border-2']) }}>
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
<a {{ $attributes->merge(['class' => 'block w-full px-4 py-2 text-start text-sm leading-5 text-gray-700 hover:bg-gray-100 focus:outline-none focus:bg-gray-100 transition duration-150 ease-in-out']) }}>{{ $slot }}</a>
1+
<a {{ $attributes->merge(['class' => 'block w-full px-4 py-2 text-start text-sm leading-5 text-stone-700 hover:bg-stone-100 focus:outline-none focus:bg-stone-100 transition duration-150 ease-in-out']) }}>{{ $slot }}</a>
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
@props(['value'])
22

3-
<label {{ $attributes->merge(['class' => 'block font-medium text-sm text-gray-700']) }}>
3+
<label {{ $attributes->merge(['class' => 'block font-medium text-sm text-stone-700']) }}>
44
{{ $value ?? $slot }}
55
</label>

resources/views/components/layout.blade.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030

3131
<!--Footer container-->
3232
<footer
33-
class="flex flex-col items-center text-gray-700 text-center text-surface">
33+
class="flex flex-col items-center text-stone-700 text-center text-surface">
3434
<div class="w-full pt-4 bg-zinc-100">
3535
<!-- Social media icons container -->
3636
<div class="mb-4 flex justify-center space-x-2">
@@ -98,4 +98,4 @@ class="rounded-full bg-transparent p-3 font-medium uppercase leading-normal text
9898
<script src="{{ url('assets/js/jquery-3.7.1.min.js') }}"></script>
9999
<script src="{{ url('assets/js/script.js') }}"></script>
100100
</body>
101-
</html>
101+
</html>

resources/views/components/modal.blade.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ class="fixed inset-0 transform transition-all"
6060
x-transition:leave-start="opacity-100"
6161
x-transition:leave-end="opacity-0"
6262
>
63-
<div class="absolute inset-0 bg-gray-500 opacity-75"></div>
63+
<div class="absolute inset-0 bg-stone-500 opacity-75"></div>
6464
</div>
6565

6666
<div

resources/views/components/nav-link.blade.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33
@php
44
$classes = ($active ?? false)
5-
? 'inline-flex items-center px-1 border-b-2 border-indigo-400 text-lg font-medium leading-5 text-gray-900 focus:outline-none focus:border-indigo-700 transition duration-150 ease-in-out'
6-
: 'inline-flex items-center px-1 border-b-2 border-transparent text-lg font-medium leading-5 text-gray-500 hover:text-gray-700 hover:border-gray-300 focus:outline-none focus:text-gray-700 focus:border-gray-300 transition duration-150 ease-in-out';
5+
? 'inline-flex items-center px-1 border-b-2 border-indigo-400 text-lg font-medium leading-5 text-stone-900 focus:outline-none focus:border-indigo-700 transition duration-150 ease-in-out'
6+
: 'inline-flex items-center px-1 border-b-2 border-transparent text-lg font-medium leading-5 text-stone-500 hover:text-stone-700 hover:border-stone-300 focus:outline-none focus:text-stone-700 focus:border-stone-300 transition duration-150 ease-in-out';
77
@endphp
88

99
<a {{ $attributes->merge(['class' => $classes]) }}>
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
<button {{ $attributes->merge(['type' => 'submit', 'class' => 'inline-flex items-center px-4 py-2 bg-gray-800 border border-transparent rounded font-semibold text-xs text-white uppercase tracking-widest hover:bg-gray-700 focus:bg-gray-700 active:bg-gray-900 focus:outline-none focus:ring-2 focus:ring-indigo-500 focus:ring-offset-2 transition ease-in-out duration-150']) }}>
1+
<button {{ $attributes->merge(['type' => 'submit', 'class' => 'inline-flex items-center px-4 py-2 bg-stone-800 border border-transparent rounded font-semibold text-xs text-white uppercase tracking-widest hover:bg-stone-700 focus:bg-stone-700 active:bg-stone-900 focus:outline-none focus:ring-2 focus:ring-emerald-500 focus:ring-offset-2 transition ease-in-out duration-150']) }}>
22
{{ $slot }}
33
</button>

resources/views/components/responsive-nav-link.blade.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
@php
44
$classes = ($active ?? false)
55
? 'block w-full ps-3 pe-4 py-2 border-l-4 border-indigo-400 text-start text-base font-medium text-indigo-700 bg-indigo-50 focus:outline-none focus:text-indigo-800 focus:bg-indigo-100 focus:border-indigo-700 transition duration-150 ease-in-out'
6-
: 'block w-full ps-3 pe-4 py-2 border-l-4 border-transparent text-start text-base font-medium text-gray-600 hover:text-gray-800 hover:bg-gray-50 hover:border-gray-300 focus:outline-none focus:text-gray-800 focus:bg-gray-50 focus:border-gray-300 transition duration-150 ease-in-out';
6+
: 'block w-full ps-3 pe-4 py-2 border-l-4 border-transparent text-start text-base font-medium text-stone-600 hover:text-stone-800 hover:bg-stone-50 hover:border-stone-300 focus:outline-none focus:text-stone-800 focus:bg-stone-50 focus:border-stone-300 transition duration-150 ease-in-out';
77
@endphp
88

99
<a {{ $attributes->merge(['class' => $classes]) }}>

0 commit comments

Comments
 (0)