diff --git a/src/pages/pricing.html b/src/pages/pricing.html index db4d012..a7db596 100644 --- a/src/pages/pricing.html +++ b/src/pages/pricing.html @@ -4,7 +4,7 @@ Pricing Plans | VehiGo - + @@ -706,7 +711,7 @@ class="btn btn-outline-secondary theme-toggle-btn" type="button" > - Light + Light @@ -967,13 +972,13 @@

Stay in the loop

themeToggle.classList.remove("btn-outline-secondary"); themeToggle.classList.add("btn-outline-light"); themeToggle.innerHTML = - 'Light'; + 'Light'; } else { document.body.classList.remove("dark-theme"); themeToggle.classList.remove("btn-outline-light"); themeToggle.classList.add("btn-outline-secondary"); themeToggle.innerHTML = - 'Dark'; + 'Dark'; } themeToggle.addEventListener("click", function (e) { e.preventDefault(); @@ -984,14 +989,14 @@

Stay in the loop

themeToggle.classList.remove("btn-outline-light"); themeToggle.classList.add("btn-outline-secondary"); themeToggle.innerHTML = - 'Dark'; + 'Dark'; } else { document.body.classList.add("dark-theme"); localStorage.setItem("theme", "dark"); themeToggle.classList.remove("btn-outline-secondary"); themeToggle.classList.add("btn-outline-light"); themeToggle.innerHTML = - 'Light'; + 'Light'; } }); } else {