From 1948ca7fa4b490a2e4eaae4cd59732131258926f Mon Sep 17 00:00:00 2001 From: Christian Rocha Date: Mon, 27 Apr 2026 12:46:29 -0400 Subject: [PATCH] fix(ui/hooks): restore hook styling --- internal/ui/styles/quickstyle.go | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/internal/ui/styles/quickstyle.go b/internal/ui/styles/quickstyle.go index 0adb16ed2f89e29f9da6556dbea9ee0577032f68..727a787959618698609390091184bc31c852f7ba 100644 --- a/internal/ui/styles/quickstyle.go +++ b/internal/ui/styles/quickstyle.go @@ -699,6 +699,18 @@ func quickStyle(o quickStyleOpts) Styles { s.Tool.MediaType = base s.Tool.ResourceSize = base.Foreground(fgMuted) + // Hook styles + s.Tool.HookLabel = base.Foreground(successSubtle) + s.Tool.HookName = base + s.Tool.HookMatcher = base.Foreground(fgMuted) + s.Tool.HookArrow = base.Foreground(successSubtle) + s.Tool.HookDetail = base.Foreground(fgMuted) + s.Tool.HookOK = base.Foreground(successMuted) + s.Tool.HookDenied = base.Foreground(error) + s.Tool.HookDeniedLabel = base.Foreground(danger) + s.Tool.HookDeniedReason = base.Foreground(bgOverlay) + s.Tool.HookRewrote = base.Foreground(bgOverlay) + // Tool-call action verbs and result-list styling. s.Tool.ActionCreate = lipgloss.NewStyle().Foreground(successSubtle) s.Tool.ActionDestroy = lipgloss.NewStyle().Foreground(danger)