Metadata-Version: 2.1
Name: altcolor
Version: 0.0.1
Summary: A package designed to add color to text in console based applications. [Credit to 'colorama' ('https://pypi.org/project/colorama/') for a few of the colors]
Home-page: https://github.com/TaireruLLC/altcolor
Author: Taireru LLC
Author-email: tairerullc@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
Requires-Dist: colorama

# Altcolor

A package designed to add color to text in console based applications.

## All predefined colors(colors that are not RGB) [Credit to 'colorama' ('https://pypi.org/project/colorama/') for these]: 
"BLACK"
"RED"
"GREEN"
"YELLOW"
"BLUE"
"MAGENTA"
"CYAN"
"WHITE"
"LIGHTBLACK"
"LIGHTRED"
"LIGHTGREEN"
"LIGHTYELLOW"
"LIGHTBLUE"
"LIGHTMAGENTA"
"LIGHTCYAN"
"LIGHTWHITE"

## Installation

Install via pip:

```bash
pip install altcolor
```

Example code: 

```py
from altcolor.altcolor import colored_text

print(colored_text((244, 5, 7), "Hello World!"))

print("Hello World!")

print(colored_text("BLUE", "Hello World!"))
```
