feat(KB-232): swap pace indicator colors and icons in UsageIndicator

- Swap CSS color assignments for slow/fast pace indicators in styles.css
- Swap CheckCircle2 and AlertCircle icons in UsageIndicator component
- Add changeset for the pace indicator color/icon swap
- Remove 2 lines from dashboard README
This commit is contained in:
gsxdsm
2026-03-30 18:51:14 -07:00
parent d4c4b5dadc
commit 97aa415378
3 changed files with 16 additions and 7 deletions

View File

@@ -7643,9 +7643,9 @@ html .column.drag-over * {
font-weight: 500;
}
/* ahead = consuming faster than expected (now shown in info color) */
/* ahead = over pace, consuming faster than expected (warning - red) */
.pace-ahead {
color: #3b82f6; /* blue - was var(--color-error) */
color: var(--color-error);
}
/* on-track = good/expected usage (unchanged) */
@@ -7653,9 +7653,9 @@ html .column.drag-over * {
color: var(--color-success);
}
/* behind = consuming slower than expected (now shown in warning color) */
/* behind = under pace, consuming slower than expected (positive - green) */
.pace-behind {
color: var(--color-error); /* red - was #3b82f6 */
color: var(--color-success);
}
/* Empty state */