Random RGB Color Generator

  • Share this:

Code introduction


This function generates a random RGB color and returns it as a tuple of RGB values.


Technology Stack : Arcade library

Code Type : Function

Code Difficulty : Intermediate


                
                    
def create_random_color():
    import random
    from arcade import color

    def get_random_color():
        r = random.randint(0, 255)
        g = random.randint(0, 255)
        b = random.randint(0, 255)
        return (r, g, b)

    return get_random_color()                
              
Tags: