You can download this code by clicking the button below.
This code is now available for download.
This function takes two arguments, the first one is a color name, and the second one is an integer representing the number of random colors to generate. The function returns a list of randomly generated colors.
Technology Stack : Crossbarlib, Colors, random
Code Type : Function
Code Difficulty : Intermediate
def random_color(arg1, arg2):
from crossbarlib.util import Colors
import random
if arg1 not in Colors:
raise ValueError("Invalid color name")
color = Colors[arg1]
return color.get_random_color(arg2)