github.com/Redstoneguy129/cli@v0.0.0-20230211220159-15dca4e91917/internal/utils/colors.go (about)

     1  package utils
     2  
     3  import (
     4  	"github.com/charmbracelet/lipgloss"
     5  )
     6  
     7  // For commands & names.
     8  func Aqua(str string) string {
     9  	return lipgloss.NewStyle().Foreground(lipgloss.Color("14")).Render(str)
    10  }
    11  
    12  // For paths & filenames.
    13  func Bold(str string) string {
    14  	return lipgloss.NewStyle().Bold(true).Render(str)
    15  }