https://github.com/yuzukitsuru/colorcout
Simple cross-platform(?) colored terminal text in C++
https://github.com/yuzukitsuru/colorcout
color-terminal cout cpp
Last synced: 12 months ago
JSON representation
Simple cross-platform(?) colored terminal text in C++
- Host: GitHub
- URL: https://github.com/yuzukitsuru/colorcout
- Owner: YuzukiTsuru
- License: wtfpl
- Created: 2020-04-02T14:03:53.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2023-11-07T10:52:24.000Z (over 2 years ago)
- Last Synced: 2023-11-07T11:38:18.644Z (over 2 years ago)
- Topics: color-terminal, cout, cpp
- Language: C++
- Homepage:
- Size: 17.6 KB
- Stars: 4
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Welcome to ColorCout 👋
> Simple cross-platform(?) colored terminal text in C++
### 🏠 [Homepage](https://github.com/GloomyGhost-MosquitoSeal/ColorCout)
### ✨ Demo

## Usage
```sh
std::cout << cc::red << " red "
<< cc::yellow << " yellow "
<< cc::green << " green "
<< cc::reset << " reset"
<< std::endl;
```
## Author
👤 **GloomyGhost-MosquitoSeal**
* Website: https://gloomyghost.com/
* Twitter: [@GLGH\_](https://twitter.com/GLGH\_)
* Github: [@YuzukiTsuru](https://github.com/YuzukiTsuru)
## 🤝 Contributing
Contributions, issues and feature requests are welcome!
Feel free to check [issues page](https://github.com/YuzukiTsuru/ColorCout/issues).
## Show your support
Give a ⭐️ if this project helped you!
## 📝 License
Copyright © 2020 [YuzukiTsuru](https://github.com/YuzukiTsuru).
This project is [Do What The F*ck You Want To Public License](https://github.com/YuzukiTsuru/ColorCout/blob/master/LICENSE) licensed.
## Reference
[https://github.com/yurablok/colored-cout/](https://github.com/yurablok/colored-cout/) for the nice idea.