We have a big application on the site and we have a few links which are, let\'s say blue color like the blue links on this site. Now I want to make some other links, but wit
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:
Links to this CSS-generating page would look something like:
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)