improve contrast on play/pause button
I had trialed it on darker backgrounds, but on lighter ones we just need a higher base contrast imo
This commit is contained in:
parent
e5ce4a4a42
commit
2a8ac4ad65
1 changed files with 4 additions and 3 deletions
|
@ -259,11 +259,12 @@ function PlayPauseButton() {
|
||||||
<Button
|
<Button
|
||||||
leftIcon={isPaused ? <MdPause /> : <MdPlayArrow />}
|
leftIcon={isPaused ? <MdPause /> : <MdPlayArrow />}
|
||||||
size="sm"
|
size="sm"
|
||||||
color="gray.300"
|
color="gray.100"
|
||||||
variant="outline"
|
variant="outline"
|
||||||
borderColor="gray.300"
|
borderColor="gray.200"
|
||||||
borderRadius="full"
|
borderRadius="full"
|
||||||
backgroundColor="blackAlpha.500"
|
backgroundColor="blackAlpha.600"
|
||||||
|
boxShadow="md"
|
||||||
marginTop="0.3rem" // to center-align with buttons (not sure on amt?)
|
marginTop="0.3rem" // to center-align with buttons (not sure on amt?)
|
||||||
_hover={{
|
_hover={{
|
||||||
backgroundColor: "gray.600",
|
backgroundColor: "gray.600",
|
||||||
|
|
Loading…
Reference in a new issue