This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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) |
NewerOlder