AZDean
AZDean

Reputation: 1814

Where can I see what Color properties in .NET like "BlanchedAlmond" look like?

I'm in the middle of writing code in .Net to draw something in my app and I need to pick a color to use. But what does the color "Chartreuse" look like? Isn't there a nice bitmap that shows what each of the system colors look like somewhere?

Thanks!

Upvotes: 0

Views: 295

Answers (5)

mattruma
mattruma

Reputation: 16677

Try this site.

This site is nice because it shows how the color will look as foreground and background color.

Upvotes: 2

Johannes Hädrich
Johannes Hädrich

Reputation: 1223

Yes there is a site: http://adonnart.free.fr/gratuit/140coulu.htm

with Hex-Codes

Upvotes: 1

GEOCHET
GEOCHET

Reputation: 21313

Check this out: http://www.w3schools.com/TAGS/ref_color_tryit.asp?color=BlanchedAlmond

(Pay attention the URL and modify as necessary)

Upvotes: 0

JC.
JC.

Reputation: 11801

MSDN - Colors by Name

Upvotes: 4

Related Questions