diff --git a/homepage/index.html b/homepage/index.html
index ab3f16f..28a6606 100644
--- a/homepage/index.html
+++ b/homepage/index.html
@@ -201,9 +201,25 @@ WIDTH="88px"
ALT="amazon.com"
SRC="https://anlucas.neocities.org/amazon.gif"
/>
-
+
+
+
+
+
+
+
+
+
+
diff --git a/homepage/sheets.js b/homepage/sheets.js
index 17148a1..e1d3022 100644
--- a/homepage/sheets.js
+++ b/homepage/sheets.js
@@ -1,5 +1,29 @@
// Depends on cookies.js
+/*
+ SHEETS.JS
+ PUBLIC DOMAIN CODE BY DEVEN BLAKE
+
+ setStyling(sheet) sets the stylesheet to the file at sheet.
+ e.g. setStyling("sheet.css") will change the stylesheet to "sheet.css"
+ initializesheets() just sets the sheet to the sheet in the cookie, if
+ the user saved their preferences.
+ Needs a somewhere on the
+ page in order to work.
+
+ You can use setStyling("") to reset it.
+*/
+
+/*
+ www.trinity.moe
+ has the following (useful) stylesheets:
+
+ /calebmode.css - dark mode (#FFF on #000)
+ /givemerights.css - 2019 site theme
+ /windowsclassic.css - 2020 site theme;
+ based on "Windows Classic" Microsoft Windows theme
+*/
+
window.setStyling = function(sheet) {
document.getElementById('styling').setAttribute('href', sheet);
return sheet;