Skip to content

Instantly share code, notes, and snippets.

@argyleink
Created February 7, 2020 07:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save argyleink/3e21c080cd1ab2cfdebdff062f2546f3 to your computer and use it in GitHub Desktop.
Save argyleink/3e21c080cd1ab2cfdebdff062f2546f3 to your computer and use it in GitHub Desktop.
/* HSL's 50% lightness */
/* middle grey */
hsl(0 0% 50%)
lab(53.39% 0 -0.01)
/* 3.94:1 ❌ */
/* lime */
hsl(100 100% 50%)
lab(88.66% -77.99 84.31)
/* 1.34:1 ❌ */
/* blueberry */
hsl(200 100% 50%)
lab(66.5% -6.22 -52.07)
/* 2.56:1 ❌ */
/* scored against a white background */
/* LAB's 50% lightness */
/* middle grey */
lab(50% 0 0)
hsl(0 0% 46.6%)
/* 4.47:1 ❌ */
/* middle green */
lab(50% -55.45 128)
hsl(100 100% 27.1%)
/* 4.41:1 ❌ */
/* blueberry */
lab(50% -33.2 -52)
hsl(200 100% 40.6%)
/* 3.79:1 ❌ */
/* scored against a white background */
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment