Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/negrel/hugo-theme-pico.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexandre Negrel <negrel.dev@protonmail.com>2021-01-26 23:27:15 +0300
committerAlexandre Negrel <negrel.dev@protonmail.com>2021-01-26 23:27:15 +0300
commit63ec7e9d734983dfdc6f884c168c90c2bc3bd72b (patch)
tree08007f3712cb3929f8fd44552c43637879f3be18
parenta33e06f823ab53042a20c83d1ba12fa6815f9e25 (diff)
adding dark mode for taxonomy lst
-rw-r--r--layouts/partials/taxonomy_list.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/layouts/partials/taxonomy_list.html b/layouts/partials/taxonomy_list.html
index 5db1710..6eb24aa 100644
--- a/layouts/partials/taxonomy_list.html
+++ b/layouts/partials/taxonomy_list.html
@@ -1,10 +1,10 @@
{{ range $name, $value_ := . }}
<a class="no-underline" href="{{ "/tags/" | relLangURL }}{{ $name | urlize }}">
<div
- class="bg-grey-200 hover:bg-grey-300 active:bg-grey-400 rounded-full p-1 pr-2 mr-2 mb-3 flex-initial ease-in-out duration-200">
+ class="bg-secondary-dark dark:bg-secondary-light hover:bg-secondary rounded-full p-1 pr-2 mr-2 mb-3 flex-initial ease-in-out duration-200">
<img style="width: 30px; height: 30px;" class="inline rounded-full shadow-4" src=" {{ "icons/tag.svg" | relURL }}"
alt="tag icon">
- <span class="inline font-sans align-middle select-none text-xl mr-1 text-grey-600">{{ $name | upper }}</span>
+ <span class="inline font-sans align-middle select-none text-xl mr-1 blend-diff">{{ $name | upper }}</span>
</div>
</a>
{{ end }} \ No newline at end of file