Nothing
col2hex<-function(col){
rgb<-col2rgb(col)[,1]
hex<-c(0:9,LETTERS[1:6])
paste("#",paste(hex[rgb%/%16+1],hex[rgb%%16+1],sep="",collapse=""),sep="")
}
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.