Skip to content
Cast: Nathaly Thibault

6.8
No More Posts Available.
No more pages to load.
document.addEventListener('DOMContentLoaded', function () {
const qualityLabels = document.querySelectorAll('.quality');
qualityLabels.forEach(function (label) {
const text = label.textContent.trim().toUpperCase();
if (text === 'HD') {
label.style.backgroundColor = '#28a745';
label.style.color = 'white';
} else if (text === 'WEBDL') {
label.style.backgroundColor = '#007bff';
label.style.color = 'white';
} else if (text === 'CAM') {
label.style.backgroundColor = '#dc3545';
label.style.color = 'white';
}
});
});