From d1a7460c05976a93b6ee5a5621c14579c08c9f1b Mon Sep 17 00:00:00 2001 From: Aetherinox Date: Thu, 10 Apr 2025 03:45:00 -0700 Subject: [PATCH] chore: update icon colors --- tvapp2/www/index.html | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/tvapp2/www/index.html b/tvapp2/www/index.html index 0575d6cd..9e92da86 100644 --- a/tvapp2/www/index.html +++ b/tvapp2/www/index.html @@ -460,9 +460,9 @@ { $(document.body).tooltip({ selector: "[title]" }); $('#action-health') - .attr('data-original-title', timeLeft) - .attr('aria-label', timeLeft) - .attr('data-bs-original-title', timeLeft) + .attr('data-original-title', `Health check in ${ timeLeft }`) + .attr('aria-label', `Health check in ${ timeLeft }`) + .attr('data-bs-original-title', `Health check in ${ timeLeft }`) }); const Heart = document.getElementsByClassName('fa-heart'); @@ -475,8 +475,8 @@ setTimeout( function() { - Heart[0].style.color = '#ff7575'; - }, timerRemainsLS.getUTCMilliseconds() + 200 ); + Heart[0].style.color = '#FF6593'; + }, timerRemainsLS.getUTCMilliseconds() + 100 ); }, timerRemainsLS.getUTCMilliseconds() + 500 );