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?

link|improve this question

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 '09 at 16:16
no, not the transparent, but making the color reduce by hex or rbg or hsl – Basit Oct 26 '09 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 '09 at 16:37
any suggestions on what title should i use instead? – Basit Oct 26 '09 at 20:55
feedback

12 Answers

up vote 4 down vote accepted

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|improve this answer
There are javaScript based approaches around that might be easier to implement. See e.g. experts-exchange.com/Programming/Languages/Scripting/JavaScript/… – Pekka Oct 26 '09 at 16:29
Interesting suggestion. Would there be a risk of colours flickering as the page loaded if you used JS? – ctford Oct 26 '09 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 '09 at 16:52
@Pekka can you please paste code here, i dont have expert acount to view the answer. – Basit Oct 26 '09 at 20:53
SOLUTION: stackoverflow.com/questions/1507931/… – Basit Oct 26 '09 at 21:02
show 1 more comment
feedback

If you're using a stack which lets you use SASS, you can do something like this:

$linkcolour: #0000FF;

a {
  color: $linkcolour;
}

a.lighter {
  color: lighten($linkcolour, 50%);
}
link|improve this answer
This facility has added my interest in SASS. – Satya Prakash Jan 16 at 7:57
Recently got into a crash course figure it out before yesterday scenario, compass & sass have totally saved my team and made me look like some sort of CSS ninja. Mixen's also have been fairly useful. – David Feb 9 at 7:56
feedback

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|improve this answer
no, not opacity, but add white i guess – Basit Oct 26 '09 at 16:22
feedback

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|improve this answer
feedback

if you decide to use http://compass-style.org/, a sass-based css framework, it provides very useful darken() and lighten() sass functions to dynamically generate css. it's very clean:

@import compass/utilities

$link_color: #bb8f8f
a
  color: $link_color
a:visited
  color: $link_color
a:hover
  color: darken($link_color,10)

generates

a {
  color: #bb8f8f;
}

a:visited {
  color: #bb8f8f;
}

a:hover {
  color: #a86f6f;
}
link|improve this answer
feedback

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|improve this answer
feedback

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|improve this answer
feedback

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|improve this answer
this might help alot, if its supported in major browsers. – Basit Oct 26 '09 at 21:05
feedback

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|improve this answer
feedback

It looks like jPaq (http://jpaq.org/) is the replacement for JXtension. The benefit of using jPaq is the fact that you can download only what you need instead of the full JavaScript library. Here is a link to the download page for just the Color class: http://jpaq.org/download/1.0.0.1008.

link|improve this answer
feedback

I found a PHP class that let me do this server side. I just output an inline CSS color style for whatever I need to be lighter/darker. Works great.

http://www.barelyfitz.com/projects/csscolor/

(note that the class uses PEAR for throwing errors, but I didn't want to include PEAR just to modify colors, so I just removed all the PEAR references)

I turned it into a static class with static methods so I can call "lighten" & "darken" functions directly without creating a new object.

Sample usage:

$original_color = 'E58D8D';  
$lighter_color = Css::lighten($original_color, .7);  
$darker_color = Css::darken($original_color, .7);
link|improve this answer
feedback

The answer to your question is no.

link|improve this answer
answer is yes, maybe no directly, but there is solution and thanks to the community, i found javascript solution – Basit Oct 26 '09 at 21:01
feedback

Your Answer

 
or
required, but never shown

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