Skip to content

Commit 1cfaa11

Browse files
author
Dyrits
committed
Minor update.
1 parent 569b90c commit 1cfaa11

5 files changed

Lines changed: 13 additions & 13 deletions

File tree

images/photo.jpg

-119 KB
Binary file not shown.

images/photo.png

205 KB
Loading

index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,4 @@
1010
document.querySelector("#switch-mode").addEventListener("click", () => {
1111
document.body.classList.toggle("light-mode");
1212
})
13-
})();
13+
})();

stylesheets/index.css

Lines changed: 6 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

stylesheets/index.scss

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
:root {
99
--color-darkestgrey-variation-white: #191D2B;
10-
--color-green-variation-pink: #27AE60;
10+
--color-blue-variation-orange: #4F86F7;
1111
--color-white-variation-grey: #FFF;
1212
--color-black-invariable: #000;
1313
--color-white-grey-invariable: #F8F8F8;
@@ -23,7 +23,7 @@
2323

2424
.light-mode{
2525
--color-darkestgrey-variation-white: #FFF;
26-
--color-green-variation-pink: #F56692;
26+
--color-blue-variation-orange: #F7C04F;
2727
--color-white-variation-grey: #454E56;
2828
--color-black-invariable: #000;
2929
--color-white-grey-invariable: #F8F8F8;
@@ -40,7 +40,7 @@ body {
4040
font-family: "Poppins", sans-serif;
4141
font-size: 1.1rem;
4242
color: var(--color-white-variation-grey);
43-
transition: var(transition);
43+
transition: var(--transition);
4444
}
4545

4646
a {
@@ -96,7 +96,7 @@ section {
9696
.control {
9797
padding: 1rem;
9898
cursor: pointer;
99-
background-color: var(--color-darkgrey-invariable);
99+
background-color: var(--color-darkgrey-variation-white-grey);
100100
width: 55px;
101101
height: 55px;
102102
border-radius: 50%;
@@ -107,12 +107,12 @@ section {
107107
box-shadow: var(--box-shadow);
108108
i {
109109
font-size: 1.25rem;
110-
color: var(--color-white-grey-invariable);
110+
color: var(--color-lightgrey-variation-grey);
111111
pointer-events: none;
112112
}
113113
}
114114
.active-button {
115-
background-color: var(--color-green-variation-pink);
115+
background-color: var(--color-blue-variation-orange);
116116
transition: var(--transition);
117117
i { color: var(--color-white-variation-grey); }
118118
}

0 commit comments

Comments
 (0)