Metadata-Version: 2.1
Name: Terminal-Colorify
Version: 0.1.3
Summary: A simple Python module for adding colors to text in the terminal
Home-page: https://github.com/yourusername/colors
Author: amiryona
Author-email: amiryona6@gmail.com
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE

# Terminal-Colorify

A simple Python module for adding colors to text in the terminal.

## Installation and Usage

# Install the package
```bash
pip install Terminal-Colorify
```

# Example Python usage
```
import colors
```

# Set a simple color
```
print(colors.Colors.set_color("yellow", "Hello, world!"))
```

# Set RGB color
```
print(colors.Colors.set_color(rgb=(255, 0, 0), text="Red Text"))
```

# Use bold and underline styles
```
print(colors.Colors.set_color("blue", "Bold Blue Text", bold=True))
print(colors.Colors.set_color("green", "Underlined Green Text", underline=True))
```
