Этот коммит содержится в:
BartM82 2025-06-29 20:53:31 +02:00 коммит произвёл GitHub
родитель a65c7ee653
Коммит e7cc2fdfa0
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: B5690EEEBB952194

Просмотреть файл

@ -362,10 +362,11 @@ class DIMAAnalyzer {
} }
getColor(score) { getColor(score) {
if (score < 25) return '#27ae60'; if (score < 20) return '#27ae60';
if (score < 50) return '#f39c12'; if (score < 30) return '#f39c12';
if (score < 75) return '#e67e22'; if (score < 50) return '#e67e22';
return '#e74c3c'; if (score < 75) return '#d35400';
return '#b30000';
} }
showModal() { showModal() {