Metadata-Version: 2.4
Name: shelcolors.ansi
Version: 0.1.8
Summary: ANSI color helper. ANSI(color, text, type), get_colors() and clear_screen().
Author: Sheldon
Requires-Python: >=3.8
Description-Content-Type: text/markdown

# shelcolors-ansi



To install, type '`pip install shelcolors.ansi`'.

To use, type '`import shelcolors_ansi`'



Simple ANSI color helper. Use ANSI(color, text, mode)
`mode` is `print` on default but there is also `return`

<details>
    <summary>Also here are the colors</summary>

    ### Mono-scale Colors

    Black = black

    White = white

    Gray = gray

    Light Gray = lightgray

    Dark Gray = darkgray



    ### Red Colors

    Red = red

    Bright Red = brightred

    Dark Red = darkred

    Maroon = maroon

    Crimson = crimson


    ### Yellow and Orange Colors

    Yellow = yellow

    Bright Yellow = brightyellow

    Orange = orange

    Dark Orange = darkorange

    Gold = gold

    Amber = amber

    Mustard = mustard



    ### Green Colors

    Green = green

    Bright Green = brightgreen

    Lime = lime

    Light Green = lightgreen

    Dark Green = darkgreen

    Olive = olive

    Mint = mint



    ### Blue Colors

    Blue = blue

    Bright Blue = brightblue

    Light Blue = lightblue

    Sky Blue = skyblue

    Cyan = cyan

    Aqua = aqua

    Teal = teal

    Navy = navy



    ### Purple and Pink Colors

    Magenta = magenta

    Bright Magenta = brightmagenta

    Purple = purple

    Violet = violet

    Lavender = lavender

    Pink = pink

    Hot Pink = hotpink



    ### Brown Colors

    Brown = brown

    Dark Brown = darkbrown

    Tan = tan

    Beige = beige

</details>

`get_colors()` returns all colors used in `ANSI( ... )`


`clear_screen()` clears screen
