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.

link|improve this question

feedback

4 Answers

up vote 14 down vote accepted

No:

http://dev.w3.org/csswg/css3-background/#the-box-shadow

You can verify this in Chrome and Firefox by checking the list of computed styles. Other properties that have shorthand methods (like border-radius) have their variations defined in the spec.

In order to achieve what you're trying to do, you will have to parse out the colour value from the property and replace it with something else (e.g. with JavaScript's string.prototype.replace method).

link|improve this answer
feedback

Use the new RGBA tool.

-webkit-box-shadow: 0px 0px 2px rgba(160, 10, 0, 1);
-moz-box-shadow: 0px 0px 2px rgba(160, 10, 0, 1);
 box-shadow: 0px 0px 2px rgba(160, 10, 0, 1);

The RGBA numbers are rgba( Red Value, Green Value, Blue Value, Opacity );

I use photoshop's color tool to drop in hex colors and find out what the RGB values are.

Opacity: 0 = Transparent, Opacity: 1 = 100% Visible.

Hope this helps!

btw stricky speaking the a in rgba is 'Alpha, normally used for Opacity' so that's why it is an otherwise non-logical 'A for Opacity'.

link|improve this answer
feedback

Maybe this is new (I am also pretty crap at css3), but I have a page that uses exactly what you suggest:

-moz-box-shadow: 10px 10px 5px #384e69;
-webkit-box-shadow: 10px 10px 5px #384e69;
box-shadow: 10px 10px 5px #384e69;}

.. and it works fine for me (in Chrome at least).

link|improve this answer
feedback

A quick and copy/paste you can use for Chrome and Firefox would be: (change the stuff after the # to change the color)

-moz-border-radius: 10px;
-webkit-border-radius: 10px;
-khtml-border-radius: 10px;
-border-radius: 10px;
-moz-box-shadow: 0 0 15px 5px #666;
-webkit-box-shadow: 0 0 15px 05px #666;

Matt Roberts' answer is correct for webkit browsers (safari, chrome, etc), but I thought someone out there might want a quick answer rather than be told to learn to program to make some shadows.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.