Skip to content

Instantly share code, notes, and snippets.

View flabbet's full-sized avatar

Krzysztof Krysiński flabbet

View GitHub Profile
@flabbet
flabbet / colorPaletteGenerator.py
Created June 29, 2020 13:11
Generator of HSL color palette/panel image
from PIL import Image
import colorsys
width = 360
height = 100
image = Image.new("RGB", (width, height))
for y in range(height):
for x in range(width):