fix: replace css variables with direct hex colors for alarm bell

This commit is contained in:
Kantine Wrapper
2026-02-24 13:24:09 +01:00
parent b6c7c66027
commit 1f184fab8b
3 changed files with 6 additions and 3 deletions

View File

@@ -982,10 +982,10 @@
bellBtn.title = `Zuletzt geprüft: ${timeStr}`;
if (anyAvailable) {
bellIcon.style.color = 'var(--success-color)';
bellIcon.style.color = '#10b981'; // green / success
bellIcon.style.textShadow = '0 0 10px rgba(16, 185, 129, 0.4)';
} else {
bellIcon.style.color = 'var(--warning-color)';
bellIcon.style.color = '#f59e0b'; // yellow / warning
bellIcon.style.textShadow = '0 0 10px rgba(245, 158, 11, 0.4)';
}
}