colors.go 444 B

1234567891011121314151617181920212223242526
  1. package ctrlc
  2. import (
  3. "fmt"
  4. )
  5. func clr(use bool, str string) string {
  6. if !IS_WIN_PLATFORM && use {
  7. return fmt.Sprintf("\033[1;31m%s\033[0m", str)
  8. }
  9. return str
  10. }
  11. func clg(use bool, str string) string {
  12. if !IS_WIN_PLATFORM && use {
  13. return fmt.Sprintf("\033[1;32m%s\033[0m", str)
  14. }
  15. return str
  16. }
  17. func cly(use bool, str string) string {
  18. if !IS_WIN_PLATFORM && use {
  19. return fmt.Sprintf("\033[1;33m%s\033[0m", str)
  20. }
  21. return str
  22. }