-
Notifications
You must be signed in to change notification settings - Fork 0
/
theme.js
83 lines (44 loc) · 2.78 KB
/
theme.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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
let defaultTheme = true;
document.querySelector('.theme').addEventListener('click', ()=>{
if(defaultTheme){
//default ko change karna hai
//yani black -> white
document.body.style.backgroundColor = 'white';
document.querySelector('#intro-section').style.backgroundColor = 'white';
document.querySelector('.wrapper').style.backgroundColor = 'ghostwhite';
document.querySelector('#header').style.borderBottom = 'black';
document.querySelector('.header-wrap').style.borderBottom = 'black';
document.querySelector('.face-box').style.borderColor = 'black';
document.querySelector('.intro-details').style.backgroundColor = 'black';
document.querySelector('.banner').style.borderColor = 'black';
document.querySelector('.connect').style.backgroundColor = 'white';
document.querySelector('.connect').style.color = 'black';
document.querySelector('.intro-inside h1').style.color = 'ghostwhite';
document.querySelector('.intro-inside .intro-text').style.color = 'ghostwhite';
document.querySelector('#main-grid').style.backgroundColor = 'white';
document.querySelector('#side-main').style.backgroundColor = 'black';
document.querySelector('.projects').style.backgroundColor = 'white';
document.querySelector('.main-content').style.backgroundColor = 'white';
document.querySelector('.projects').style.backgroundColor = 'black';
document.querySelector('.wrapper').style.border = '1px solid black';
defaultTheme = false;
}
else{
document.body.style.backgroundColor = 'black';
document.querySelector('#intro-section').style.backgroundColor = 'black';
document.querySelector('.wrapper').style.backgroundColor = 'black';
document.querySelector('.connect').style.backgroundColor = 'black';
document.querySelector('.intro-inside h1').style.color = 'black';
document.querySelector('.intro-inside .intro-text').style.color = 'black';
document.querySelector('#main-grid').style.backgroundColor = 'black';
document.querySelector('.projects').style.backgroundColor = 'black';
document.querySelector('.main-content').style.backgroundColor = 'black';
document.querySelector('#header').style.borderBottom = '1px solid whitesmoke';
document.querySelector('.face-box').style.border = '4px solid whitesmoke';
document.querySelector('.intro-details').style.backgroundColor = 'ghostwhite';
document.querySelector('.banner').style.borderColor = 'ghostwhite';
document.querySelector('.connect').style.color = 'ghostwhite';
document.querySelector('.wrapper').style.border = '1px solid black';
defaultTheme = true;
}
});