DARK SHADOWS FORUMS

General Discussions => Testing. 1, 2, 3... => Topic started by: Mysterious Benefactor on August 08, 2002, 07:00:24 AM

Title: Color Names and Custom Colors
Post by: Mysterious Benefactor on August 08, 2002, 07:00:24 AM
Before you look at the color table below, I should explain what RGB codes are and how to interpret them.

In the world of computers, we presently have 16,777,216 different colors to work with, and all of them are defined in terms of their Red, Green and Blue values - RGB for short. Each of those three colors can have any one of 256 values, ranging from 0 to 255, and in combination with the 256 possible values of the other two, they make up all 16,777,216 colors (2563 or 256 X 256 X 256 = 16,777,216  And some of you probably thought nothing you ever learned in Math class would ever have any practical value? Well just wait - it gets worse! :D)

HTML relies most often on the hexadecimal representation of 0-255 to code all 16,777,216 colors. (See - I told you it would get worse. ;D) Now, I'm sure you all remember that hexadecimal notation uses the digits 0 through 9 as well as the letters A through F. So, the numbers 0 through 255 are represented in the following manner in the table below when converted from decimal (Base 10, which is what we use nearly every day of our lives) into hexadecimal (Base 16, which people like me, who program computers and/or do advanced work on the Web use nearly every day of our lives because so many aspects of programming revolve around multiples of 16 in one way or another.)

