-
Notifications
You must be signed in to change notification settings - Fork 122
/
styles.js
31 lines (26 loc) · 1010 Bytes
/
styles.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
function showForm(formNumber) {
var forms = document.querySelectorAll('.form-register');
forms.forEach(function(form) {
form.classList.remove('button-active');
});
var form = document.getElementById('form' + formNumber);
form.classList.add('button-active');
var buttons = document.querySelectorAll('.buttons-register button');
buttons.forEach(function(button, index) {
if (index === formNumber - 1) {
button.classList.add('button-active');
} else {
button.classList.remove('button-active');
}
});
}
const themeToggle = document.getElementById('theme-toggle');
const body = document.body;
const whitetext = document.querySelectorAll(".darkmodetext");
themeToggle.addEventListener('click', () => {
body.classList.toggle('dark-mode');
// Loop through each element with the .whitetext class and toggle .dark-mode3
whitetext.forEach(element => {
element.classList.toggle("dark-mode3");
});
});