Skip to content

Commit 76bd095

Browse files
use teal as default colour
1 parent 1440903 commit 76bd095

File tree

7 files changed

+20
-20
lines changed

7 files changed

+20
-20
lines changed

src/tailwindcss-stubs/resources/views/auth/login.blade.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<div class="flex items-center px-6 md:px-0">
55
<div class="w-full max-w-md md:mx-auto">
66
<div class="rounded shadow">
7-
<div class="font-medium text-lg text-brand-darker bg-brand-lighter p-3 rounded-t">
7+
<div class="font-medium text-lg text-teal-darker bg-teal-lighter p-3 rounded-t">
88
Login
99
</div>
1010
<div class="bg-white p-3 rounded-b">
@@ -35,10 +35,10 @@
3535

3636
<div class="flex">
3737
<div class="w-3/4 ml-auto">
38-
<button type="submit" class="bg-brand hover:bg-brand-dark text-white text-sm font-semibold py-2 px-4 rounded mr-3">
38+
<button type="submit" class="bg-brand hover:bg-teal-dark text-white text-sm font-semibold py-2 px-4 rounded mr-3">
3939
Login
4040
</button>
41-
<a class="no-underline hover:underline text-brand-dark text-sm" href="{{ route('password.request') }}">
41+
<a class="no-underline hover:underline text-teal-dark text-sm" href="{{ route('password.request') }}">
4242
Forgot Your Password?
4343
</a>
4444
</div>

src/tailwindcss-stubs/resources/views/auth/passwords/email.blade.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<div class="flex items-center">
55
<div class="md:w-1/2 md:mx-auto">
66
<div class="rounded shadow">
7-
<div class="font-medium text-lg text-brand-darker bg-brand-lighter p-3 rounded-t">
7+
<div class="font-medium text-lg text-teal-darker bg-teal-lighter p-3 rounded-t">
88
Reset Password
99
</div>
1010
<div class="bg-white p-3 rounded-b">
@@ -27,7 +27,7 @@
2727

2828
<div class="flex">
2929
<div class="w-3/4 ml-auto">
30-
<button type="submit" class="bg-brand hover:bg-brand-dark text-white text-sm font-sembiold py-2 px-4 rounded mr-3">
30+
<button type="submit" class="bg-brand hover:bg-teal-dark text-white text-sm font-sembiold py-2 px-4 rounded mr-3">
3131
Send Password Reset Link
3232
</button>
3333
</div>

src/tailwindcss-stubs/resources/views/auth/passwords/reset.blade.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<div class="flex items-center">
55
<div class="md:w-1/2 md:mx-auto">
66
<div class="rounded shadow">
7-
<div class="font-medium text-lg text-brand-darker bg-brand-lighter p-3 rounded-t">
7+
<div class="font-medium text-lg text-teal-darker bg-teal-lighter p-3 rounded-t">
88
Reset Password
99
</div>
1010
<div class="bg-white p-3 rounded-b">
@@ -39,7 +39,7 @@
3939

4040
<div class="flex">
4141
<div class="w-3/4 ml-auto">
42-
<button type="submit" class="bg-brand hover:bg-brand-dark text-white text-sm font-sembiold py-2 px-4 rounded mr-3">
42+
<button type="submit" class="bg-brand hover:bg-teal-dark text-white text-sm font-sembiold py-2 px-4 rounded mr-3">
4343
Reset Password
4444
</button>
4545
</div>

src/tailwindcss-stubs/resources/views/auth/register.blade.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<div class="flex items-center px-6 md:px-0">
55
<div class="w-full max-w-md md:mx-auto">
66
<div class="rounded shadow">
7-
<div class="font-medium text-lg text-brand-darker bg-brand-lighter p-3 rounded-t">
7+
<div class="font-medium text-lg text-teal-darker bg-teal-lighter p-3 rounded-t">
88
Register
99
</div>
1010
<div class="bg-white p-3 rounded-b">
@@ -45,7 +45,7 @@
4545

4646
<div class="flex">
4747
<div class="w-3/4 ml-auto">
48-
<button type="submit" class="bg-brand hover:bg-brand-dark text-white text-sm font-sembiold py-2 px-4 rounded mr-3">
48+
<button type="submit" class="bg-brand hover:bg-teal-dark text-white text-sm font-sembiold py-2 px-4 rounded mr-3">
4949
Register
5050
</button>
5151
</div>

