[mod] random answerer: add random hex color generator

This commit is contained in:
Bnyro 2023-08-23 15:41:34 +02:00 committed by Markus Heiser
parent b0d2cd5ca9
commit 5a5cfc1930

View file

@ -38,12 +38,18 @@ def random_uuid():
return str(uuid.uuid4())
def random_color():
color = "%06x" % random.randint(0, 0xFFFFFF)
return f"#{color.upper()}"
random_types = {
'string': random_string,
'int': random_int,
'float': random_float,
'sha256': random_sha256,
'uuid': random_uuid,
'color': random_color,
}