Is there a way to create a series of hex colors in python not mannually, for example ranging from dark green through light green and light yellow to dark yellow. Something like the following but not writing down all the hex code:
#from dark yellow ---> dark green
colors = ['#ffff00','#ffffcc','#d6f5d6','#99e699','#85e085','#70db70','#5cd65c','#47d147','#33cc33','#2eb82e','#248f24','#1f7a1f','#196619','#145214','#0f3d0f']
I would imagine something like range()
for numbers.