You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is the code I use with Python to change the color:
pip install pillow numpy
>>>fromPILimportImage>>>importnumpyasnp>>>im_frame=Image.open('static/img/texture-bw.png')
>>>np_frame=np.array(im_frame)
>>>b= (np_frame*np.array([194/256, 123/256, 170/256])//1).astype(np.uint8) # this numbers here are the primary color of the pink theme>>>im=Image.fromarray(b)
>>>im.save("static/img/texture-pink.png")
The text was updated successfully, but these errors were encountered:
Hello, I made the image pink for you!
This is the code I use with Python to change the color:
The text was updated successfully, but these errors were encountered: