MD Web is not meant to replace your doctor. Please do not rely on MD Web. MD Web works best with more information. Please provide as many details as possible in order for MD Web to preform the best it possibly can.
diff --git a/script.js b/script.js
index 1ac6e0e..a97c9e5 100644
--- a/script.js
+++ b/script.js
@@ -45,3 +45,7 @@ document
AISend();
}
});
+ function myFunction() {
+ var element = document.body;
+ element.classList.toggle("dark-mode");
+ }
\ No newline at end of file
diff --git a/style.css b/style.css
index 572fa1d..2b66fab 100644
--- a/style.css
+++ b/style.css
@@ -88,3 +88,15 @@ a {
padding: 8px;
background-color: #dddddd;
}
+body {
+ padding: 25px;
+ background-color: white;
+ color: black;
+ font-size: 15px;
+}
+
+.dark-mode {
+
+ background-color: black;
+ color: white;
+}
\ No newline at end of file