Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there an online example of all the colours in System.Drawing.Color?

Can anyone point me to a reference chart that has swatches of all the colours that are represented in System.Drawing.Color?

like image 344
Martin Avatar asked Dec 29 '10 18:12

Martin


People also ask

What are system colors?

A color system is a set of colors that represent a specific visual spectrum. * These few colors are mixed together to create a limited usable range, and that range is called a color system. Examples of a color system include RGB, CMYK, and Lab.

What color is system control?

Most forms have a BackColor that defaults to "Control", which looks like a very light gray under Windows 7, running the default Windows 7 Theme.

What is color FromArgb?

FromArgb(Int32, Color) Creates a Color structure from the specified Color structure, but with the new specified alpha value. Although this method allows a 32-bit value to be passed for the alpha value, the value is limited to 8 bits. FromArgb(Int32) Creates a Color structure from a 32-bit ARGB value.

What is drawing color?

Technically, drawing in colored pencil is simply layering semitransparent colors on paper to create vivid paintings. Every color has three qualities: temperature, intensity and value.


2 Answers

From here:

The following image shows the color of each predefined brush, its name, and its hexadecimal value.

May as well have the details right here on SO:

enter image description here

like image 90
StayOnTarget Avatar answered Sep 19 '22 20:09

StayOnTarget


"Web Colors - X11 color names" from wikipedia:

http://en.wikipedia.org/wiki/Web_colors

http://en.wikipedia.org/wiki/X11_color_names

WPF Colors

Color names in Windows Presentation Foundation (WPF) match the color names in Microsoft .NET Framework, Windows Forms, and Microsoft Internet Explorer. These colors and their names are based on the UNIX X11 color values.

http://msdn.microsoft.com/en-us/library/system.windows.media.brushes.aspx

like image 20
Tim Lloyd Avatar answered Sep 18 '22 20:09

Tim Lloyd