Bright Background
The following are a list of bright background colors inksplash provides.
Example
from inksplash import chameleon
print(chameleon.bg_bright_black("Hello world"))
Note
The above code will print the text that will have a bright background color of black.
The following is a list of available bright background colors that we can use on the chameleon object.
bg_bright_black
Applies a bright black background color to the text.
Parameters:
value(str): The input text.Returns:
str: The input text with a bright black background color.
bg_bright_red
Applies a bright red background color to the text.
Parameters:
value(str): The input text.Returns:
str: The input text with a bright red background color.
bg_bright_green
Applies a bright green background color to the text.
Parameters:
value(str): The input text.Returns:
str: The input text with a bright green background color.
bg_bright_yellow
Applies a bright yellow background color to the text.
Parameters:
value(str): The input text.Returns:
str: The input text with a bright yellow background color.
bg_bright_blue
Applies a bright blue background color to the text.
Parameters:
value(str): The input text.Returns:
str: The input text with a bright blue background color.
bg_bright_purple
Applies a bright purple background color to the text.
Parameters:
value(str): The input text.Returns:
str: The input text with a bright purple background color.
bg_bright_cyan
Applies a bright cyan background color to the text.
Parameters:
value(str): The input text.Returns:
str: The input text with a bright cyan background color.
bg_bright_white
Applies a bright white background color to the text.
Parameters:
value(str): The input text.Returns:
str: The input text with a bright white background color.