import random
# CAC, 3/2023
# This class just allows me to use a single color palette throughout my various scripts.
# It isn't very useful as is, but we will make a better version soon.
colors= ['#c5aeb1', '#e2c1c0', '#d29380', '#ccb97e', '#6667ab', '#86a293', '#884c5e', '#9d848e']

def randomPaletteColor():
    return random.choice(colors)
