Skip to content

Instantly share code, notes, and snippets.

View peetzweg's full-sized avatar
🍋

peetzweg/ peetzweg

🍋
View GitHub Profile
@peetzweg
peetzweg / HammerspoonColorPicker.lua
Last active July 26, 2020 17:04
Hammerspoon Color Picker Script
local modifier = {"alt"}
function rgbToHex(red, green, blue)
return "#" .. string.format("%x", red) .. string.format("%x", green) ..
string.format("%x", blue)
end
function hslToRgb(h, s, l)
if s == 0 then return l, l, l end
local function to(p, q, t)