Random Hex Color Code Generator

  • Share this:

Code introduction


This function generates a random hexadecimal color code, which is used in web design or graphical user interfaces.


Technology Stack : Python, string, random

Code Type : Python Function

Code Difficulty : Intermediate


                
                    
def random_hex_color():
    import random
    import string

    def _random_string(length):
        letters = string.ascii_letters + string.digits
        return ''.join(random.choice(letters) for i in range(length))

    return '#' + _random_string(6)