Random Color Generator Function

  • Share this:

Code introduction


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


Technology Stack : Pyglet, GLubyte, random

Code Type : Function

Code Difficulty : Intermediate


                
                    
def random_color_generator():
    from pyglet.gl import GLubyte
    import random

    def get_random_color():
        # Generate a random color in RGB format
        r = GLubyte(random.randint(0, 255))
        g = GLubyte(random.randint(0, 255))
        b = GLubyte(random.randint(0, 255))
        return (r, g, b)

    return get_random_color