Nothing
library(colorspace)
blueShade <- function(inrgb) {
rgb <- col2rgb(inrgb)
RGB <- RGB(t(rgb)/255)
# Special case "black"
if (all(coords(RGB) == 0))
RGB <- RGB(0, 0, .1)
LCH <- as(RGB, "polarLUV")
lch <- coords(LCH)
# Scale the chroma so greys become blues
hcl(240, 20 + .8*lch[2], lch[1])
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.