Metadata-Version: 2.1
Name: rainbow_prompt
Version: 0.0.2
Summary: This package aims to facilitate and simplify the use of colors in the prompt with python.
Author: David Marques
Author-email: davidmarques99@hotmail.com
Requires-Python: >=3.12,<4.0
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.12
Description-Content-Type: text/markdown

# Welcome to the Rainbow package!

## Introduction
The `Rainbow` module provides functions to add color to text in the terminal or prompt.

This package aims to make it easier to use colors in the prompt with Python.

Say goodbye to those horrible-to-remember character sets that we had to use to insert colors into the prompt. With this module, coloring the prompt will be quick and easy.

This is a simple module, containing just two functions.

## Installation
You can install `Rainbow` via pip:
- pip install rainbow_prompt

## Usage

### Importing the Module
```python
from rainbow import print_colored_string, return_colored_string
```

### Printing Colored Text
```python
print_colored_string("Hello, World!", "green")
```

### Returning Colored Text
```python
colored_text = return_colored_string("Hello, World!", "red")
print(colored_text)
```

## Available Colors
The following color names are available:
- black
- red
- green
- yellow
- blue
- magenta
- cyan
- white

Available Backgrounds:
- bg_black
- bg_red
- bg_green
- bg_yellow
- bg_blue
- bg_magenta
- bg_ciano
- bg_white

Available Styles:
- style_negrito
- style_sublinhado
- style_invertido

Note: Make sure to use these color names exactly as specified.

## Example
```python
from ColoredPrompt import print_colored_string

print_colored_string("This is a colored prompt.", "blue")
print_colored_string("Error!", "red")
print_colored_string("Warning!", "yellow")
```
