Metadata-Version: 2.4
Name: paintxt
Version: 1.0.0
Summary: A small simple package that lets you change or customize texts color on your Python projects
Author-email: ryuzen06 <ziel26314@gmail.com>
License-Expression: MIT
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Requires-Python: >=3.9
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: license-file

A Python package for changing text colors in the terminal, perfect for adding a pop of color to your command-line applications!

*Features*

- Change text colors to brighten up your terminal output
- Change text's background color

*Example Usage*
    from paintxt import Colors

    print(Colors.RED+"Hello, World!")  # Print "Hello, World!" in red
    print(Colors.BG_WHITE+"Hello, World!")  # Print "Hello, World!" with a red background
    print(Colors.colors) # Print all available colors
