Top "Colors" questions

Use this tag for questions about representing or manipulating colors in a programming language.

Set System.Drawing.Color values

Hi how to set R G B values in System.Drawing.Color.G ? which is like System.Drawing.Color.G=255; …

c# .net colors immutability system.drawing.color
How do I use hexadecimal color strings in Flutter?

How do I convert a hexadecimal color string like #b74093 to a Color in Flutter? I want to use a …

colors dart flutter
CSS hexadecimal RGBA?

I know you can write ... background-color: #ff0000; ... if you want something that is red. And you can write ... background-color: rgba(255, 0, 0, 0.5); ... …

css colors rgba
How to change the link color in a specific class for a div CSS

In my Page the following CSS is set: a:link { color: #0094DE; text-decoration: none; } a:visited { text-decoration: none; color: #0094DE; } …

css class colors hyperlink hover
Converting RGB to grayscale/intensity

When converting from RGB to grayscale, it is said that specific weights to channels R, G, and B ought to …

image-processing colors computer-vision language-agnostic rgb
How to change status bar color to match app in Lollipop? [Android]

In the new lollipop update I noticed that with the native Google apps the color of the status bar changes …

android colors status android-5.0-lollipop
How to colorize diff on the command line?

When I have a diff, how can I colorize it so that it looks good? I want it for the …

unix command-line colors diff
How to set a string's color

Does anyone know how I would set the color of a string that will be printed using System.out? This …

java colors system.out
How can I color Python logging output?

Some time ago, I saw a Mono application with colored output, presumably because of its log system (because all the …

python logging colors
HSL to RGB color conversion

I am looking for an algorithm to convert between HSL color to RGB. It seems to me that HSL is …

algorithm colors rgb hsl