Metadata-Version: 2.1
Name: shellplus
Version: 0.0.5a1
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: Public Domain
Classifier: Programming Language :: Python :: 3.11
Description-Content-Type: text/markdown
Requires-Dist: rich

# ShellPlus

ShellPlus is a Python package designed to streamline terminal text formatting, providing predefined styles and colors for efficient coding with colors and formatting in the terminal.

## Installation

You can install ShellPlus using pip3:

```bash
pip3 install shellplus

Example usage:

```python
from shellplus import styles, colors1 as colors

# Print a warning message
styles.print('This is a warning message.', 'warn')

# Print a soft error message
styles.print('This is a soft error message.', 'serr')

# Print a colorful message using 'gum pink'
colors.print('This is a colorful message.', 'gum pink')

# Print a differently colorful message using 'salmon'
colors.print('This is a differently colorful message.', 'salmon')
