From 6819fc5bf5ad63cfb6936238e4c526eef36aef93 Mon Sep 17 00:00:00 2001 From: Your Name Date: Wed, 23 Apr 2025 22:22:16 -0600 Subject: added dark mode js toggle --- index.html | 18 ++++++++++-------- styles.css | 9 +++++++-- 2 files changed, 17 insertions(+), 10 deletions(-) diff --git a/index.html b/index.html index a23a2dd..9b8b10b 100644 --- a/index.html +++ b/index.html @@ -1,23 +1,26 @@ + + Skylarcloud + +

Homepage

- - - - - -
-

Welcome to my spaceship. I host a few personal services here, publish a feed of notes and posts, and I'll hopefully be hosting many public services as time goes on. I want to participate in an intergalactic community--from the Salt Lake City area and out--slinging text files across the stars, organizing, and sharing our art/projects/speech through Free software.

My feed

@@ -54,5 +57,4 @@ - diff --git a/styles.css b/styles.css index 7770f8b..3b15996 100644 --- a/styles.css +++ b/styles.css @@ -1,10 +1,15 @@ body { font-family: "Lucida Console", "Courier New", monospace; - background-color: #282828; - color: #fbf1c7; + background-color: #fbf1c7; + color: #282828; font-size: 18px; } +.dark-mode { + background-color: #282828; + color: #fbf1c7; +} + h1 { font-size: 38px; color: #fe8019; -- cgit v1.2.3