All public logs
Jump to navigation
Jump to search
Combined display of all available logs of Fox Labs Wiki. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).
- 02:10, 4 November 2023 Inari talk contribs created page Module:Value color (Created page with "local getArgs = require('Module:Arguments').getArgs local p = {} local function rgb(color) local _, _, R, G, B = color:find('(%w%w)(%w%w)(%w%w)') return tonumber(R, 16), tonumber(G, 16), tonumber(B, 16) end function p.main(frame) local args = getArgs(frame) local value = tonumber(args[1]) local minValue = tonumber(args[2]) local maxValue = tonumber(args[3]) if value == nil or minValue == nil or maxValue == nil then return require('Module:Error').error{'Par...")