null
Find a file
2023-09-09 15:44:23 +02:00
go.mod init go mod 2023-09-01 23:00:30 +02:00
LICENSE Add files via upload 2023-09-09 15:32:17 +02:00
main.go Update main.go 2023-09-09 15:24:43 +02:00
palette.png added icon 2023-09-09 15:27:00 +02:00
README.md Update README.md 2023-09-09 15:44:23 +02:00

Lestrade: Colorful Text Printing for Go

Lestrade Icon

Lestrade is a small Go library that allows you to print text in different colors. It's a fun and handy tool for adding some visual flair to your command-line applications. With Lestrade, you can make your text stand out and enhance the user experience.

Table of Contents

Usage:


package main

import (
	"fmt"
	"github.com/BlyDoesCoding/lestrade"
)

func main() {
	fmt.Println(lestrade.Red("This is red text"))
	fmt.Println(lestrade.Green("This is green text"))
	fmt.Println(lestrade.Blue("This is blue text"))
}

Contributing

Contributions to Lestrade are welcome! If you'd like to contribute to this project, please follow these guidelines:

  1. Fork the repository.
  2. Create a new branch for your feature or bug fix.
  3. Make your changes and test them thoroughly.
  4. Submit a pull request, describing your changes in detail.

License

This project is licensed under the BSD 2-Clause License. See the LICENSE file for details.

Acknowledgments

  • Special thanks to the Go community for their support and contributions.

Enjoy adding colorful text to your Go applications with Lestrade!