Compare commits

...

2 Commits

Author SHA1 Message Date
davidovski 40197ffde5 Use different colour pallet for image 2022-11-29 13:39:17 +00:00
davidovski 3c0dc265ea Removed orange color 2022-11-29 13:37:04 +00:00
1 changed files with 8 additions and 5 deletions

13
gif.py
View File

@ -21,13 +21,16 @@ colors = [
color("#191919"),
color("#282a2e"),
color("#373b41"),
color("#f58f44")
]
colors2 = colors + [
color("#f58f44")
]
sorted(colors, key=rgb_to_v)
p = len(colors)
sorted(colors2, key=rgb_to_v)
def make(filename, inp=None):
def make(filename, colors, inp=None):
p = len(colors)
w = int(128 / p) * p
h = int(128 / p) * p
@ -58,7 +61,7 @@ def make(filename, inp=None):
frames[0].save(filename, mode="P", format="GIF", append_images=frames[1:], save_all=True, duration=100, loop=0)
make("dist/images/bg.gif")
make("dist/images/remotecontrol.gif", inp="images/remotecontrol-small.png")
make("dist/images/bg.gif", colors)
make("dist/images/remotecontrol.gif", colors2, inp="images/remotecontrol-small.png")