Im attempting to set a box-shadow color using tinycolor. I know I can use
$("CLASS").css("box-shadow", "VALUE");
But I would like to add the color by using tinycolor (a color manipulation framework) on an existing color variable.
I have tried :
$(".riHover").css("box-shadow", "inset 0px 0px 13px 0px tinycolor.lighten($('.Color').css('background-color'))"
);
But I don't think I am building the string properly. Any thoughts on what I am doing wrong?
Thanks in advance.