Welcome to the Umamusume Wiki! If you want to contribute, please read the guidelines.

Module:Colors: Revision history

Jump to navigation Jump to search

Diff selection: Mark the radio buttons of the revisions to compare and hit enter or the button at the bottom.
Legend: (cur) = difference with latest revision, (prev) = difference with preceding revision, m = minor edit.

12 December 2024

11 December 2024

  • curprev 23:5623:56, 11 December 2024 Snep talk contribs 2,521 bytes +302 No edit summary
  • curprev 23:5123:51, 11 December 2024 Snep talk contribs 2,219 bytes +2,219 Created page with "local p = {} -- https://gist.github.com/fernandohenriques/12661bf250c8c2d8047188222cab7e28 function p.hexToRgb(hex) local hexR = hex:gsub("#","") if hexR:len() == 3 then return (tonumber("0x"..hexR:sub(1,1))*17)/255, (tonumber("0x"..hexR:sub(2,2))*17)/255, (tonumber("0x"..hexR:sub(3,3))*17)/255 else return tonumber("0x"..hexR:sub(1,2))/255, tonumber("0x"..hexR:sub(3,4))/255, tonumber("0x"..hexR:sub(5,6))/255 end end function p.rgbToHex(r, g,..."