aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authoralyx <alyx@aleteoryx.me>2023-11-17 13:16:14 -0500
committeralyx <alyx@aleteoryx.me>2023-11-17 13:16:14 -0500
commitbcb3df1cb7bf66e6caff2f133c827c2f095171a1 (patch)
treea9d232e0aed155494c871df06cd3b28ed06ef710
parentc264512f64e25e6fbddddf9bd61238faa2bbf12d (diff)
downloadlfm_embed-bcb3df1cb7bf66e6caff2f133c827c2f095171a1.tar.gz
lfm_embed-bcb3df1cb7bf66e6caff2f133c827c2f095171a1.tar.bz2
lfm_embed-bcb3df1cb7bf66e6caff2f133c827c2f095171a1.zip
fix typo in plain theme breaking light mode.
-rw-r--r--src/themes/plain.hbs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/themes/plain.hbs b/src/themes/plain.hbs
index cbe8948..fe33d28 100644
--- a/src/themes/plain.hbs
+++ b/src/themes/plain.hbs
@@ -5,7 +5,7 @@
<title>{{#if error}}Error!{{else}}@{{user.name}}'s Last.fm Stats{{/if}}</title>
<style>
{{#if (eq query.dark null)}}
- :root { --b: black; color: black; backgrond-color: white; }
+ :root { --b: black; color: black; background-color: white; }
{{else}}
:root { --b: white; color: white; background-color: black; }
a:visited { color: pink }
@@ -31,4 +31,4 @@
</p>
{{/if}}
</body>
-</html> \ No newline at end of file
+</html>