Module:Color contrast: Revision history

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.

4 October 2024

13 September 2024

5 September 2024

  • curprev 14:3314:33, 5 September 2024MrT talk contribs 7,150 bytes +7,150 Created page with "-- -- This module implements -- {{Color contrast ratio}} -- {{Greater color contrast ratio}} -- {{ColorToLum}} -- {{RGBColorToLum}} -- local p = {} local HTMLcolor = mw.loadData( 'Module:Color contrast/colors' ) local function sRGB (v) if (v <= 0.03928) then v = v / 12.92 else v = math.pow((v+0.055)/1.055, 2.4) end return v end local function rgbdec2lum(R, G, B) if ( 0 <= R and R < 256 and 0 <= G and G < 256 and 0 <= B and B < 256 ) then..."

14 January 2019

  • curprev 15:4215:42, 14 January 2019 >Tomoneill 6,971 bytes +6,971 copy from https://en.wikipedia.org/w/index.php?title=Module:Color_contrast&oldid=877152614

6 January 2019

  • curprev 17:3817:38, 6 January 2019 >Johnuniq 6,971 bytes +6,971 fix unintended color2lum global error which is causing errors; clean whitespace