Random Color Generator

  • Share this:

Code introduction


This function generates a random color. The color value is composed of three random numbers between 0 and 255, representing red, green, and blue respectively.


Technology Stack : PyQt5.QtGui.QColor

Code Type : Function

Code Difficulty : Intermediate


                
                    
def random_color():
    import random
    from PyQt5.QtGui import QColor

    # Generate a random color
    return QColor(random.randint(0, 255), random.randint(0, 255), random.randint(0, 255))