Jump to content

Main public logs

Combined display of all available logs of Voices of Democracy Wiki. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).

Logs
  • 23:32, 23 April 2025 Vicmotion talk contribs created page Module:Color (Created page with "local p = {} function hex2rgb(hex) hex = hex:gsub("#", "") if #hex == 3 then return tonumber("0x"..hex:sub(1,1)..hex:sub(1,1)), tonumber("0x"..hex:sub(2,2)..hex:sub(2,2)), tonumber("0x"..hex:sub(3,3)..hex:sub(3,3)) elseif #hex == 6 then return tonumber("0x"..hex:sub(1,2)), tonumber("0x"..hex:sub(3,4)), tonumber("0x"..hex:sub(5,6)) end end function rgb2hex(r, g, b) return str...")