style(hub): color-code monitor card strategy stat chips

Use shared cyan for breakout/fib keys, purple for watch keys, green for trends, and orange for roll groups.

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
dekun
2026-06-03 23:30:33 +08:00
parent 98038b1945
commit 2c01d11fe1
3 changed files with 39 additions and 10 deletions
+28 -2
View File
@@ -1296,9 +1296,35 @@ body.market-chart-fs-open {
border-radius: 6px;
font-size: 11px;
line-height: 1.3;
border: 1px solid transparent;
}
/* 突破 + 斐波 */
.card-stat-chip.card-stat-key-breakout {
color: var(--accent);
background: var(--accent-dim);
border: 1px solid var(--border-soft);
background: rgba(0, 212, 255, 0.14);
border-color: rgba(0, 212, 255, 0.38);
}
/* 关键位监控(阻力/支撑等) */
.card-stat-chip.card-stat-key-watch {
color: #b8a0ff;
background: rgba(123, 97, 255, 0.18);
border-color: rgba(123, 97, 255, 0.42);
}
/* 趋势回调 */
.card-stat-chip.card-stat-trend {
color: var(--green);
background: rgba(0, 255, 157, 0.1);
border-color: rgba(0, 255, 157, 0.38);
}
/* 顺势加仓 */
.card-stat-chip.card-stat-roll {
color: #ffb020;
background: rgba(255, 176, 32, 0.14);
border-color: rgba(255, 176, 32, 0.42);
}
.hub-tile .card-strategy-stats {