change color of bold welcome text

This commit is contained in:
Maidul Islam
2023-02-26 23:19:28 -05:00
parent 12364005c1
commit 06ea809d60

View File

@@ -234,14 +234,16 @@ var loginCmd = &cobra.Command{
// clear backed up secrets from prev account
util.DeleteBackupSecrets()
whilte := color.New(color.FgWhite)
whilte := color.New(color.FgGreen)
boldWhite := whilte.Add(color.Bold)
boldWhite.Printf(">>>> Welcome to Infisical!")
color.Green(" You are now logged in as %v <<<<", email)
boldWhite.Println("\nQuick links")
boldWhite.Printf(" You are now logged in as %v <<<< \n", email)
plainBold := color.New(color.Bold)
plainBold.Println("\nQuick links")
fmt.Println("- Learn to inject secrets into your application at https://infisical.com/docs/cli/usage")
fmt.Println("- Stuck? Join our slack for quick support https://tinyurl.com/infisical-slack")
},
}