diff --git a/index.html b/index.html
index 6597670..109a702 100644
--- a/index.html
+++ b/index.html
@@ -11,11 +11,11 @@
@@ -42,7 +42,6 @@
diff --git a/js/app.js b/js/app.js
index 8b72adf..d640c20 100644
--- a/js/app.js
+++ b/js/app.js
@@ -8,7 +8,6 @@
var elConnected = document.getElementById('app-connected');
var elHeader = document.getElementById('server-header');
var elSidebar = document.getElementById('sidebar-nav');
- var elTitle = document.getElementById('page-title');
// ---- Sidebar navigation ----
var navPages = [
@@ -30,7 +29,6 @@
function setActivePage(title) {
window._currentPage = title;
- elTitle.textContent = title;
if (Rcon.isConnected()) renderSidebar(Rcon.getAddress());
}
diff --git a/rcon.css b/rcon.css
index 5b80e70..2266bbb 100644
--- a/rcon.css
+++ b/rcon.css
@@ -3,7 +3,7 @@
:root {
--rcon-bg: #252830;
--rcon-text: #cfd2da;
- --rcon-accent: #a78bfa;
+ --rcon-accent: #8b5cf6;
--rcon-card-bg: #434857;
/* Override BS5 dark theme body background */
--bs-body-bg: #252830;
@@ -41,7 +41,7 @@ a:hover { color: #fff; text-decoration: none; }
.nav-sidebar .nav-link:hover,
.nav-sidebar .nav-link.active {
color: #fff;
- background-color: #8b5cf6;
+ background-color: #6d28d9;
}
/* Fade utility */
@@ -78,7 +78,7 @@ a:hover { color: #fff; text-decoration: none; }
background: rgba(255, 255, 255, 0.2);
color: #fff;
border-color: var(--rcon-accent);
- box-shadow: 0 0 0 0.2rem rgba(139, 92, 246, 0.25);
+ box-shadow: 0 0 0 0.2rem rgba(109, 40, 217, 0.25);
}
/* Cards — override BS dark-theme bg to our darker shade */
@@ -111,13 +111,6 @@ a:hover { color: #fff; text-decoration: none; }
color: rgba(255, 255, 255, 0.85);
}
-/* Page title */
-#page-title {
- padding-bottom: 0.5rem;
- margin-bottom: 1rem;
- border-bottom: 1px solid rgba(255, 255, 255, 0.15);
-}
-
/* Chart SVGs */
#chart-performance,
#chart-network,