Skip to content

Commit 3af037c

Browse files
Ivan SemochkinIvan Semochkin
Ivan Semochkin
authored and
Ivan Semochkin
committed
update whites
1 parent 6034b2c commit 3af037c

File tree

5 files changed

+7
-10
lines changed

5 files changed

+7
-10
lines changed

src/app.css

+3-5
Original file line numberDiff line numberDiff line change
@@ -136,6 +136,7 @@ input[type='search'] {
136136
}
137137

138138
body {
139+
--main-white:#F0E8F4;
139140
--bg-body: #160F1D;
140141
--bg-interface: #22192B;
141142

@@ -165,18 +166,15 @@ body {
165166

166167

167168
--bg-select: var(--bg-body);
168-
--bg-tool-border: #F0E8F4;
169169
--select-active: var(--bg-path);
170170

171-
--color-weight: #F0E8F4;
172-
--color-player: #F0E8F4;
173-
--color-nav: #F0E8F4;
171+
color: var(--main-white);
174172
}
175173

176174
body.dark {
177175
--bg-not-visited: #3B2D52;
178176
}
179177

180178
body.light {
181-
--bg-not-visited: #F0E8F4;
179+
--bg-not-visited: var(--main-white);
182180
}

src/lib/Components/AlgoSelect.svelte

-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,6 @@
5353
justify-content: center;
5454
align-items: center;
5555
font-size: 24px;
56-
color: white;
5756
position: relative;
5857
font-weight: bold;
5958
}

src/lib/Components/Border.svelte

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
.border {
1717
position: absolute;
1818
transition: 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
19-
background-color: var(--bg-tool-border);
19+
background-color: var(--main-white);
2020
height: 2px;
2121
left: 20%;
2222
width: 60%;

src/lib/Components/PlayerControls/Controls.svelte

+2-2
Original file line numberDiff line numberDiff line change
@@ -82,11 +82,11 @@
8282
}
8383
8484
button:hover {
85-
color: white;
85+
/* color: white; */
8686
}
8787
8888
.play {
89-
color: white;
89+
/* color: white; */
9090
font-size: 64px;
9191
}
9292

src/lib/Components/PlayerControls/SpeedSelect.svelte

+1-1
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@
6464
}
6565
6666
.wrapper:hover {
67-
color: white;
67+
/* color: white; */
6868
}
6969
7070
@media (min-width: 1600px) {

0 commit comments

Comments
 (0)