Skip to content

Commit e0b9291

Browse files
committed
fix: restore green/orange status colors for done/waiting
The redesign moved statusDone to emerald (#34D399) and statusWaiting to rose (#F87171), which read as colder/redder than the original system green + yellow. Switch to a saturated green (#22C55E) and a clear orange (#FB923C) so the notch pill again reads at-a-glance: amber = working, orange = needs you, green = done. Tab bar status indicators pick up the same tokens.
1 parent cb03f44 commit e0b9291

1 file changed

Lines changed: 5 additions & 3 deletions

File tree

Notchy/DesignSystem.swift

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,10 +29,12 @@ enum DS {
2929
static let accentSoft = SwiftUI.Color(hex: 0x7C5CFF).opacity(0.18)
3030
static let accentGlow = SwiftUI.Color(hex: 0x7C5CFF).opacity(0.32)
3131

32-
// Status
32+
// Status — saturated, system-feeling colors so the notch reads at a
33+
// glance: amber for "working", orange for "needs your attention",
34+
// green for "finished".
3335
static let statusWorking = SwiftUI.Color(hex: 0xFBBF24) // amber
34-
static let statusWaiting = SwiftUI.Color(hex: 0xF87171) // rose
35-
static let statusDone = SwiftUI.Color(hex: 0x34D399) // emerald
36+
static let statusWaiting = SwiftUI.Color(hex: 0xFB923C) // orange
37+
static let statusDone = SwiftUI.Color(hex: 0x22C55E) // green
3638
static let statusIdle = SwiftUI.Color(hex: 0x5C6370)
3739

3840
// Hover/press tints (overlay on top of any bg)

0 commit comments

Comments
 (0)