Main public logs
From MuttWiki
Jump to navigationJump to search
Combined display of all available logs of MuttWiki. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).
- 09:11, 22 February 2025 Bofh talk contribs created page Module:Gradient (Created page with "local p={} function parse_colour(c) return { tonumber(string.sub(c,1,2),16), tonumber(string.sub(c,3,4),16), tonumber(string.sub(c,5,6),16) } end function fmt_colour(r,g,b) return string.format("%02x%02x%02x",math.floor(r),math.floor(g),math.floor(b)) end function p.rgb(frame) local r,g,b = parse_colour(frame.args[1]) local r2,g2,b2 = parse_colour(frame.args[2]) local text = frame.args[3] local n = mw.ustring.len(text) local out = "" local dr,dg,db = (r2...")