Skip to content

Commit 5e2184b

Browse files
committed
refactor: change coolGray with blueGray
1 parent ad12eed commit 5e2184b

File tree

1 file changed

+15
-15
lines changed

1 file changed

+15
-15
lines changed

src/app/views/auth/login/login.component.html

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -2,59 +2,59 @@
22
<div class="flex content-center items-center justify-center h-full">
33
<div class="w-full lg:w-4/12 px-4">
44
<div
5-
class="relative flex flex-col min-w-0 break-words w-full mb-6 shadow-lg rounded-lg bg-coolGray-200 border-0"
5+
class="relative flex flex-col min-w-0 break-words w-full mb-6 shadow-lg rounded-lg bg-blueGray-200 border-0"
66
>
77
<div class="rounded-t mb-0 px-6 py-6">
88
<div class="text-center mb-3">
9-
<h6 class="text-coolGray-500 text-sm font-bold">Sign in with</h6>
9+
<h6 class="text-blueGray-500 text-sm font-bold">Sign in with</h6>
1010
</div>
1111
<div class="btn-wrapper text-center">
1212
<button
13-
class="bg-white active:bg-coolGray-50 text-coolGray-700 font-normal px-4 py-2 rounded outline-none focus:outline-none mr-2 mb-1 uppercase shadow hover:shadow-md inline-flex items-center font-bold text-xs ease-linear transition-all duration-150"
13+
class="bg-white active:bg-blueGray-50 text-blueGray-700 font-normal px-4 py-2 rounded outline-none focus:outline-none mr-2 mb-1 uppercase shadow hover:shadow-md inline-flex items-center font-bold text-xs ease-linear transition-all duration-150"
1414
type="button"
1515
>
1616
<img alt="..." class="w-5 mr-1" src="assets/img/github.svg" />
1717
Github
1818
</button>
1919
<button
20-
class="bg-white active:bg-coolGray-50 text-coolGray-700 font-normal px-4 py-2 rounded outline-none focus:outline-none mr-1 mb-1 uppercase shadow hover:shadow-md inline-flex items-center font-bold text-xs ease-linear transition-all duration-150"
20+
class="bg-white active:bg-blueGray-50 text-blueGray-700 font-normal px-4 py-2 rounded outline-none focus:outline-none mr-1 mb-1 uppercase shadow hover:shadow-md inline-flex items-center font-bold text-xs ease-linear transition-all duration-150"
2121
type="button"
2222
>
2323
<img alt="..." class="w-5 mr-1" src="assets/img/google.svg" />
2424
Google
2525
</button>
2626
</div>
27-
<hr class="mt-6 border-b-1 border-coolGray-300" />
27+
<hr class="mt-6 border-b-1 border-blueGray-300" />
2828
</div>
2929
<div class="flex-auto px-4 lg:px-10 py-10 pt-0">
30-
<div class="text-coolGray-400 text-center mb-3 font-bold">
30+
<div class="text-blueGray-400 text-center mb-3 font-bold">
3131
<small>Or sign in with credentials</small>
3232
</div>
3333
<form>
3434
<div class="relative w-full mb-3">
3535
<label
36-
class="block uppercase text-coolGray-600 text-xs font-bold mb-2"
36+
class="block uppercase text-blueGray-600 text-xs font-bold mb-2"
3737
htmlFor="grid-password"
3838
>
3939
Email
4040
</label>
4141
<input
4242
type="email"
43-
class="border-0 px-3 py-3 placeholder-coolGray-300 text-coolGray-600 bg-white rounded text-sm shadow focus:outline-none focus:ring w-full ease-linear transition-all duration-150"
43+
class="border-0 px-3 py-3 placeholder-blueGray-300 text-blueGray-600 bg-white rounded text-sm shadow focus:outline-none focus:ring w-full ease-linear transition-all duration-150"
4444
placeholder="Email"
4545
/>
4646
</div>
4747

4848
<div class="relative w-full mb-3">
4949
<label
50-
class="block uppercase text-coolGray-600 text-xs font-bold mb-2"
50+
class="block uppercase text-blueGray-600 text-xs font-bold mb-2"
5151
htmlFor="grid-password"
5252
>
5353
Password
5454
</label>
5555
<input
5656
type="password"
57-
class="border-0 px-3 py-3 placeholder-coolGray-300 text-coolGray-600 bg-white rounded text-sm shadow focus:outline-none focus:ring w-full ease-linear transition-all duration-150"
57+
class="border-0 px-3 py-3 placeholder-blueGray-300 text-blueGray-600 bg-white rounded text-sm shadow focus:outline-none focus:ring w-full ease-linear transition-all duration-150"
5858
placeholder="Password"
5959
/>
6060
</div>
@@ -63,17 +63,17 @@ <h6 class="text-coolGray-500 text-sm font-bold">Sign in with</h6>
6363
<input
6464
id="customCheckLogin"
6565
type="checkbox"
66-
class="form-checkbox border-0 text-coolGray-700 ml-1 w-5 h-5 ease-linear transition-all duration-150 rounded"
66+
class="form-checkbox border-0 text-blueGray-700 ml-1 w-5 h-5 ease-linear transition-all duration-150 rounded"
6767
/>
68-
<span class="ml-2 text-sm font-semibold text-coolGray-600">
68+
<span class="ml-2 text-sm font-semibold text-blueGray-600">
6969
Remember me
7070
</span>
7171
</label>
7272
</div>
7373

7474
<div class="text-center mt-6">
7575
<button
76-
class="bg-coolGray-800 text-white active:bg-coolGray-600 text-sm font-bold uppercase px-6 py-3 rounded shadow hover:shadow-lg outline-none focus:outline-none mr-1 mb-1 w-full ease-linear transition-all duration-150"
76+
class="bg-blueGray-800 text-white active:bg-blueGray-600 text-sm font-bold uppercase px-6 py-3 rounded shadow hover:shadow-lg outline-none focus:outline-none mr-1 mb-1 w-full ease-linear transition-all duration-150"
7777
type="button"
7878
>
7979
Sign In
@@ -84,12 +84,12 @@ <h6 class="text-coolGray-500 text-sm font-bold">Sign in with</h6>
8484
</div>
8585
<div class="flex flex-wrap mt-6 relative">
8686
<div class="w-1/2">
87-
<a href="javascript:void(0)" class="text-coolGray-200">
87+
<a href="javascript:void(0)" class="text-blueGray-200">
8888
<small>Forgot password?</small>
8989
</a>
9090
</div>
9191
<div class="w-1/2 text-right">
92-
<a [routerLink]="['/auth/register']" class="text-coolGray-200">
92+
<a [routerLink]="['/auth/register']" class="text-blueGray-200">
9393
<small>Create new account</small>
9494
</a>
9595
</div>

0 commit comments

Comments
 (0)