color contrast tweak

secondary highlight color contrast was a bit weak against the primary
color, so that was cleaned up so it pops a bit more
This commit is contained in:
ro 2024-04-05 12:42:26 -06:00
parent f8005aa60d
commit 8e9752d619
No known key found for this signature in database
GPG key ID: 29B551CDBD4D3B50
3 changed files with 3 additions and 3 deletions

View file

@ -3,7 +3,7 @@
--primary: #1d3040; --primary: #1d3040;
--secondary: #f3ebd2; --secondary: #f3ebd2;
--primary-highlight: #f5ab35; --primary-highlight: #f5ab35;
--secondary-highlight: #b54b6f; --secondary-highlight: #cf436b;
--white: #efebe3; --white: #efebe3;
--grey: #abb7b7; --grey: #abb7b7;
--black: #32302f; --black: #32302f;

View file

@ -57,7 +57,7 @@
</a> </a>
@else @else
<a href="/dashboard/page/edit/{{ $page['uuid'] }}" id="{{ $page['uuid'] }}" class="page-link"> <a href="/dashboard/page/edit/{{ $page['uuid'] }}" id="{{ $page['uuid'] }}" class="page-link">
<div class="page-bg" style="background: url({{ $file }}) no-repeat center center / cover #b54b6f"> <div class="page-bg" style="background: url({{ $file }}) no-repeat center center / cover #cf436b">
<div id="meta"> <div id="meta">
@include('includes.recent-meta') @include('includes.recent-meta')
</div> </div>

View file

@ -27,7 +27,7 @@
</video> </video>
</a> </a>
@else @else
<a href="/dashboard/page/edit/{{ $page['uuid'] }}" id="{{ $page['uuid'] }}" class="post-link recent-link" style="background: url({{ $file }}) no-repeat center center / cover #b54b6f"> <a href="/dashboard/page/edit/{{ $page['uuid'] }}" id="{{ $page['uuid'] }}" class="post-link recent-link" style="background: url({{ $file }}) no-repeat center center / cover #cf436b">
@include('includes.recent-meta') @include('includes.recent-meta')
</a> </a>
@endif @endif