From 3b4e6306d84fd68350aad68413717a7998a9bba4 Mon Sep 17 00:00:00 2001 From: usmannasir Date: Sun, 3 Aug 2025 02:39:15 +0500 Subject: [PATCH] dark mode --- tuning/templates/tuning/liteSpeedTuning.html | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/tuning/templates/tuning/liteSpeedTuning.html b/tuning/templates/tuning/liteSpeedTuning.html index 1bfcdb3b3..8fe02ccec 100644 --- a/tuning/templates/tuning/liteSpeedTuning.html +++ b/tuning/templates/tuning/liteSpeedTuning.html @@ -55,7 +55,7 @@ .server-icon { width: 60px; height: 60px; - background: var(--bg-light, white); + background: var(--bg-secondary, white); border-radius: 12px; display: flex; align-items: center; @@ -71,7 +71,7 @@ } .tuning-panel { - background: var(--bg-light, white); + background: var(--bg-secondary, white); border-radius: 16px; box-shadow: var(--shadow-light, 0 1px 3px rgba(0,0,0,0.05)), var(--shadow-medium, 0 10px 40px rgba(0,0,0,0.08)); border: 1px solid var(--border-light, #e8e9ff); @@ -103,7 +103,7 @@ gap: 0.5rem; font-size: 0.875rem; padding: 0.5rem 1rem; - background: var(--bg-light, #fff); + background: var(--bg-secondary, #fff); border: 1px solid var(--border-light, #e8e9ff); border-radius: 8px; color: var(--text-secondary, #64748b); @@ -185,7 +185,7 @@ left: 50%; transform: translateX(-50%); background: var(--text-primary, #1e293b); - color: var(--bg-light, white); + color: white; padding: 0.5rem 1rem; border-radius: 6px; font-size: 0.75rem; @@ -211,7 +211,7 @@ border-radius: 8px; font-size: 0.875rem; transition: all 0.3s ease; - background: var(--bg-light, #fff); + background: var(--bg-secondary, #fff); color: var(--text-primary, inherit); } @@ -271,7 +271,7 @@ .btn-primary { background: var(--accent-color, #5b5fcf); - color: var(--bg-light, white); + color: white; } .btn-primary:hover { @@ -281,7 +281,7 @@ } .btn-secondary { - background: var(--bg-light, white); + background: var(--bg-secondary, white); color: var(--text-secondary, #64748b); border: 1px solid var(--border-light, #e8e9ff); }