diff --git a/html/css/mono.css b/html/css/mono.css
new file mode 100644
index 0000000000..be4bcc2624
--- /dev/null
+++ b/html/css/mono.css
@@ -0,0 +1,19 @@
+.fa-nav-icons {
+ color: #ffffff;
+}
+
+.fa-col-success {
+ color: #3c763d;
+}
+
+.fa-col-info {
+ color: #31708f;
+}
+
+.fa-col-primary {
+ color: #357ebd;
+}
+
+.twitter-typeahead .tt-hint {
+ border-color: #000 !important;
+}
diff --git a/html/images/librenms_logo_mono.png b/html/images/librenms_logo_mono.png
new file mode 100644
index 0000000000..3c999691c5
Binary files /dev/null and b/html/images/librenms_logo_mono.png differ
diff --git a/html/includes/print-menubar.php b/html/includes/print-menubar.php
index 01564eb883..b43c4e1b98 100644
--- a/html/includes/print-menubar.php
+++ b/html/includes/print-menubar.php
@@ -16,7 +16,7 @@ if (isset($config['enable_bgp']) && $config['enable_bgp'])
$bgp_alerts = dbFetchCell("SELECT COUNT(bgpPeer_id) FROM bgpPeers AS B where (bgpPeerAdminStatus = 'start' OR bgpPeerAdminStatus = 'running') AND bgpPeerState != 'established'");
}
-if (isset($config['site_style']) && $config['site_style'] == 'dark') {
+if (isset($config['site_style']) && ($config['site_style'] == 'dark' || $config['site_style'] == 'mono')) {
$navbar = 'navbar-inverse';
}