Tagged Questions

14
votes
6answers
568 views

Algorithm challenge: Generate color scheme from an image

Background So, I'm working on a fresh iteration of a web app. And, we've found that our users are obsessed with being lazy. Really lazy. In fact, the more work we do for them, the more they love …
12
votes
5answers
388 views

What is the best way to average two colors that define a linear gradient?

If I have two colors defined by their RGB values, can I average the Red, Green and Blue values and then combine to define a third color that looks like a visual average of the two? ie NewColor = …
10
votes
4answers
2k views

How can I make the Python logging output to be colored?

Some time ago I saw a Mono application with colored output, probably because of it's log system, because all the messages were standardized. Now, Python has the logging module, and it let you specify …
9
votes
8answers
4k views

Multiple colors in a C# .NET label

Hi, I'm looking for a way to display multiple colors in a single C#/.NET label. E.g the label is displaying a series of csv separated values that each take on a color depending on a bucket they fall …
8
votes
3answers
465 views

How Code Color is Set in StackOverflow?

The most favorite feature of StackOverflow for me is that it can automatically detect code in post and set appropriate color to the code. I'm wondering how the color is set. When I do a Ctrl+F5 on a …
8
votes
5answers
452 views

Colour blindness simulator

Like any responsible developer, I'd like to make sure that the sites I produce are accessible to the widest possible audience, and that includes the significant fraction of the population with some …
7
votes
14answers
1k views

Easiest way to alternate row colors in PHP/HTML?

Here's a PHP example of mine. Can anyone find a shorter/easier way to do this? <? foreach($posts as $post){?> <div class="<?=($c++%2==1)?‘odd’:NULL?>"> <?=$post?> …
5
votes
10answers
790 views

What is the best color combination for readability, easy of use, and reduced eye strain?

I am trying to pick out the optimal set of colors for a new website project. I want to do a traditional black on white look and feel for the main content. However my partner on the project wants …
5
votes
1answer
133 views

Where can I find colored indicators for use in Cocoa?

I need color indicators. Need to be able to do green, yellow and red. Anybody know how? I looked through the available icons/etc in Interface Builder but did not see anything like them. Like this:
5
votes
4answers
1k views

jquery color animation throws Invalid property value intermittently

I'm trying to animate the background for an ASP.Net hyperlink to do a yellow fade on an update panels refresh. So far it works almost all of the time, but occasionally a javascript error is thrown …
5
votes
7answers
564 views

<ol> with numbers another color

<ol> <li>test</li> <li>test</li> </ol> will show as: test test I want to have numbers coloured and text black! I can edit the css, but I …
5
votes
4answers
2k views

How pick colors for a pie-chart?

I have some code that generates image of a pie chart. It's a general purpose class, so any number of slices can be given as input. Now I have problem picking good colors for the slices. Is there some …
4
votes
1answer
35 views

Wpf, using a StaticResource SolidColorBrush to define the Gradient Stop Colors

I am creating some wpf resourceDictionaries whit all the styles for an application! I have a few LinearGradientBrush'es, where the color is set directly in the LinearGradientBrush reference as …
4
votes
4answers
94 views

How can I find out the current color depth of a machine running vista/w7?

Hi! I want to check the current color depth of the OS to warn users if they try to run my application with a "wrong" color depth (using c++ & Qt). I guess there's a win api call to get this …
4
votes
6answers
320 views

Colorized grep — viewing the entire file with highlighting

I find grep's --color=always flag to be tremendously useful. However, grep only prints lines with matches (unless you ask for context lines). Given that each line it prints has a match, the …

1 2 3 4 5 17 next
15 30 50 per page