From cfa6146855ee0156daefef9cd01292e6f6b2e77b Mon Sep 17 00:00:00 2001 From: Leo Gavin <71537398+DFanso@users.noreply.github.com> Date: Wed, 8 Oct 2025 08:45:11 +0530 Subject: [PATCH] Update header styles and .gitignore Changed the commit message generator header to use a cyan background and bold black text for improved visibility. Added test.txt to .gitignore to prevent it from being tracked. --- .gitignore | 1 + cmd/cli/createMsg.go | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index b089932..447b5b8 100644 --- a/.gitignore +++ b/.gitignore @@ -27,3 +27,4 @@ commit-helper.json HACKTOBERFEST_SETUP.md PR_DESCRIPTION.md commit +test.txt diff --git a/cmd/cli/createMsg.go b/cmd/cli/createMsg.go index 5c08578..14bc4c5 100644 --- a/cmd/cli/createMsg.go +++ b/cmd/cli/createMsg.go @@ -63,8 +63,8 @@ func CreateCommitMsg() { } pterm.DefaultHeader.WithFullWidth(). - WithBackgroundStyle(pterm.NewStyle(pterm.BgDarkGray)). - WithTextStyle(pterm.NewStyle(pterm.FgLightWhite)). + WithBackgroundStyle(pterm.NewStyle(pterm.BgCyan)). + WithTextStyle(pterm.NewStyle(pterm.FgBlack, pterm.Bold)). Println("Commit Message Generator") pterm.Println()