Skip to content

Commit c9e4aea

Browse files
committed
Fix V35/V36 signaling colors: bright teal for signalers, dim green for V35-only
1 parent c042a09 commit c9e4aea

1 file changed

Lines changed: 8 additions & 8 deletions

File tree

web-static/dashboard.html

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2166,12 +2166,12 @@ <h4>Legend</h4>
21662166
<span>V36 (others)</span>
21672167
</div>
21682168
<div class="legend-item">
2169-
<div class="legend-swatch" style="background:#0097a7"></div>
2169+
<div class="legend-swatch" style="background:#26c6da"></div>
21702170
<span>V36 signaling</span>
21712171
</div>
21722172
<div class="legend-item">
2173-
<div class="legend-swatch" style="background:#28a745"></div>
2174-
<span>V35 (others)</span>
2173+
<div class="legend-swatch" style="background:#2e7d32"></div>
2174+
<span>V35 only</span>
21752175
</div>
21762176
<div class="legend-item">
21772177
<div class="legend-swatch" style="background:#555577"></div>
@@ -4743,15 +4743,15 @@ <h4>Legend</h4>
47434743
var isV36Signal = !isV36Native && share.dv && share.dv >= 36;
47444744

47454745
if (isV36Native) {
4746-
// V36 native shares — bright cyan-green / bright blue
4746+
// V36 native — brightest: cyan-green / bright blue
47474747
return isMine ? '#00b0ff' : '#00e676';
47484748
}
47494749
if (isV36Signal) {
4750-
// V35 signaling V36 — teal
4751-
return isMine ? '#0097a7' : '#2e7d32';
4750+
// V35 signaling V36 — bright teal (rewarded visually)
4751+
return isMine ? '#0097a7' : '#26c6da';
47524752
}
4753-
// V35 only (not signaling) — standard green / blue
4754-
return isMine ? '#008de4' : '#28a745';
4753+
// V35 only (not signaling) — dim muted green / blue
4754+
return isMine ? '#1565c0' : '#2e7d32';
47554755
},
47564756

47574757
hitTest: function(e) {

0 commit comments

Comments
 (0)