Skip to content

Commit eea8ca2

Browse files
committed
fix: colours in light mode
1 parent 5177638 commit eea8ca2

1 file changed

Lines changed: 19 additions & 0 deletions

File tree

src/App.css

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,3 +58,22 @@
5858
.audio-player audio::-webkit-media-controls-play-button:hover {
5959
background-color: #535bf2;
6060
}
61+
62+
@media (prefers-color-scheme: light) {
63+
.logo:hover {
64+
filter: drop-shadow(0 0 2em #6b7280);
65+
}
66+
67+
.audio-player {
68+
background: rgba(0, 0, 0, 0.1);
69+
border: 1px solid rgba(0, 0, 0, 0.2);
70+
}
71+
72+
.audio-player h2 {
73+
color: #213547;
74+
}
75+
76+
.audio-player p {
77+
color: #4a5568;
78+
}
79+
}

0 commit comments

Comments
 (0)