@@ -7142,7 +7142,9 @@ function profilerListSwitch(name) {
document.querySelectorAll('.profiler-list-tab').forEach(btn => {
const active = btn.dataset.listTab === name;
btn.classList.toggle('bg-blue-600', active);
+ btn.classList.toggle('dark:bg-blue-500', active);
btn.classList.toggle('text-white', active);
+ btn.classList.toggle('dark:text-white', active);
btn.classList.toggle('bg-gray-200', !active);
btn.classList.toggle('dark:bg-slate-700', !active);
btn.classList.toggle('text-gray-700', !active);
diff --git a/frontend/sw.js b/frontend/sw.js
index 80cbf07..ee94e50 100644
--- a/frontend/sw.js
+++ b/frontend/sw.js
@@ -1,4 +1,4 @@
-const CACHE = 'otaman-v82';
+const CACHE = 'otaman-v83';
const URLS = [
'index.html',
'help.html',