Random Color Generator

  • Share this:

Code introduction


This function generates a random color, composed of red, green, and blue values, which are all between 0 and 255.


Technology Stack : PyQt5.QtGui, QColor, random

Code Type : Function

Code Difficulty : Intermediate


                
                    
def random_color():
    from PyQt5.QtGui import QColor
    import random
    
    r = random.randint(0, 255)
    g = random.randint(0, 255)
    b = random.randint(0, 255)
    
    return QColor(r, g, b)