From f0ebeb1b2ded9e0e82d9f910beea644a1120cdd8 Mon Sep 17 00:00:00 2001 From: Julian Freeman Date: Thu, 26 Feb 2026 13:52:11 -0400 Subject: [PATCH] reverse colors --- Report_Viewer.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Report_Viewer.html b/Report_Viewer.html index 4070c70..61fe21f 100644 --- a/Report_Viewer.html +++ b/Report_Viewer.html @@ -245,8 +245,8 @@ document.getElementById('s-match').innerText = stats['=']; document.getElementById('s-mismatch').innerText = stats['*']; - document.getElementById('s-missing').innerText = stats['-']; - document.getElementById('s-extra').innerText = stats['+']; + document.getElementById('s-missing').innerText = stats['+']; + document.getElementById('s-extra').innerText = stats['-']; document.getElementById('report-content').style.display = 'block'; document.getElementById('treeContainer').innerHTML = buildHtml(tree, "", folderErrors); const t = allI18n[currentLang]; @@ -269,7 +269,7 @@
📁 ${name}/ ${hasErr?'':''}${buildHtml(val, thisPath, folderErrors)}
`; } else { - const colors = {'=':'#28a745', '*':'#dc3545', '-':'#ffc107', '+':'#17a2b8'}; + const colors = {'=':'#28a745', '*':'#dc3545', '+': '#ffc107', '-': '#17a2b8'}; html += `
  • ${val}${name}
  • `;