(http://www.dsboards.com/YaBBImages/width.gif)
0 = #00
(http://www.dsboards.com/YaBBImages/width.gif)
86 = #56
(http://www.dsboards.com/YaBBImages/width.gif)
171 = #AB
1 = #0187 = #57172 = #AC
2 = #0288 = #58173 = #AD
3 = #0389 = #59174 = #AE
4 = #0490 = #5A175 = #AF
5 = #0591 = #5B176 = #B0
6 = #0692 = #5C177 = #B1
7 = #0793 = #5D178 = #B2
8 = #0894 = #5E179 = #B3
9 = #0995 = #5F180 = #B4
10 = #0A96 = #60181 = #B5
11 = #0B97 = #61182 = #B6
12 = #0C98 = #62183 = #B7
13 = #0D99 = #63184 = #B8
14 = #0E100 = #64185 = #B9
15 = #0F101 = #65186 = #BA
16 = #10102 = #66187 = #BB
17 = #11103 = #67188 = #BC
18 = #12104 = #68189 = #BD
19 = #13105 = #69190 = #BE
20 = #14106 = #6A191 = #BF
21 = #15107 = #6B192 = #C0
22 = #16108 = #6C193 = #C1
23 = #17109 = #6D194 = #C2
24 = #18110 = #6E195 = #C3
25 = #19111 = #6F196 = #C4
26 = #1A112 = #70197 = #C5
27 = #1B113 = #71198 = #C6
28 = #1C114 = #72199 = #C7
29 = #1D115 = #73200 = #C8
30 = #1E116 = #74201 = #C9
31 = #1F117 = #75202 = #CA
32 = #20118 = #76203 = #CB
33 = #21119 = #77204 = #CC
34 = #22120 = #78205 = #CD
35 = #23121 = #79206 = #CE
36 = #24122 = #7A207 = #CF
37 = #25123 = #7B208 = #D0
38 = #26124 = #7C209 = #D1
39 = #27125 = #7D210 = #D2
40 = #28126 = #7E211 = #D3
41 = #29127 = #7F212 = #D4
42 = #2A128 = #80213 = #D5
43 = #2B129 = #81214 = #D6
44 = #2C130 = #82215 = #D7
45 = #2D131 = #83216 = #D8
46 = #2E132 = #84217 = #D9
47 = #2F133 = #85218 = #DA
48 = #30134 = #86219 = #DB
49 = #31135 = #87220 = #DC
50 = #32136 = #88221 = #DD
51 = #33137 = #89222 = #DE
52 = #34138 = #8A223 = #DF
53 = #35139 = #8B224 = #E0
54 = #36140 = #8C225 = #E1
55 = #37141 = #8D226 = #E2
56 = #38142 = #8E227 = #E3
57 = #39143 = #8F228 = #E4
58 = #3A144 = #90229 = #E5
59 = #3B145 = #91230 = #E6
60 = #3C146 = #92231 = #E7
61 = #3D147 = #93232 = #E8
62 = #3E148 = #94233 = #E9
63 = #3F149 = #95234 = #EA
64 = #40150 = #96235 = #EB
65 = #41151 = #97236 = #EC
66 = #42152 = #98237 = #ED
67 = #43153 = #99238 = #EE
68 = #44154 = #9A239 = #EF
69 = #45155 = #9B240 = #F0
70 = #46156 = #9C241 = #F1
71 = #47157 = #9D242 = #F2
72 = #48158 = #9E243 = #F3
73 = #49159 = #9F244 = #F4
74 = #4A160 = #A0245 = #F5
75 = #4B161 = #A1246 = #F6
76 = #4C162 = #A2247 = #F7
77 = #4D163 = #A3248 = #F8
78 = #4E164 = #A4249 = #F9
79 = #4F165 = #A5250 = #FA
80 = #50166 = #A6251 = #FB
81 = #51167 = #A7252 = #FC
82 = #52168 = #A8253 = #FD
83 = #53169 = #A9254 = #FE
84 = #54170 = #AA255 = #FF
85 = #55

Now, why am I trying to confuse you? Honestly, I'm not. Really! :) I'm just trying to give you a better feel for how colors work on the Web and in computing in general. And I'm also trying to give you a way to translate hexadecimal color codes into something that you can use in some of the software that's probably already on your computer.
For instance, many graphics programs allow you to define custom colors to use for backgrounds, text, borders, etc. And if you like some of the colors that you can use on the forum, with all this stuff as a background, you should be able to add them to your custom colors in whatever program you might like to use them. [winkb] But before we move on, let's take a look at the colors that are available on the forum (though I should warn that some older browsers - particularly older versions of IE - will not be able to display these colors correctly because they were originally developed for Netscape, but have since been adopted into standard HTML):

 
Color NameRGB CodeColor NameRGB Code
----------------------------
aliceblue#F0F8FFlightsalmon#FFA07A
antiquewhite#FAEBD7lightseagreen#20B2AA
aqua#00FFFFlightskyblue#87CEFA
aquamarine#7FFFD4lightslategray#778899
azure#F0FFFFlightsteelblue#B0C4DE
beige#F5F5DClightyellow#FFFFE0
bisque#FFE4C4lime#00FF00
black#000000limegreen#32CD32
blanchedalmond#FFEBCDlinen#FAF0E6
blue#0000FFmagenta#FF00FF
blueviolet#8A2BE2maroon#800000
brown#A52A2Amediumaquamarine#66CDAA
burlywood#DEB887mediumblue#0000CD
cadetblue#5F9EA0mediumorchid#BA55D3
chartreuse#7FFF00mediumpurple#9370DB
chocolate#D2691Emediumseagreen#3CB371
coral#FF7F50mediumslateblue#7B68EE
cornflowerblue#6495EDmediumspringgreen#00FA9A
cornsilk#FFF8DCmediumturquoise#48D1CC
crimson#DC143Cmediumvioletred#C71585
cyan#00FFFFmidnightblue#191970
darkblue#00008Bmintcream#F5FFFA
darkcyan#008B8Bmistyrose#FFE4E1
darkgoldenrod#B8860Bmoccasin#FFE4B5
darkgray#A9A9A9navajowhite#FFDEAD
darkgreen#006400navy#000080
darkkhaki#BDB76Boldlace#FDF5E6
darkmagenta#8B008Bolive#808000
darkolivegreen#556B2Folivedrab#6B8E23
darkorange#FF8C00orange#FFA500
darkorchid#9932CCorangered#FF4500
darkred#8B0000orchid#DA70D6
darksalmon#E9967Apalegoldenrod#EEE8AA
darkseagreen#8FBC8Fpalegreen#98FB98
darkslateblue#483D8Bpaleturquoise#AFEEEE
darkslategray#2F4F4Fpalevioletred#DB7093
darkturquoise#00CED1papayawhip#FFEFD5
darkviolet#9400D3peachpuff#FFDAB9
deeppink#FF1493peru#CD853F
deepskyblue#00BFFFpink#FFC0CB
dimgray#696969plum#DDA0DD
dodgerblue#1E90FFpowderblue#B0E0E6
firebrick#B22222purple#800080
floralwhite#FFFAF0red#FF0000
forestgreen[font=Courier  New]#228B22[/font]rosybrown#BC8F8F
fuchsia#FF00FFroyalblue#4169E1
gainsboro#DCDCDCsaddlebrown#8B4513
ghostwhite#F8F8FFsalmon#FA8072
gold#FFD700sandybrown#F4A460
goldenrod#DAA520seagreen#2E8B57
gray#808080seashell#FFF5EE
green#008000sienna#A0522D
greenyellow#ADFF2Fsilver#C0C0C0
honeydew#F0FFF0skyblue#87CEEB
hotpink#FF69B4slateblue#6A5ACD
indianred#CD5C5Cslategray#708090
indigo#4B0082snow#FFFAFA
ivory#FFFFF0springgreen#00FF7F
khaki#F0E68Csteelblue#4682B4
lavender#E6E6FAtan#D2B48C
lavenderblush#FFF0F5teal#008080
lawngreen#7CFC00thistle#D8BFD8
lemonchiffon#FFFACDtomato#FF6347
lightblue#ADD8E6turquoise#40E0D0
lightcoral#F08080violet#EE82EE
lightcyan#E0FFFFwheat#F5DEB3
lightgoldenrodyellow#FAFAD2white#FFFFFF
lightgreen#90EE90whitesmoke#F5F5F5
lightgrey#D3D3D3yellow#FFFF00
lightpink#FFB6C1yellowgreen#9ACD32

A lengthy list, but really quite small when you consider that there are actually 16,777,216 colors available. These are merely the colors that someone decided to name so that people without a Math or Computer Science degree could avoid using hexadecimal codes and use understandable words instead. (And I seriously doubt that anyone will ever sit down and try to name all 16,777,216 available colors! [wink2])

So, say you've decided that you like mediumturquoise so much that you want to make it one of your custom colors. However, your software wants you to enter three numbers between 0 and 255 to define a color. As you can see in the chart above, the hexadecimal code for mediumturquoise is #48D1CC. How do you make that information useful? Well, you break it up into its Red, Green, and Blue components, and then with the chart I've provided, you convert the hexadecimal code to its equivelent decimal number between 0 and 255 (0 being its darkest shade, 255 its brightest).
For #48D1CC, the Red component is the first two characters after the number sign, so Red equals 48 hexadecimal. The Green component is the two middle characters, so D1 hexadecimal is the Green component. And the last two characters are the Blue component, which is CC.
Now, going back to refer to the chart I've provided, you'll see that 48 hexadecimal equals 72, D1 hexadecimal equals 209, and CC hexadecimal equals 204. So, to add the color mediumturquoise to your software's custom colors, you'd enter the following values:

Red = 72
Green = 209
Blue = 204

End of today's lesson. But you can be sure that this won't be the last one I'll ever post. [lghy] And if I've whet your appetite to learn more on this subject, I suggest you check out the following link:

HTML Color Names (http://www.w3schools.com/html/html_colornames.asp)

where you'll not only be able to get a better idea of what each of the colors looks like, you'll find links to all sorts of HTML related topics.


Have fun posting with all the new colors!

The MB
Title: Re: Color Names and Custom Colors
Post by: Raineypark on August 08, 2002, 03:23:29 PM
That's one hell of a Crayon box you've got there, Pepe....how nice of you to offer to share.... ::)

Rainey  ;)
Title: (Re: Color Names and Custom Colors
Post by: Patti Feinberg on August 10, 2002, 02:08:45 AM
[size=42]aaaaaahhhhhhhhh[/size]



:'( :'(MB just sent Patti

[size=36]shrieking[/size]

into the night.
(is  that spelled right? I tried it both ways?)

Be careful small children and pets.

Over the edge...into the abyss.

Jesus saves† (ah ha!!  a cross!!! is anyone impressed?)

the late, lamented, insane:
Patio Furniture
aka Patti Feinberg

Okay...MB (mercy!!), why, if I put the html??? code for a cross, and it appears on my message as a cross, does it come out as that above jibberish? There's no & or # involved....I was going to impress you  :'(  :'(
Title: Re: Color Names and Custom Colors
Post by: CandleLighter on August 16, 2002, 10:09:29 AM
thanks for posting these [thumb]
Title: Re: Color Names and Custom Colors
Post by: Cassandra on August 19, 2002, 09:26:51 PM
Thanks MB!!  These are great!


 nice color  
 love these colors!    
what a color
wow! [/glow]
Title: Re: Color Names and Custom Colors
Post by: Cassandra on August 19, 2002, 09:34:02 PM
  this is a nice color!!  

   trying out new things!!  

  these are great!  
Title: Re: Color Names and Custom Colors
Post by: Cassandra on August 20, 2002, 08:39:58 PM
  LOVE ALL THESE HOT COLORS

  pink is my favorite color  [/glow]
Title: Re: Color Names and Custom Colors
Post by: jennifer on August 21, 2002, 03:06:07 AM
[size=*]OMG[/size]
i am right behind Patti(must be the name) and yes I'm impressed Patti!
have to read this when my head is not spinning after
this horrid heatwave[sun] and a day of housework!Also [size=8]is it time to go back to school yet[/size]


jennifer[spin][spin][spin][spin][spin][spin]
PS THE RED SOX s....
sorry usually more ladylike but it's been a week!
i'll be back :)

psshey it worked
a lot of my colors look the same though is it my computer?
Title: Re: Color Names and Custom Colors
Post by: Midnite on August 21, 2002, 04:34:35 AM
Quote
psshey it worked
a lot of my colors look the same though is it my computer?

It's easier to see the difference when the letters are larger:
lightseagreen
aqua


My favorite is the dodgerblue.  Guess why, hee hee!!
Title: Re: Color Names and Custom Colors
Post by: Mysterious Benefactor on August 21, 2002, 06:43:09 AM
Quote
a lot of my colors look the same though is it my computer?

Not all versions of IE recognize all the color names. It might be that you need to upgrade in order to see them correctly.
Title: Re: Color Names and Custom Colors
Post by: jennifer on August 21, 2002, 11:20:10 PM
THanks MB and Midnite

maybe i should go out and get a Dell heehee!

jennifer
Title: Re: Color Names and Custom Colors
Post by: Minja on August 26, 2002, 09:36:03 PM
Testing[/color]

[shadow=#FF00FF,left,300]Always, Minja  8)[/shadow]

Sheez, I'm behind in everything.[/color]
Title: Re: Color Names and Custom Colors
Post by: Patti Feinberg on July 04, 2003, 03:02:54 AM
That's one hell of a Crayon box you've got there, Pepe....how nice of you to offer to share.... ::)

Rainey  ;)

[text=cornflowerblue]testing testing[/cornflowerblue]

(what would happen on here if I put the corresponding code instead of word color??
Patti

hmmm...why no cornflowerblue available???
Title: Re: Color Names and Custom Colors
Post by: Midnite on July 04, 2003, 04:41:49 AM
[text=cornflowerblue]testing testing[/cornflowerblue]

(what would happen on here if I put the corresponding code instead of word color??
Patti

hmmm...why no cornflowerblue available???

It is available, but that's what happens when you experiment with the codes. ;)

Incorrect:
Code: [Select]
[text=cornflowerblue]testing testing[/cornflowerblue]correct:
Code: [Select]
[color=cornflowerblue]testing testing[/color]
Title: Re:Color Names and Custom Colors
Post by: onyx_treasure on July 04, 2003, 07:20:40 PM
Just wanted to see if I could do it right in two different colors
[shadow=hotpink, left]onyx treasure[/shadow]
Title: Re:Color Names and Custom Colors
Post by: Patti Feinberg on July 05, 2003, 07:08:16 PM
Thanks Midnite

Patti
Title: Re:Color Names and Custom Colors
Post by: Patti Feinberg on July 05, 2003, 10:07:03 PM
tacky

MB...if one knew the above; where/how could one use it within computers?

Like if I typed the hexadecimal value for khaki, instead of word khaki, what would happen?

Patti

Hmmm....that khaki color sure looks like pee yellow :-X

Patti
Title: Re:Color Names and Custom Colors
Post by: Midnite on July 06, 2003, 02:18:01 AM
MB...if one knew the above; where/how could one use it within computers?

Like if I typed the hexadecimal value for khaki, instead of word khaki, what would happen?

Patti,

If you click quote in Minja's reply (#11) in this thread and take a look at the code that displays in your response window, you'll have your answer.

But in this current version of the forums, it's more important that the 2nd set of codes mirror the first.
Title: Re:Color Names and Custom Colors
Post by: Patti Feinberg on July 06, 2003, 03:03:26 AM
Thanks doll...so would either work (color name or code?)

Patti
Title: Re:Color Names and Custom Colors
Post by: Midnite on July 06, 2003, 03:14:04 AM
Thanks doll...so would either work (color name or code?)

Sƒ­.  :D
Title: Re:Color Names and Custom Colors
Post by: Raineypark on May 05, 2004, 08:07:15 PM
Posting this for no earthly reason other than to bump the thread up to the top of "Testing" because someone is always looking for it......today it just happens to be me. :D
Title: Re:Color Names and Custom Colors
Post by: Patti Feinberg on May 06, 2004, 01:59:21 AM
thanks Rainey

I had forgotten about tacky khaki ;D

Patti
Title: Re:Color Names and Custom Colors
Post by: Raineypark on May 06, 2004, 03:29:16 AM
Tacky  khaki isn't so bad, Patti......

Not nearly as ugly as Indianred, anyway....[lghy]
Title: Re:Color Names and Custom Colors
Post by: Patti Feinberg on May 12, 2004, 01:46:57 AM
[glow]will it work?...remembering Midnite's recent posting about glow has to be I hope outside of color/size...[/glow].

Patti

Well, hopefully, in about 20,00000000000 years, I'll get the concept of glow.

(I should study Cassandra's postings more...she's the bee's knees when it comes to the creativity!!!)

Uh...I don't like the firebrick......what about you Rainey?
Title: Re:Color Names and Custom Colors
Post by: Midnite on May 12, 2004, 01:58:09 AM
Well, hopefully, in about 20,00000000000 years, I'll get the concept of glow.

Poor Patti.

In the horizontal menu, click Help, Posting, YaBBC
Title: Re:Color Names and Custom Colors
Post by: Annie on May 12, 2004, 10:25:46 PM
Lime = goffo   

Not sure i'f i did this right .
               Love Anne  ??? :-[
Title: Re:Color Names and Custom Colors
Post by: Midnite on May 12, 2004, 11:35:15 PM
Annie, just put the text that you want colored in the middle, like this:

Code: [Select]
[color=LimeGreen] Lime = goffo [/color]


 :D
Title: Re:Color Names and Custom Colors
Post by: Annie on May 13, 2004, 12:34:11 AM
[color]=limegreen] lime=goffo[color]

   Hi Midnite thanks i think i have it.
                Love Anne 8)
Title: Re:Color Names and Custom Colors
Post by: Annie on May 13, 2004, 12:37:24 AM
[color=limegreen testing 123[/color]
 
   I'm trying this again hope i did it !!
                      Anne
Title: Re:Color Names and Custom Colors
Post by: Midnite on May 13, 2004, 12:54:55 AM
Anne, try this-- Go to reply #28 (the one above this one), click the box that says "modify", type something between those color tags, and then click "Save".  ;)
Title: Re:Color Names and Custom Colors
Post by: mrjuggins on May 13, 2004, 04:34:51 PM
Testing 1, 2, 3


Tim

AKA .....

MrJ
Title: Re:Color Names and Custom Colors
Post by: Annie on May 13, 2004, 10:42:11 PM
Hi all i determined to get this right!!!  Anne
Title: Re:Color Names and Custom Colors
Post by: Midnite on May 13, 2004, 11:20:41 PM
Yay, Annie!  [clap]
Title: Re:Color Names and Custom Colors
Post by: Annie on May 14, 2004, 01:07:09 AM
I thank-you for the appaulse just throw
money HA!!!    Love Anne

( THANKS MIDNITE) ;D 8)
Title: Re:Color Names and Custom Colors
Post by: Patti Feinberg on May 14, 2004, 03:17:39 PM
I thank-you for the appaulse just throw
money HA!!!

GO GIRLFRIEND!!!
[/color][/size]

 [greed]

Patti
Title: Re: Color Names and Custom Colors
Post by: EmeraldRose on September 07, 2004, 09:39:03 AM
[size=8]Testing...This is only a test... [/size]
[/color]

Hey, it works!!
[/color]

8) ----- Sally ----- 8)
[/color]
Title: Re: Color Names and Custom Colors
Post by: Midnite on January 29, 2005, 09:31:02 PM
testing

pale green
plum
Title: Re: Color Names and Custom Colors
Post by: Patti Feinberg on October 12, 2005, 08:27:03 PM
Keeping "color" thread accessible..... ;)

Raineypark always has 'vunderbar' ideas!!

(I had forgotten about khaki...and Rainey, I still frequently use indianred, mostly because I never can remember other specific color names!!)

Patti
Title: Re: Color Names and Custom Colors
Post by: Raineypark on October 12, 2005, 09:25:12 PM
Keeping "color" thread accessible..... ;)

Raineypark always has 'vunderbar' ideas!!

(I had forgotten about khaki...and Rainey, I still frequently use indianred, mostly because I never can remember other specific color names!!)

All you ever need to do is go back to the first page of this thread....all the color names are listed there!!!
Title: Re: Color Names and Custom Colors
Post by: Raineypark on December 27, 2005, 03:40:05 AM
Moving this topic back to the top of "Testing, 1,2,3"

[wink2]
Title: Re: Color Names and Custom Colors
Post by: Patti Feinberg on December 28, 2005, 12:45:40 PM
from MBs orig. top of the thread:
Quote
palegoldenrod #EEE8AA
darkslateblue #483D8B paleturquoise #AFEEEE
darkslategray #2F4F4F palevioletred #DB7093
darkturquoise #00CED1

These are just some that are just showing up as 'white'...there were more on the thread.

Is it my browser? Or are they appearing 'plain' to others?

Thanks,

Patti
Title: Re: Color Names and Custom Colors
Post by: Midnite on December 28, 2005, 05:37:03 PM
These are just some that are just showing up as 'white'...there were more on the thread.

Is it my browser? Or are they appearing 'plain' to others?

Yes, some color names show up as the default color in all browsers though their respective RGB codes will work (see below).

#EEE8AA (palegoldenrod)
#483D8B (darkslateblue) #AFEEEE (paleturquoise)
#2F4F4F (darkslategray)  #DB7093 (palevioletred)
#00CED1 (darkturquoise)

Title: Re: Color Names and Custom Colors
Post by: Mysterious Benefactor on December 28, 2005, 07:17:56 PM
some color names show up as the default color in all browsers

For some odd reason, it seems like browser developers are having their browsers recognize fewer color names rather than more.  ::)  When I first posted this topic back in August 2002, all the colors displayed correctly - but now 21 of the color names are no longer recognized.  >:(
Title: Re: Color Names and Custom Colors
Post by: Patti Feinberg on December 28, 2005, 10:13:35 PM
When I first posted this topic back in August 2002, all the colors displayed correctly - but now 21 of the color names are no longer recognized.  >:(
[size=8]BINGO!!![/size]

This was exactly what I was wondering..... Thanks MB

Patti

(PS>>MB...did I tell you we FINALLY got a new computer at work...and, it's a LINUX based product!?)
Title: Re: Color Names and Custom Colors
Post by: Patti Feinberg on April 28, 2006, 08:38:13 PM
 Thaaat's right, last night in my HTML course, the teacher mentioned colors/numerals.

He didn't mention RGB, but I remembered from  :-* MB's text on the matter.

MB, on most newerish web sites (that a person would be building), are the colors already there  (eg crimson, or will I need the RGB value....and a few valium??)  ^-^

Also, I would have to say about 1/3 of the color names are not appearing for me on this main topic....anyone else? (it'll say [color*=mediumpurple]* purple [/*color].... note, astericks are mine

Patti
Title: Re: Color Names and Custom Colors
Post by: Patti Feinberg on March 26, 2007, 11:27:05 PM
Since I'll (probably) never go to Peru, I'll type in the color peru.

Patti
Title: Re: Color Names and Custom Colors
Post by: Patti Feinberg on December 06, 2008, 03:17:50 AM
Bump

....cause I had a heck of a time finding colors!!
Title: Re: Color Names and Custom Colors
Post by: Patti Feinberg on November 21, 2010, 01:22:50 AM
hmm, on another board, I typed
Code: [Select]
[color=indianred][/color] and, I believe it'll show up as a typo.
What's up with that?

Patti

P.S., I mean it's got a curly-ish red underline under the phrase indian red (now indian is underlined...am I mis-spelling it???)
Title: Re: Color Names and Custom Colors
Post by: Mysterious Benefactor on November 21, 2010, 02:46:03 AM
That curly red line shows up (in Firefox) because there's no such word in the English language as indianred. But as we know, English and HTML are two totally different languages.  [hall2_wink]  HTML is strictly for the Internet, and using the color codes just as you showed in your example will work perfectly.  [hall2_smiley]  Just ignore the curly red line.  [hall2_grin]
Title: Re: Color Names and Custom Colors
Post by: Patti Feinberg on November 24, 2010, 03:45:53 PM
Thanks MB!!

you da bomb!

Patti
Title: Re: Color Names and Custom Colors
Post by: Mysterious Benefactor on November 24, 2010, 06:38:41 PM
You're welcome. And no problem.  [hall2_smiley]