aboutsummaryrefslogtreecommitdiff
path: root/app/views/snippets
diff options
context:
space:
mode:
authorThedro Neely <thedroneely@gmail.com>2019-04-21 14:40:43 -0400
committerThedro Neely <thedroneely@gmail.com>2019-04-21 14:40:43 -0400
commit34f6d5dce682463c84796402c84e2d5118437397 (patch)
tree3b5a263a9fd286c043c1cae6af76dfe91280092b /app/views/snippets
parentcc434a53547a81eee5112b43683ee36bbf50b3a4 (diff)
downloadthedroneely.com-34f6d5dce682463c84796402c84e2d5118437397.tar.gz
thedroneely.com-34f6d5dce682463c84796402c84e2d5118437397.tar.bz2
thedroneely.com-34f6d5dce682463c84796402c84e2d5118437397.zip
app/views: Check for specific color theme
Diffstat (limited to 'app/views/snippets')
-rw-r--r--app/views/snippets/stylesheets.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/snippets/stylesheets.php b/app/views/snippets/stylesheets.php
index 45f9a27..2636e19 100644
--- a/app/views/snippets/stylesheets.php
+++ b/app/views/snippets/stylesheets.php
@@ -1,5 +1,5 @@
<link rel="stylesheet" href="/css/tdro.css">
-<?php if ($theme->dark()) { ?>
+<?php if ($theme->color() === 'dark') { ?>
<link rel="stylesheet" href="/css/tdro-dark.css">
<?php } ?>