Compare commits

...

3 Commits

Author SHA1 Message Date
Nuno Coração
196ba07e48 fixed bug in background setup 2022-11-05 22:28:30 +00:00
Nuno Coração
cde1150c41 updated version 2022-11-05 22:06:39 +00:00
Nuno Coração
c044f16f30 fixed bug in background setup 2022-11-05 22:06:13 +00:00
10 changed files with 13 additions and 12 deletions

View File

@@ -2307,11 +2307,6 @@ select {
color: rgba(var(--color-neutral), var(--tw-text-opacity)) !important;
}
.text-primary-300 {
--tw-text-opacity: 1;
color: rgba(var(--color-primary-300), var(--tw-text-opacity));
}
.text-neutral-200 {
--tw-text-opacity: 1;
color: rgba(var(--color-neutral-200), var(--tw-text-opacity));
@@ -2322,6 +2317,11 @@ select {
color: rgba(var(--color-neutral-300), var(--tw-text-opacity));
}
.text-primary-300 {
--tw-text-opacity: 1;
color: rgba(var(--color-primary-300), var(--tw-text-opacity));
}
.\!no-underline {
text-decoration-line: none !important;
}
@@ -3502,12 +3502,13 @@ body:has(#menu-controller:checked) {
color: rgba(var(--color-neutral-200), var(--tw-text-opacity));
}
.dark .dark\:opacity-60 {
opacity: 0.6;
.dark .dark\:text-primary-300 {
--tw-text-opacity: 1;
color: rgba(var(--color-primary-300), var(--tw-text-opacity));
}
.dark .dark\:mix-blend-multiply {
mix-blend-mode: multiply;
.dark .dark\:opacity-60 {
opacity: 0.6;
}
.dark .dark\:hover\:bg-primary-900:hover {

View File

@@ -7,7 +7,7 @@
<div class="fixed inset-x-0 top-0 h-[700px] single_hero_background nozoom"
style="background-image:url({{ .RelPermalink }});">
<div
class="absolute inset-0 bg-gradient-to-t from-neutral dark:from-neutral-800 to-transparent mix-blend-normal dark:mix-blend-multiply">
class="absolute inset-0 bg-gradient-to-t from-neutral dark:from-neutral-800 to-transparent mix-blend-normal">
</div>
<div
class="absolute inset-0 opacity-30 dark:opacity-60 bg-gradient-to-t from-neutral dark:from-neutral-800 to-neutral dark:to-neutral-800 mix-blend-normal">

View File

@@ -39,7 +39,7 @@
<div class="flex flex-wrap">
{{ range $links := . }}
{{ range $name, $url := $links }}
<a class="px-1 hover:text-primary-400 text-primary-300" href="{{ $url }}" target="_blank"
<a class="px-1 hover:text-primary-400 text-primary-700 dark:text-primary-300" href="{{ $url }}" target="_blank"
aria-label="{{ $name | title }}" rel="me noopener noreferrer">{{ partial
"icon.html" $name }}</a>
{{ end }}

View File

@@ -1,6 +1,6 @@
{
"name": "hugo-blowfish-theme",
"version": "2.7.0",
"version": "2.7.2",
"description": "Blowfish theme for Hugo",
"scripts": {
"preinstall": "rimraf assets/vendor",