Metadata-Version: 2.1
Name: yatts
Version: 0.0.3
Summary: Styles terminal text
Home-page: https://github.com/xelorabb/yatts
Author: xelorabb
Author-email: xelorabb@gmail.com
License: UNKNOWN
Keywords: python,color,text,style,terminal,console
Platform: UNKNOWN
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3.9
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
License-File: LICENSE

## YATTS - Yet Another Terminal Text Styler

Styles terminal text

#### Examples
```python
# Prints yatts with dark green text color
print(style("yatts", ['green', 'dark']))

# Prints yatts with red text color and dark yellow background
print(style("yatts", 'red', ['yello', 'dark']))

# Prints yatts with white text color, blue background and italic text style
print(style("yatts", bgcolor='blue', italic=True))
```

#### Function Arguments
```python
def style(
  text,
  color='white',
  bgcolor=None,
  bold=False,
  italic=False,
  underline=False,
  striketrough=False
):
```
#### Color Palette
![color palette](https://raw.githubusercontent.com/xelorabb/yatts/master/color_palette.png)


