Skip to content

Commit

Permalink
refactor: stop using deprecated alpha()
Browse files Browse the repository at this point in the history
  • Loading branch information
SeaDve committed Jul 20, 2024
1 parent 6efd4fc commit 3a8a01b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions data/resources/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -73,11 +73,11 @@ recognizedpagetile songtile {
}

recognizedpagetile songtile:hover {
background-color: alpha(currentColor, .07);
background-color: color-mix(in srgb, currentColor 7%, transparent);
}

recognizedpagetile songtile:active {
background-color: alpha(currentColor, .16);
background-color: color-mix(in srgb, currentColor 16%, transparent);
}

/* RecognizerStatus */
Expand Down

0 comments on commit 3a8a01b

Please sign in to comment.