box-shadow : is there a "box-shadow-color" ?

Posted by Epaga on Stack Overflow See other posts from Stack Overflow or by Epaga
Published on 2010-06-10T08:47:56Z Indexed on 2010/06/10 8:53 UTC
Read the original article Hit count: 511

Filed under:
|

Note: CSS novice here. Be gentle. ;-)

I have the following CSS:

 ...
 -webkit-box-shadow: inset 0px 0px 2px #a00;
 -moz-box-shadow: inset 0px 0px 2px #a00;
 ...

Now I am trying to extract that color to make the page colors "skinnable". Is there any way of doing this? Simply removing the color, and then using the same key again later overwrites the original rule.

There doesn't seem to be a -webkit-box-shadow-color, at least Google turns nothing up.

© Stack Overflow or respective owner

Related posts about css

Related posts about box-shadow