Bright Text Colors
The following are a list of text colors inksplash provides.
Example
from inksplash import chameleon
print(chameleon.bright_black("Hello world"))
Note
The above code will print the text that will be in a bright black color.
The following is a list of available bright colors that we can use on the chameleon object.
bright_black
Applies a bright black color to the text.
Parameters:
value(str): The input text.Returns:
str: The input text with bright black color.
bright_red
Applies a bright red color to the text.
Parameters:
value(str): The input text.Returns:
str: The input text with bright red color.
bright_green
Applies a bright green color to the text.
Parameters:
value(str): The input text.Returns:
str: The input text with bright green color.
bright_yellow
Applies a bright yellow color to the text.
Parameters:
value(str): The input text.Returns:
str: The input text with bright yellow color.
bright_blue
Applies a bright blue color to the text.
Parameters:
value(str): The input text.Returns:
str: The input text with bright blue color.
bright_purple
Applies a bright purple color to the text.
Parameters:
value(str): The input text.Returns:
str: The input text with bright purple color.
bright_cyan
Applies a bright cyan color to the text.
Parameters:
value(str): The input text.Returns:
str: The input text with bright cyan color.
bright_white
Applies a bright white color to the text.
Parameters:
value(str): The input text.Return`s:
str`: The input text with bright white color.