Metadata-Version: 2.1
Name: ziyy
Version: 2.0.0b0
Summary: Convenient Terminal Output Styler.
Author-email: alMukaafih <almukaafih@gmail.com>
Project-URL: Homepage, https://github.com/alMukaafih/ziyy
Project-URL: Documentation, https://github.com/alMukaafih/ziyy#readme
Project-URL: Repository, https://github.com/alMukaafih/ziyy.git
Project-URL: Issues, https://github.com/alMukaafih/ziyy/issues
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.8
Description-Content-Type: text/markdown

# Ziyy - Convenient Terminal Output Styler.

Style your Terminal output using html like Tags. For example to make your output bold, enclose it using `<b>` and `</b>` to make it bold.

> You can omit the closing tag.

## Tags
The following is a table of all supported tags,
| Tag | Description |
| --- | ----------- |
| `<c.'color'>...</c>` | Color text using `color`.
| `<x.'color'>...</x>` | Color the background of text using `color`.
| `<b>...</b>` | Embolden text.
`<i>...</i>` | Italicize text.
`<u>...</u>` | Underline text.
`<s>...</s>` | Strike through text.

## Valid Colors
These are the current valid colors for both text and background:
| Color | Description |
| ----- | ----------- |
black | Terminal's default black color.
red | Terminal's default red color.
green | Terminal's default green color.
yellow | Terminal's default yellow color.
blue | Terminal's default blue color.
magenta | Terminal's default magenta color.
cyan | Terminal's default cyan color.
white | Terminal's default white color.
rgb(#, #, #) | RGB color. # represents a Number within the Range 0 - 255

