vote up 0 vote down star

we have big application on the site and we have few links, which are lets say blue color like the blue links on this site. now i want to make some other links, but with lighter color, obviously i can just do simply by the hex code adding in the css file, but our site let user decide what colors they want for there customized profile/site (like twitter). so my question is, can we reduce the color by percentage?

lets say following is css code

a {
  color: blue;
}

a.lighter {
  color: -50%; // obviously not correct way, but just an idea
}

OR

a.lighter {
  color: blue -50%;  // again not correct, but another example of setting color and then redcuing it
}

so is there a way to reduce a color by percentage?

flag

72% accept rate
I'm not into CSS, but what does reducing a color mean? Make it more transparent? Or do you want to change the individual RGB channels of the color? – StampedeXV Oct 26 at 16:16
no, not the transparent, but making the color reduce by hex or rbg or hsl – basit. Oct 26 at 16:21
@basit You might want to consider making the question title more specific so that it can more easily be found in the future by others with a similar problem. – ctford Oct 26 at 16:37
any suggestions on what title should i use instead? – basit. Oct 26 at 20:55

8 Answers

vote up 3 vote down check

As far as I know, there's no way you can do this in CSS.

But I think that a little server-side logic could easily do as you suggest. CSS stylesheets are normally static assets, but there is no reason they couldn't be dynamically generated by server-side code. Your server-side script would:

  1. Check a URL parameter to determine the user and therefore the user's chosen colour. Use a URL parameter rather than a session variable so that you can still cache the CSS.
  2. Break up the colour into its red, green and blue components
  3. Increment each of the three components by a set amount. Experiment with this to get the results you are after.
  4. Generate CSS incorporating the new colour

Links to this CSS-generating page would look something like:

<link rel="stylesheet" href="http://yoursite.com/custom.ashx?user=1231">

If you don't use the .css extension be sure to set the MIME-type correctly so that the browser knows to interpret the file as CSS.

(Note that to make colours lighter you have to raise each of the RGB values)

link|flag
There are javaScript based approaches around that might be easier to implement. See e.g. experts-exchange.com/Programming/Languages/… – Pekka Oct 26 at 16:29
Interesting suggestion. Would there be a risk of colours flickering as the page loaded if you used JS? – ctford Oct 26 at 16:31
I've used techniques like this -- each user gets his own style sheet -- in conjunction with a preferences page where the user specified color selections. Note you don't have to copy the entire style sheet, and shouldn't. You can have multiple style sheets in a page, so you can have a generic style sheet for the stuff that's the same for everybody and then a custom style sheet for the stuff that's different. In our case we had a default custom style sheet for the (majority of) users who just took the default. – Jay Oct 26 at 16:52
@Pekka can you please paste code here, i dont have expert acount to view the answer. – basit. Oct 26 at 20:53
SOLUTION: stackoverflow.com/questions/1507931/… – basit. Oct 26 at 21:02
show 1 more comment
vote up 0 vote down

There is "opacity" which will make the background shine through:

opacity: 0.5;

but I'm not sure this is what you mean. Define "reduce color": Make transparent? Or add white?

link|flag
no, not opacity, but add white i guess – basit. Oct 26 at 16:22
vote up 2 vote down

For css named color 'blue', there is 'lightblue'

For 'green', there is 'lightgreen'

For 'grey', there is 'lightgrey'

For 'yellow', there is 'lightyellow'

Try browsing this css named color list for more: http://www.w3schools.com/CSS/css_colornames.asp

link|flag
vote up -1 vote down

The answer to your question is no.

link|flag
answer is yes, maybe no directly, but there is solution and thanks to the community, i found javascript solution – basit. Oct 26 at 21:01
vote up 0 vote down

Not directly, no. But you could use a site that will give you your base color and then give you the hex and rgb codes for different ranges of your base color, like:

http://colorschemedesigner.com/

Once I find my color schemes for my site, I put the hex codes for the colors and name them inside a comment section at the top of my stylesheet.

Here's a regularly updated link of other color scheme generators:

link|flag
vote up 0 vote down

See my comment on Ctford's reply.

I'd think the easy way to lighten a color would be to take each of the RGB components, add to 0xff and divide by 2. If that doesn't give the exact results you want, take 0xff minus the current value times some constant and then add back to the current value. For example if you want to shift 1/3 of the way toward white, take (0xff - current)/3+current.

You'd have to play with it to see what results you got. I would worry that with this simple a formula, a factor big enough to make dark colors fade nicely might make light colors turn completely white, while a factor small enough to make light colors only lighten a little might make dark colors not lighten enough.

Still, I think going by a fraction of the distance to white is more promising than a fixed number of steps.

link|flag
vote up 0 vote down

You could use RGBa ('a' being alpha transparency), but it's not widely supported yet. It will be, though, so you could use it now and add a fallback:

a:link { 
    color: rgb(0,0,255); 
    }
a:link.lighter {
    color: rgb(128,128,255); /* This gets applied only in browsers that don't apply the rgba line */
    }
a:link.lighter { /* This comes after the previous line, so has priority in supporting browsers */
    color: rgba(0,0,255,0.5); /* last value is transparency */
    }
link|flag
this might help alot, if its supported in major browsers. – basit. Oct 26 at 21:05
vote up 0 vote down

You can use a JavaScript library such as JXtension which gives the user the ability to make a color lighter or darker. If you would like to find documentation for this brand new library, click here. You can also use JXtension to combine one color with another.

link|flag

Your Answer

Get an OpenID
or

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