src/tailwindcss-stubs/resources/views/home.blade.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<div class="flex items-center">
55
<div class="md:w-1/2 md:mx-auto">
66
<div class="rounded shadow">
7-
<div class="font-medium text-lg text-brand-darker bg-brand-lighter p-3 rounded-t">
7+
<div class="font-medium text-lg text-teal-darker bg-teal-lighter p-3 rounded-t">
88
Dashboard
99
</div>
1010
<div class="bg-white p-3 rounded-b">

src/tailwindcss-stubs/resources/views/layouts/app.blade.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
<!-- Styles -->
1414
<link href="{{ asset('css/app.css') }}" rel="stylesheet">
1515
</head>
16-
<body class="bg-brand-lightest h-screen">
16+
<body class="bg-teal-lightest h-screen">
1717
<div id="app">
1818
<nav class="bg-white h-12 shadow mb-8 px-6 md:px-0">
1919
<div class="container mx-auto h-full">

src/tailwindcss-stubs/resources/views/welcome.blade.php

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -13,15 +13,15 @@
1313
<!-- Styles -->
1414
<link href="{{ asset('css/app.css') }}" rel="stylesheet">
1515
</head>
16-
<body class="bg-brand-lightest font-sans font-normal">
16+
<body class="bg-teal-lightest font-sans font-normal">
1717
<div class="flex flex-col">
1818
@if(Route::has('login'))
1919
<div class="absolute pin-t pin-r mt-4 mr-4">
2020
@auth
21-
<a href="{{ url('/home') }}" class="no-underline hover:underline text-sm font-normal text-brand-dark uppercase">Home</a>
21+
<a href="{{ url('/home') }}" class="no-underline hover:underline text-sm font-normal text-teal-dark uppercase">Home</a>
2222
@else
23-
<a href="{{ route('login') }}" class="no-underline hover:underline text-sm font-normal text-brand-dark uppercase pr-6">Login</a>
24-
<a href="{{ route('register') }}" class="no-underline hover:underline text-sm font-normal text-brand-dark uppercase">Register</a>
23+
<a href="{{ route('login') }}" class="no-underline hover:underline text-sm font-normal text-teal-dark uppercase pr-6">Login</a>
24+
<a href="{{ route('register') }}" class="no-underline hover:underline text-sm font-normal text-teal-dark uppercase">Register</a>
2525
@endauth
2626
</div>
2727
@endif
@@ -34,19 +34,19 @@
3434
</h1>
3535
<ul class="list-reset">
3636
<li class="inline pr-8">
37-
<a href="https://laravel.com/docs" class="no-underline hover:underline text-sm font-normal text-brand-dark uppercase" title="Documentation">Documentation</a>
37+
<a href="https://laravel.com/docs" class="no-underline hover:underline text-sm font-normal text-teal-dark uppercase" title="Documentation">Documentation</a>
3838
</li>
3939
<li class="inline pr-8">
40-
<a href="https://laracasts.com" class="no-underline hover:underline text-sm font-normal text-brand-dark uppercase" title="Laracasts">Laracasts</a>
40+
<a href="https://laracasts.com" class="no-underline hover:underline text-sm font-normal text-teal-dark uppercase" title="Laracasts">Laracasts</a>
4141
</li>
4242
<li class="inline pr-8">
43-
<a href="https://laravel-news.com" class="no-underline hover:underline text-sm font-normal text-brand-dark uppercase" title="News">News</a>
43+
<a href="https://laravel-news.com" class="no-underline hover:underline text-sm font-normal text-teal-dark uppercase" title="News">News</a>
4444
</li>
4545
<li class="inline pr-8">
46-
<a href="https://forge.laravel.com" class="no-underline hover:underline text-sm font-normal text-brand-dark uppercase" title="Forge">Forge</a>
46+
<a href="https://forge.laravel.com" class="no-underline hover:underline text-sm font-normal text-teal-dark uppercase" title="Forge">Forge</a>
4747
</li>
4848
<li class="inline pr-8">
49-
<a href="https://github.com/laravel/laravel" class="no-underline hover:underline text-sm font-normal text-brand-dark uppercase" title="GitHub">GitHub</a>
49+
<a href="https://github.com/laravel/laravel" class="no-underline hover:underline text-sm font-normal text-teal-dark uppercase" title="GitHub">GitHub</a>
5050
</li>
5151
</ul>
5252
</div>

0 commit comments

Comments
 (0)