Metadata-Version: 2.4
Name: trgb
Version: 0.1.2
Summary: Library for Python with colors, styles, support rgb and 256 colors for terminal
Author: 13
License: MIT
Keywords: ansi,terminal,colors,rgb
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.10
Description-Content-Type: text/markdown

# TerminalRGB - trgb

A library for styling text in a terminal using ANSI-codes for Python

-------------------------

Functional:

Colors, Styles, RGB and 256 palette

import:

'''bash

    pip install trgb

'''py

    from trgb import red, blue, bold, rgb ...

using:

'''py

    print(red("Print red text"))

    --------------------------- or

    style = red("Print red text")
    print(red)

the ability to stack styles: 

## WARNING: the interpreter may consider your action to be an error - use type ignore

'''py

    print(bold + rgb(1,1,1)("Hello World!"))

    --------------------------- or

    style = bold + rgb(4, 239, 8)
    print(style("Hello World!"))


you can stack as many styles as you want:

'''py

    style = bg_rgb(1,1,1) + rgb(2,2,2) + italic
    print(style("text"))

# I wish you a pleasant experience. Good luck!
