1
0
miroir de https://github.com/beego/bee.git synchronisé 2026-01-05 03:22:20 +00:00

Merge pull request #326 from amrfaissal/more-colors

Adds more colors to color.go
Cette révision appartient à :
Faissal Elamraoui
2016-11-23 16:00:53 +01:00
révisé par GitHub
révision a6ce37ddf3
2 fichiers modifiés avec 21 ajouts et 1 suppressions

Voir le fichier

@@ -57,6 +57,16 @@ func bold(message string) string {
return fmt.Sprintf("\x1b[1m%s\x1b[21m", message)
}
// Black returns a black string
func Black(message string) string {
return fmt.Sprintf("\x1b[30m%s\x1b[0m", message)
}
// White returns a white string
func White(message string) string {
return fmt.Sprintf("\x1b[37m%s\x1b[0m", message)
}
// Cyan returns a cyan string
func Cyan(message string) string {
return fmt.Sprintf("\x1b[36m%s\x1b[0m", message)
@@ -92,6 +102,16 @@ func Magenta(message string) string {
return fmt.Sprintf("\x1b[35m%s\x1b[0m", message)
}
// BlackBold returns a black bold string
func BlackBold(message string) string {
return fmt.Sprintf("\x1b[30m%s\x1b[0m", bold(message))
}
// WhiteBold returns a white bold string
func WhiteBold(message string) string {
return fmt.Sprintf("\x1b[37m%s\x1b[0m", bold(message))
}
// CyanBold returns a cyan bold string
func CyanBold(message string) string {
return fmt.Sprintf("\x1b[36m%s\x1b[0m", bold(message))

Voir le fichier

@@ -96,7 +96,7 @@ func NewWatcher(paths []string, files []string, isgenerate bool) {
}
// getFileModTime retuens unix timestamp of `os.File.ModTime` by given path.
// getFileModTime returns unix timestamp of `os.File.ModTime` for the given path.
func getFileModTime(path string) int64 {
path = strings.Replace(path, "\\", "/", -1)
f, err := os.Open(path)