acid16/acid16.py

316 lines
12 KiB
Python
Raw Normal View History

2021-09-14 00:06:30 -04:00
#!/usr/bin/env python3
import colorsys, optparse
2021-09-14 00:06:30 -04:00
from PIL import Image, ImageDraw, ImageFont
2021-12-09 17:23:12 -05:00
modes = ["base16","xresources"]
RED, YELLOW, GREEN, CYAN, BLUE, MAGENTA = 0, 60, 120, 200, 240, 300
2022-07-09 11:56:42 -04:00
blendTargets = ["background","foreground","accent"]
2021-12-09 17:23:12 -05:00
2021-09-14 00:06:30 -04:00
parser = optparse.OptionParser(usage="usage: %prog [options] background accent [foreground]")
parser.add_option("-a", "--author",
action="store",
dest="author",
default="acid16",
help="author name")
2021-12-09 17:23:12 -05:00
parser.add_option("-b", "--hue-blend",
2021-09-14 00:06:30 -04:00
action="store",
dest="hueBlend",
2021-09-14 00:06:30 -04:00
default=0.0,
2021-12-09 17:23:12 -05:00
help="mix ratio between hues and background")
2022-07-09 11:56:42 -04:00
parser.add_option("-B", "--hue-blend-target",
action="store",
dest="hueBlendTarget",
default="background",
2023-04-05 20:02:44 -04:00
help="what to blend the hues with: background (default), foreground, accent")
2022-07-07 22:32:08 -04:00
parser.add_option("-c", "--contrast",
action="store",
dest="foreContrast",
default=7.0,
help="contrast between foreground and background (default 7)")
parser.add_option("-e", "--equiluminant",
action="store_true",
dest="equiluminant",
default=0.0,
2021-12-09 17:23:12 -05:00
help="use the same luminance for last hues")
2022-07-07 22:32:08 -04:00
parser.add_option("-m", "--mode",
action="store",
2022-07-07 22:32:08 -04:00
dest="mode",
default="base16",
help="what to generate ({})".format(", ".join(modes)))
parser.add_option("-n", "--name",
action="store",
dest="name",
default="acid16",
help="scheme name")
parser.add_option("-p", "--preview",
action="store_true",
dest="showPreview",
default=False,
help="generate a preview image")
parser.add_option("--hsl",
action="store_true",
dest="hsl",
default=0.0,
help="treat background color as gamma-encoded HSL")
2021-12-09 17:23:12 -05:00
base16Options = optparse.OptionGroup(parser, "Base16 options")
base16Options.add_option("-l", "--light-brown",
action="store_true",
dest="lightBrown",
default=0.0,
help="don't darken last color")
parser.add_option_group(base16Options)
2021-09-14 00:06:30 -04:00
(options, args) = parser.parse_args()
2022-07-09 11:56:42 -04:00
def dieIf(cond, message):
cond and parser.error(message)
dieIf(options.mode not in modes, "unknown mode \"{}\"".format(options.mode))
dieIf(len(args) < 2, "need background and accent colors minimum")
dieIf(options.hueBlendTarget not in blendTargets, "unknown hue blend target \"{}\"".format(options.hueBlendTarget))
2021-09-14 00:06:30 -04:00
def parseTuple(st):
return tuple(float(x) for x in st.split(","))
def floatOrDie(fl, errSt):
try:
return float(fl)
except:
parser.error(errSt)
2021-12-09 17:23:12 -05:00
class ImageHandler:
def __init__(self, color):
self.font = ImageFont.truetype("LiberationMono-Regular.ttf", 20)
self.image = Image.new("RGB", (640, 480), usable(color))
self.draw = ImageDraw.Draw(self.image)
def size(self):
return self.image.size
def desc(self, t, a, b):
return "{} (contrast {:.1f})".format(t, contrast(luminance(a), luminance(b)))
def text(self, x, y, t, col, other):
self.draw.text((x, y), self.desc(t, col, other), usable(col), self.font)
def show(self):
self.image.show()
def drawPalette(self, cols):
w, h = self.size()
for i in range(len(cols)):
im.draw.rectangle((i*40,h-40,i*40+39,h), usable(cols[i]))
def toLinear(col):
return tuple(x/12.92 if x < 0.04045 else ((x+0.055)/1.055)**2.4 for x in col)
def toSRGB(col):
return tuple(x*12.92 if x < 0.0031308 else 1.055*x**(1/2.4) - 0.055 for x in col)
def luminance(col):
return col[0]*0.2126+col[1]*0.7152+col[2]*0.0722
foreContrast = floatOrDie(options.foreContrast, "foreground contrast must be a number")
bgHue, bgSat, origLum = parseTuple(args[0])
bgLum = luminance(toLinear(colorsys.hls_to_rgb(bgHue, origLum, bgSat))) if options.hsl else origLum
2021-09-14 00:06:30 -04:00
accentHue, accentSat = parseTuple(args[1])
foreHue, foreSat = parseTuple(args[2]) if len(args) > 2 else (0.0, 0.0)
2022-07-09 11:56:42 -04:00
hueBlend = floatOrDie(options.hueBlend, "hue blend must be a number")
2021-09-14 00:06:30 -04:00
def lerp(a, b, t):
return a + (b - a) * t
2021-12-09 17:23:12 -05:00
def collapse(l):
return [y for x in l for y in x]
def reposition(a, b, t, c, d):
return lerp(c, d, (t - a) / (b - a))
2021-09-14 00:06:30 -04:00
def mixColors(a, b, t):
return tuple(lerp(a[i], b[i], t) for i in range(3))
2021-12-09 17:23:12 -05:00
def hue(col):
return colorsys.rgb_to_hls(*col)[0]
def saturation(col):
return colorsys.rgb_to_hls(*col)[2]
2021-09-14 00:06:30 -04:00
def contrast(a, b):
return (max(a, b) + 0.05) / (min(a, b) + 0.05)
2021-09-14 00:06:30 -04:00
def lumFromContrast(lum, ratio):
2021-09-14 00:06:30 -04:00
hi = ratio*lum + (ratio - 1)*0.05
lo = (lum + 0.05 - ratio * 0.05) / ratio
if hi == min(1.0, hi): return hi
if lo == max(0.0, lo): return lo
hiCon = 1.05 / (lum + 0.05)
loCon = (lum + 0.05) / 0.05
return hi if hiCon > loCon else lo
def clamp(x):
return min(1.0, max(x, 0.0))
2021-09-14 00:06:30 -04:00
def makeColor(hue, lum, sat = 1.0):
orig = luminance(colorsys.hls_to_rgb(hue, 0.5, sat))
return tuple(min(1.0, x) for x in colorsys.hls_to_rgb(hue, 0.5 * (lum / orig) if lum < orig else (0.5 + 0.5 * ((lum - orig) / (1.0 - orig))), sat))
2021-12-09 17:23:12 -05:00
def makeBackground():
return makeColor(bgHue, bgLum, bgSat)
def foregroundLum(bg = bgLum):
return lumFromContrast(bg, foreContrast)
CONSTRAIN_LOWER = False
CONSTRAIN_UPPER = True
def constrain(orig, compare, limit, mode=CONSTRAIN_UPPER):
comp = lambda a, b: a > b if mode else a < b
return lumFromContrast(compare, limit) if comp(contrast(orig, compare), limit) else orig
2021-12-09 17:23:12 -05:00
def genRainbow(hues, minCon, maxCon):
2022-07-09 11:56:42 -04:00
target = {"background": (bgHue,bgSat),
"foreground": (foreHue, foreSat),
"accent": (accentHue, accentSat)}[options.hueBlendTarget]
backFull = colorsys.hls_to_rgb(target[0], 0.5, target[1])
2021-12-09 17:23:12 -05:00
rainbow = [mixColors(colorsys.hls_to_rgb(hue/360.0, 0.5, 1.0), backFull, hueBlend) for hue in hues]
2021-12-09 17:23:12 -05:00
rainLums = [luminance(col) for col in rainbow]
hiLum, loLum = max(rainLums), min(rainLums)
minLum, maxLum = sorted((lumFromContrast(bgLum, minCon), lumFromContrast(bgLum, minCon if options.equiluminant else maxCon )))
2021-12-09 17:23:12 -05:00
maxLum = min(1.0, maxLum)
darkenBrown = (options.equiluminant or options.lightBrown)
rainHLS = [colorsys.rgb_to_hls(*col) for col in rainbow]
return [makeColor(rainHLS[c][0], reposition(loLum, hiLum+0.00001, rainLums[c], minLum, maxLum) if c < 7 or darkenBrown else minLum, rainHLS[c][2] / (1 if c < 7 else 1.5)) for c in range(len(rainbow))]
def printBanner(commentChar):
say = lambda st: print(commentChar+" "+st)
sayIf = lambda cond, st: say(st) if cond else None
2021-12-09 17:23:12 -05:00
say("generated by acid16 - https://git.lain.church/whut/acid16")
say("--- settings ---")
say("background {}: {} {} {}".format("HSL" if options.hsl else "HCL", bgHue, bgSat, origLum))
2021-12-09 17:23:12 -05:00
say("accent HC : {} {}".format(accentHue, accentSat))
say("foreground HC : {} {}".format(foreHue, foreSat))
2022-07-09 11:56:42 -04:00
sayIf(hueBlend > 0.0, "hue blend : {}, with {}".format(hueBlend, options.hueBlendTarget))
sayIf(foreContrast != 7, "fg contrast : {}".format(foreContrast))
sayIf(options.equiluminant, "equiluminant hues")
sayIf(options.hsl, "using gamma-encoded HSL")
2021-09-14 00:06:30 -04:00
def usable(col):
return tuple(int(x*255+0.5) for x in toSRGB(col))
2021-09-14 00:06:30 -04:00
def toHex(col):
return "".join(["{:02x}".format(x) for x in usable(col)])
2021-12-09 17:23:12 -05:00
def base16Generate():
background = makeBackground()
foreLum = clamp(foregroundLum())
foreCon = contrast(foreLum, bgLum)
2021-12-09 17:23:12 -05:00
foreground = makeColor(foreHue, foreLum, foreSat)
commentLum = lumFromContrast(bgLum, max(4.5, 1.0 + foreCon / 2.0))
2021-12-09 17:23:12 -05:00
comment = makeColor(accentHue, commentLum, accentSat)
2021-09-14 00:06:30 -04:00
accentLum = constrain(lumFromContrast(foreLum, 4.5), bgLum, 2.0)
accent = makeColor(accentHue, accentLum, accentSat)
2021-09-14 00:06:30 -04:00
statusBgLum = lumFromContrast(bgLum, 1.25)
backStatus = makeColor(bgHue, statusBgLum, bgSat)
foreStatus = makeColor(foreHue, lumFromContrast(statusBgLum, 7.0), foreSat)
2021-12-09 17:23:12 -05:00
# supposedly these two are rarely used so i don't care
lastTwo = [lerp(foreLum, 1.0 if foreLum > bgLum else 0.0, (x + 1) / 3) for x in range(2)]
2021-09-14 00:06:30 -04:00
2021-12-09 17:23:12 -05:00
foreLight = makeColor(foreHue, lastTwo[0], foreSat)
backLight = makeColor(bgHue, lastTwo[1], bgSat)
2021-09-14 00:06:30 -04:00
2021-12-09 17:23:12 -05:00
rainbow = genRainbow([RED, 23, YELLOW, GREEN, CYAN, BLUE, MAGENTA, 15], 4.5, 7.0)
cols = [background, backStatus, accent, comment, foreStatus, foreground, foreLight, backLight] + rainbow
2021-12-09 17:23:12 -05:00
printBanner("#")
if options.lightBrown:
print("# not darkening last color (brown)")
2021-12-09 17:23:12 -05:00
print("\nscheme: \"{}\"".format(options.name))
print("author: \"{}\"".format(options.author))
2021-12-09 17:23:12 -05:00
for i in range(len(cols)):
print("base{:02X}: \"{}\"".format(i, toHex(cols[i])))
return cols
2021-12-09 17:23:12 -05:00
def base16Preview(im, cols):
background, foreground, accent, comment, backLighter, foreDark, rainbow = cols[0], cols[5], cols[2], cols[3], cols[1], cols[4], cols[8:]
2021-12-09 17:23:12 -05:00
w, h = im.size()
im.draw.rectangle((2, 2, w-2, 32), usable(accent))
im.text(5, 5, "Foreground on highlight", foreground, accent)
im.text(5, 45, "Foreground on background", foreground, background)
im.text(5, 85, "# Comment color", comment, background)
2021-12-09 17:23:12 -05:00
for i in range(len(rainbow)):
im.draw.rectangle((4, 120+i*35, 84, 145+i*35), usable(rainbow[i]))
im.text(90, 123+i*35, "Colored text", rainbow[i], background)
im.draw.rectangle((0, h-80, w, h-40), usable(backLighter))
im.text(5, h-75, "Status foreground", foreDark, backLighter)
2021-12-09 17:23:12 -05:00
im.draw.line((0, h-42, w, h-42), usable(foreground), 2)
im.drawPalette(cols)
2021-09-14 00:06:30 -04:00
2021-12-09 17:23:12 -05:00
def xresourcesGenerate():
background = makeBackground()
foreLum = clamp(foregroundLum())
2021-12-09 17:23:12 -05:00
foreground = makeColor(foreHue, foreLum, foreSat)
cursor = makeColor(accentHue, constrain(lumFromContrast(foreLum, 3), bgLum, 2.0), accentSat)
2021-12-09 17:23:12 -05:00
rainHues = [RED, GREEN, YELLOW, BLUE, MAGENTA, CYAN]
hiCon, loCon = (4.5, 7.0), (3.0, 4.5)
loRainbow = genRainbow(rainHues, *loCon)
hiRainbow = [makeColor(hue(c), lumFromContrast(luminance(c), 3) if foreLum > bgLum else luminance(c) / 3, saturation(c)) for c in loRainbow]
2021-12-09 17:23:12 -05:00
darkRainbow, lightRainbow = (loRainbow, hiRainbow) if foreLum > bgLum else (hiRainbow, loRainbow)
firstGrey = min(lumFromContrast(bgLum, 3), lumFromContrast(bgLum, 4.5))
2021-12-09 17:23:12 -05:00
greys = [makeColor(0, lum, 0) for lum in sorted((firstGrey, lumFromContrast(firstGrey, 3)))]
2021-09-14 00:06:30 -04:00
2021-12-09 17:23:12 -05:00
minLum, maxLum = sorted((bgLum, foreLum))
black = makeColor(0, minLum / 2.0, 0)
white = makeColor(0, (1.0 + maxLum) / 2.0, 0)
cols = [black] + darkRainbow + [greys[1], greys[0]] + lightRainbow + [white]
2021-12-09 17:23:12 -05:00
print("*foreground: #"+toHex(foreground))
print("*background: #"+toHex(background))
print("*cursorColor: #"+toHex(cursor))
2021-09-14 00:06:30 -04:00
2021-12-09 17:23:12 -05:00
for i in range(len(cols)):
print("*color{}: #{}".format(i, toHex(cols[i])))
2021-09-14 00:06:30 -04:00
2021-12-09 17:23:12 -05:00
return [background, foreground, cursor] + cols
2021-09-14 00:06:30 -04:00
2021-12-09 17:23:12 -05:00
def xresourcesPreview(im, cols):
background, foreground, cursor = cols[:3]
cols = cols[3:]
w, h = im.size()
im.text(5, 5, "Foreground on background", foreground, background)
im.draw.rectangle((2, 27, w-2, 52), usable(cursor))
im.text(5, 30, "Foreground on cursor color", foreground, cursor)
2021-09-14 00:06:30 -04:00
for i in range(len(cols)):
2021-12-09 17:23:12 -05:00
x, y = (i // 8) * 300, (i % 8) * 30
im.text(20+x, 80+y, "Color", cols[i], background)
im.drawPalette(cols)
cols = globals()[options.mode+"Generate"]()
if options.showPreview:
im = ImageHandler(cols[0])
globals()[options.mode+"Preview"](im, cols)
2021-09-14 00:06:30 -04:00
im.show()