chore: format

This commit is contained in:
mvllow 2022-01-21 20:21:57 -06:00
commit 88a19573b0
3 changed files with 5 additions and 21 deletions

View file

@ -26,12 +26,7 @@ function util.blend(fg, bg, alpha)
return math.floor(math.min(math.max(0, ret), 255) + 0.5)
end
return string.format(
'#%02X%02X%02X',
blendChannel(1),
blendChannel(2),
blendChannel(3)
)
return string.format('#%02X%02X%02X', blendChannel(1), blendChannel(2), blendChannel(3))
end
return util