diff --git a/internal/ui/model/header.go b/internal/ui/model/header.go index f4e4fd49a00ebb0280ec3583ce7fa3ea6513bd40..f3296c08e19215fc652c23a5fe458cf30214fd3c 100644 --- a/internal/ui/model/header.go +++ b/internal/ui/model/header.go @@ -39,7 +39,7 @@ func newHeader(com *common.Common) *header { } t := com.Styles h.compactLogo = t.Header.Charm.Render("Charm™") + " " + - styles.ApplyBoldForegroundGrad(t, "CRUSH", t.Secondary, t.Primary) + " " + styles.ApplyBoldForegroundGrad(t.Base, "CRUSH", t.Secondary, t.Primary) + " " return h } diff --git a/internal/ui/model/pills.go b/internal/ui/model/pills.go index d2f843848956bdd5f4d05674da1d164caf1e04c6..012451b43607f8e29ad67a86eadde57707d06713 100644 --- a/internal/ui/model/pills.go +++ b/internal/ui/model/pills.go @@ -56,7 +56,7 @@ func queuePill(queue int, focused, panelFocused bool, t *styles.Styles) string { if queue <= 0 { return "" } - triangles := styles.ForegroundGrad(t, "▶▶▶▶▶▶▶▶▶", false, t.RedDark, t.Secondary) + triangles := styles.ForegroundGrad(t.Base, "▶▶▶▶▶▶▶▶▶", false, t.Pills.QueueGradFromColor, t.Secondary) if queue < len(triangles) { triangles = triangles[:queue] } diff --git a/internal/ui/model/ui.go b/internal/ui/model/ui.go index fedcc7baac71b49f05b944fe8e0fe863baf60cef..ebea1ff80953e9b6f3cdaa974e25fcd216448bed 100644 --- a/internal/ui/model/ui.go +++ b/internal/ui/model/ui.go @@ -3651,7 +3651,7 @@ func (m *UI) disableDockerMCP() tea.Msg { // renderLogo renders the Crush logo with the given styles and dimensions. func renderLogo(t *styles.Styles, compact bool, width int) string { - return logo.Render(t, version.Version, compact, logo.Opts{ + return logo.Render(t.Base, version.Version, compact, logo.Opts{ FieldColor: t.LogoFieldColor, TitleColorA: t.LogoTitleColorA, TitleColorB: t.LogoTitleColorB,