Metadata-Version: 2.1
Name: color_text
Version: 1.0.0
Summary: A package for printing colored text
Home-page: UNKNOWN
Author: None
License: MIT
Description: # color_text
        
        This is a package for printing colored texts.这是一个用来打印彩色文字的包.
        
        ## install
        
        ```bash
        pip install color_text
        ```
        
        ## example
        
        ```python
        from color_text import *
        
        
        printLightRed("This is a light red text.")
        printYellow("This is a yellow text.")
        printRed("This is a red text.")
        printGreen("This is a green text.")
        printBlack("This is a black text.")
        printBlue("This is a blue text.")
        printPurple("This is a purple text.")
        printWhite("This is a white text.")
        printGrey("This is a grey text.")
        printGray("This is a grey text too.")
        printLightBlue("This is a light blue text.")
        printVeryLightGreen("This is a very light green text.")
        printLightPurple("This is a light purple text.")
        printLightYellow("This is a light yellow text.")
        printGlossWhite("This is a gloss white text.")
        printLightGreen("This is a light green text.")
        printLightGreen("This is a light green text too.", 2)
        ```
        
        
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3.8
Requires-Python: ==3.8.*
Description-Content-Type: text/markdown
