diff options
author | davidovski <david@davidovski.xyz> | 2022-11-29 13:39:17 +0000 |
---|---|---|
committer | davidovski <david@sendula.com> | 2022-11-29 13:39:17 +0000 |
commit | c504f179d2a7b3232ad1fbd77de160430e0830ed (patch) | |
tree | 33c20d69afecee8644645d29354c37d1f43cde3d /gif.py | |
parent | 15941822a4c2b7e2e6893a6ce505c6c83a6d93de (diff) |
Use different colour pallet for image
Diffstat (limited to 'gif.py')
-rw-r--r-- | gif.py | 13 |
1 files changed, 8 insertions, 5 deletions
@@ -22,12 +22,15 @@ colors = [ 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") |