Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is it possible to define a color in CSS by its name plus an alpha transparency value?

I.e.:

#mytext { color: red 0.5 }

rather than resorting to rgba like

#mytext { color: rgba(255,0,0,0.5) }
share|improve this question

migrated from webmasters.stackexchange.com Jan 24 at 2:01

2 Answers

up vote 0 down vote accepted

You can achieve the result you want this way:

#mytext{
  color: red;
  opacity: 0.5;
}

Note that opacity will affect the whole element, not just the text, so for example, if the #mytext element had a background color, that would also receive the opacity value of 0.5

However, I agree with Dai, using color names instead of hex or rgb codes isn't something you should rely on too much. It's an ugly color palette to work with.

share|improve this answer

No. The CSS specification only allows colors to be specified by name, hexadecimal representation of RGB, or using the rgb(r,g,b) and rgba(r,g,b,a) functions. Each use is mutually-exclusive.

Ref: http://www.w3.org/TR/CSS2/syndata.html#value-def-color

Color-names are less useful now than they were in the days of CSS1.x because the named colors (with the exception of orange) are all members of the old "16-color" display palette and generally look ugly today.

If you want to use color names to improve readability then use comments, like so:

color: rgb(0,0,0); /* black */

(put the comment after the semi-colon because many CSS editors only preserve comments when they're located outside of property declarations).

CSS3 adds more named-colors, including the 24-bit X11 color set, as well as the hsl(h,s,l) function, but still does not allow the mixing of named-colors and opacity values: http://www.w3.org/TR/css3-color/

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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