summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorseth <[email protected]>2024-02-12 08:31:11 -0500
committerseth <[email protected]>2024-02-12 08:51:36 -0500
commit05780c6b2d8b184122a32095c50363a6c8617d64 (patch)
tree6fea136c99191de47e0cf8e6a297033984e35059
parentb90ffad602c634a6efa343e095c2913da56f2158 (diff)
fix contrast in footer
-rw-r--r--_config.ts2
-rw-r--r--src/_components/footer.vto4
2 files changed, 3 insertions, 3 deletions
diff --git a/_config.ts b/_config.ts
index d3d4a96..3783471 100644
--- a/_config.ts
+++ b/_config.ts
@@ -59,7 +59,7 @@ site.use(attributes())
},
}))
.use(postcss({
- plugins: [cssnano()]
+ plugins: [cssnano()],
}));
site.copy("public", ".");
diff --git a/src/_components/footer.vto b/src/_components/footer.vto
index 9c81595..47ee617 100644
--- a/src/_components/footer.vto
+++ b/src/_components/footer.vto
@@ -1,4 +1,4 @@
-<footer class="text-xs text-overlay0 my-10 text-right space-y-2">
+<footer class="text-xs text-subtext1 my-10 text-right space-y-2">
<div class="hidden md:flex flex-wrap justify-around">
<img
src="/imgs/gifs/acab.gif"
@@ -74,5 +74,5 @@
/>
</div>
- <p>Served from commit {{ gitCommit }} (<a class="text-overlay0" href="https://github.com/getchoo/website">source</a>)</p>
+ <p>Served from commit {{ gitCommit }} (<a href="https://github.com/getchoo/website">source</a>)</p>
</footer>