diff --git a/webui/static/enrichment-manager.js b/webui/static/enrichment-manager.js
index 94b35299..b1ccfe60 100644
--- a/webui/static/enrichment-manager.js
+++ b/webui/static/enrichment-manager.js
@@ -349,14 +349,16 @@ function _emRailSubText(status) {
function renderEnrichmentRail() {
const rail = document.getElementById('em-rail');
if (!rail) return;
- rail.innerHTML = ENRICHMENT_WORKERS.map(w => {
+ rail.innerHTML = ENRICHMENT_WORKERS.map((w, i) => {
const status = enrichmentManagerState.statuses[w.id];
const info = _emStatusInfo(status);
const pct = _emOverallPct(status);
const cov = pct == null ? '' : `
`;
+ const accent = _emHexToRgb(w.color);
return `