aboutsummaryrefslogtreecommitdiff
path: root/bootstrap
diff options
context:
space:
mode:
authorThedro Neely <thedroneely@gmail.com>2019-04-18 02:07:33 -0400
committerThedro Neely <thedroneely@gmail.com>2019-04-18 02:07:33 -0400
commit5452369c8c4af48254d331ed3bbe3f79c489e665 (patch)
tree3a8724e85b9e3e47f4bae1a8e7ed9ebe68a71246 /bootstrap
parent6e8bedd4551edaaa50b628d4648a7b7b95351309 (diff)
downloadthedroneely.com-5452369c8c4af48254d331ed3bbe3f79c489e665.tar.gz
thedroneely.com-5452369c8c4af48254d331ed3bbe3f79c489e665.tar.bz2
thedroneely.com-5452369c8c4af48254d331ed3bbe3f79c489e665.zip
app/model/Theme: Add dark theme
Diffstat (limited to 'bootstrap')
-rw-r--r--bootstrap/Bootstrap.php6
1 files changed, 6 insertions, 0 deletions
diff --git a/bootstrap/Bootstrap.php b/bootstrap/Bootstrap.php
index 39e6c08..02d9395 100644
--- a/bootstrap/Bootstrap.php
+++ b/bootstrap/Bootstrap.php
@@ -14,3 +14,9 @@ $router = new Router;
/* create navigator */
$navigation = new Navigation();
+
+/* create new theme */
+$theme = new Theme;
+
+/* enable dark and light themes */
+$theme->toggle();