🖌️Module for terminal string styling
pip install ColorChalksfrom ColorChalks import ColorChalks
# Print "Hello World!" in yellow color.
print(ColorChalks.FCOLORS.Yellow + "Hello World!")
# Print "Hello World!" with green background color.
# but first you have to reset
print(ColorChalks.COLORS.Reset + ColorChalks.BCOLORS.Green + "Hello World!")
## Print "Hello World!" with green background color with blue foreground color
print(ColorChalks.COLORS.Reset + ColorChalks.BCOLORS.Green + ColorChalks.FCOLORS.Blue + "Hello World!")Note: Version 1.0.3 comes with foreground colors (FCOLORS) and background colors (BCOLORS)
BlackRedGreenYellowBlueMagentaCyanWhiteBrightBlackBrightRedBrightGreenBrightYellowBrightBlueBrightMagentaBrightCyanBrightWhite
NOTE: Use the following command to reset to default color. Prefer to use this command before jumping from Bright colors to normal colors.
print(ColorChalks.COLORS.Reset) 