C-APDU Parser: indigo hex data color + rebuild CSS

This commit is contained in:
2026-08-20 23:21:03 +03:00
parent 1d4693305d
commit b832372ac8
2 changed files with 84 additions and 5 deletions
+1 -1
View File
@@ -2913,7 +2913,7 @@ function renderTree(node, container) {
header.appendChild(label);
if (node.hex) {
const hex = document.createElement('span');
hex.className = 'text-sm font-mono text-gray-500 dark:text-slate-400 ml-2';
hex.className = 'text-sm font-mono text-indigo-600 dark:text-indigo-400 ml-2';
hex.textContent = node.hex;
header.appendChild(hex);
}