fix(upgrade): make upgrade application cmd clearer

Amolith created

Change summary

upgrade.go | 7 ++++++-
1 file changed, 6 insertions(+), 1 deletion(-)

Detailed changes

upgrade.go 🔗

@@ -42,6 +42,11 @@ var (
 			Light: lipgloss.CompleteColor{TrueColor: "#F2F2FF", ANSI256: "195", ANSI: "7"},
 			Dark:  lipgloss.CompleteColor{TrueColor: "#5A4A8A", ANSI256: "98", ANSI: "5"},
 		})
+	cmdStyle = lipgloss.NewStyle().Padding(0, 1).Bold(true).
+			Background(lipgloss.CompleteAdaptiveColor{
+			Light: lipgloss.CompleteColor{TrueColor: "#EDEDED", ANSI256: "254", ANSI: "7"},
+			Dark:  lipgloss.CompleteColor{TrueColor: "#444444", ANSI256: "238", ANSI: "8"},
+		})
 	check = "✓"
 	cross = "✗"
 	arrow = "→"
@@ -110,7 +115,7 @@ func runUpgrade(apply bool) error {
 	}
 
 	if !apply {
-		fmt.Println("\nRun with --apply to upgrade")
+		fmt.Printf("\nRun %s to apply the upgrade\n", cmdStyle.Render("formatted-commit upgrade -a"))
 		return nil
 	}