summaryrefslogtreecommitdiff
path: root/internal/prompt
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2024-11-08 23:16:17 +0200
committerPaul Buetow <paul@buetow.org>2024-11-08 23:16:17 +0200
commitad6a9f11b728ddce21953a3a56cb90c4e3bd40f2 (patch)
treea46bdc070a8dce96edcd66bbcf75ba519588ee2a /internal/prompt
parent5ee4d7a6020e32159e735ff9e5b38be5da6bfe9c (diff)
change of colors
Diffstat (limited to 'internal/prompt')
-rw-r--r--internal/prompt/file.go2
-rw-r--r--internal/prompt/prompt.go2
2 files changed, 2 insertions, 2 deletions
diff --git a/internal/prompt/file.go b/internal/prompt/file.go
index 1136b5a..365dc42 100644
--- a/internal/prompt/file.go
+++ b/internal/prompt/file.go
@@ -20,7 +20,7 @@ var (
func FileAction(question, content, filePath string) error {
colour.Info2f(filePath + ":")
fmt.Print("\n")
- colour.Info1f(content)
+ colour.Info2f(content)
fmt.Print("\n")
reader := bufio.NewReader(os.Stdin)
diff --git a/internal/prompt/prompt.go b/internal/prompt/prompt.go
index 47e8da3..d2002d7 100644
--- a/internal/prompt/prompt.go
+++ b/internal/prompt/prompt.go
@@ -11,7 +11,7 @@ import (
func Acknowledge(messages ...string) error {
if len(messages) > 1 {
for _, content := range messages[1:] {
- colour.Info1f(content)
+ colour.Info2f(content)
fmt.Print("\n")
}
}