chore: pagefind styles
This commit is contained in:
parent
d61434a9b0
commit
928e5abdda
2 changed files with 27 additions and 1 deletions
|
@ -4,7 +4,7 @@
|
||||||
<a href="/tags/{{ tag }}">
|
<a href="/tags/{{ tag }}">
|
||||||
<div
|
<div
|
||||||
class="tag--button tag--button__small"
|
class="tag--button tag--button__small"
|
||||||
data-pagefind-filter="tag">{{ tag }}</div>
|
data-pagefind-filter="tags">{{ tag }}</div>
|
||||||
</a>
|
</a>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
|
|
26
tailwind.css
26
tailwind.css
|
@ -2,6 +2,24 @@
|
||||||
@tailwind components;
|
@tailwind components;
|
||||||
@tailwind utilities;
|
@tailwind utilities;
|
||||||
|
|
||||||
|
body {
|
||||||
|
--pagefind-ui-scale: 1.1;
|
||||||
|
--pagefind-ui-primary: theme(colors.purple.600);
|
||||||
|
--pagefind-ui-text: theme(colors.gray.800);
|
||||||
|
--pagefind-ui-background: theme(colors.white);
|
||||||
|
--pagefind-ui-border: theme(colors.gray.200);
|
||||||
|
--pagefind-ui-tag: theme(colors.gray.200);
|
||||||
|
--pagefind-ui-border-width: 2px;
|
||||||
|
--pagefind-ui-border-radius: 8px;
|
||||||
|
--pagefind-ui-image-border-radius: 8px;
|
||||||
|
--pagefind-ui-image-box-ratio: 3 / 2;
|
||||||
|
--pagefind-ui-font: sans-serif;
|
||||||
|
}
|
||||||
|
|
||||||
|
body, html {
|
||||||
|
color: theme(colors.gray.900)
|
||||||
|
}
|
||||||
|
|
||||||
::-moz-selection {
|
::-moz-selection {
|
||||||
color: theme(colors.white);
|
color: theme(colors.white);
|
||||||
background: theme(colors.pink.500);
|
background: theme(colors.pink.500);
|
||||||
|
@ -141,6 +159,14 @@ code[class*=language-], pre[class*=language-] {
|
||||||
}
|
}
|
||||||
|
|
||||||
@media (prefers-color-scheme: dark) {
|
@media (prefers-color-scheme: dark) {
|
||||||
|
body {
|
||||||
|
--pagefind-ui-primary: theme(colors.purple.400);
|
||||||
|
--pagefind-ui-text: theme(colors.white);
|
||||||
|
--pagefind-ui-background: theme(colors.gray.900);
|
||||||
|
--pagefind-ui-border: theme(colors.gray.700);
|
||||||
|
--pagefind-ui-tag: theme(colors.gray.700);
|
||||||
|
}
|
||||||
|
|
||||||
.active,
|
.active,
|
||||||
.active svg {
|
.active svg {
|
||||||
color: theme(colors.teal.300);
|
color: theme(colors.teal.300);
|
||||||
|
|
Reference in a new issue