Revert "Use workspace color for notification ring and selection bar (#664)"

This reverts commit 4bfe95d125.
This commit is contained in:
Lawrence Chen 2026-02-27 18:24:51 -08:00
parent 4bfe95d125
commit 1392bd16d7
8 changed files with 15 additions and 86 deletions

View file

@ -1313,7 +1313,6 @@ final class BrowserPanel: Panel, ObservableObject {
/// Increment to request a UI-only flash highlight (e.g. from a keyboard shortcut).
@Published private(set) var focusFlashToken: Int = 0
@Published private(set) var focusFlashColor: NSColor = cmuxAccentNSColor()
/// Sticky omnibar-focus intent. This survives view mount timing races and is
/// cleared only after BrowserPanelView acknowledges handling it.
@ -1521,8 +1520,7 @@ final class BrowserPanel: Panel, ObservableObject {
workspaceId = newWorkspaceId
}
func triggerFlash(color: NSColor? = nil) {
focusFlashColor = color ?? cmuxAccentNSColor()
func triggerFlash() {
focusFlashToken &+= 1
}