Metadata-Version: 2.1
Name: colego
Version: 0.0.1
Summary: Simple package that converts a text to have colors in a terminal output.
Home-page: UNKNOWN
Author: Hastaluego
Author-email: superduperst3ve@gmail.com
License: MIT
Keywords: color,colour,terminal,output,text,colored,coloured
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Education
Classifier: Operating System :: Microsoft :: Windows :: Windows 10
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
License-File: LICENSE.txt

##################DESCRIPT#######################

This is a very simple package that converts a text to have colors in a terminal output.
Available colors: grey, red, green, yellow, blue, purple, cyan, white.
Three methods: txtcolor(), bgcolor(), complrandom() -> all of them returns a string.

Note: This package is still being worked on as the colors only works on specific terminals, one of them which is VSC's terminal.
Note: There is a bug where you can't use start_index and stop_index with random set to True.

##################EXAMPLES#######################

Two examples of a txtcolor():
    # Example 1:
        print(txtcolor(text="Hello World!", random=True)) # each character will have a random color

    # Example 2:
        print(txtcolor(text="Hello World!", color="red", start_index=3, stop_index=7, bold=True))

Two examples of bgcolor():
    # Example 1:
        print(bgcolor(text="Hello World!", random=True))

    # Example 2:
        print(txtcolor(text="Hello World!", color="blue", start_index=3, stop_index=7))

One example of complrandom():
    # Example 1:
        print(complrandom(text="Hello World!"))

#################################################

Change Log
==========

0.0.1 (2021-12-05)
------------------
- First Release

