Update player.js

This commit is contained in:
Anirudh Sevugan 2025-04-24 18:36:12 -05:00 committed by GitHub
parent d9a3d39e04
commit 58e694a396
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -347,7 +347,7 @@ subtitlesInput.addEventListener('keydown', (e) => {
const colorsEnabled = document.getElementById('colorsCheckbox').checked;
mediaPlayer.controls = controlsEnabled;
if (colorsEnabled) {
mediaPlayer.style.filter = "contrast(1.2) saturate(1.3) brightness(1.05)";
mediaPlayer.style.filter = "contrast(1.1) saturate(1.15) brightness(1.03)";
} else {
mediaPlayer.style.filter = "";
}