Heh, I was playing with code and wiki.com; here's a sample. Have fun
Datapad Blue #0080FFRed #FF0000
Dark Blue #0000FF
Blue #0040FF
Green #00FF00
Yellow #FFFF00
Cobalt blue #0047AB
Egyptian Blue #1034A6
Electric Blue #7DF9FF
Han Blue
Han Purple #5218FA
Indigo #4B0082
Electric Indigo #6600FF
Blue-Violet #4B0082
Indigo Dye #00416A
Magenta (fuchsia) #FF00FF
Magenta dye #CA1F7B
Process magenta (subtractive primary, sRGB approximation) #FF0090
Magenta (additive secondary) #FF00FF
Hot Magenta #FF00CC
Hot Magenta #FF69B4
Violet #EE82EE
Violet (color wheel) #7F00FF
Electric Violet #8B00FF
Vivid Violet #9900FF
Dark Violet #9400D3
Violet (web color) #EE82EE
http://en.wikipedia.org/wiki/List_of_colors
http://en.wikipedia.org/wiki/Violet_(color)
For Profiles:Dante's Inferno, an extensively hot-rodded ISP 'Swamp Speeder', now as fast as a Storm Skimmer & more heavily armed with the addition of an LC-5 Lava Cannon & a Heavy Republic Flame Thrower.
html color codes
http://search.yahoo.com/search?p=html+color+codes&fr=yfp-t-501-s&toggle=1&cop=mss&ei=UTF-8http://html-color-codes.info/How to use HTML color codes?
With HTML color codes you can set the color of web site background, color of text, cells in tables and much more.Using HTML color codes for web site background color:
Using HTML color codes for setting font/text color:
Using HTML color codes for table background color:
Using HTML color code for link color:
http://www.computerhope.com/htmcolor.htmhttp://www.computerhope.com/issues/ch000072.htm
Reference number: CH000072
Changing the type of font displayed on web page.
Issue:
Changing the type of font displayed on web page.
Solution:
CSS
The recommended method changing the font color is using CSS. Below are two different methods of doing this with CSS.Using it onceIf you plan on changing the font only once on the web page use the below example. In the below example we're changing all the text contained within the tags to the Courier font using #0066CC as the blue color. This text is Courier bluePlan on using it more than once or on multiple pagesIf you plan on using this font, color, or other font properties more than once we suggest following the below steps.In the portion of your web page add code similar to the below example. In this example we're creating a style called .courier, which is using the courier font with the color #005CB9. A listing of these color codes and examples can be found on our color codes page.
Once defined this style can be used anywhere in your page by using either of the below examples. In the first example everything contained within the paragraph (
) would be courier and blue as defined in the above example. With the second example only the TEST part of the line contained within the would be courier and blue.
Test
This is a TEST
A font style can also be defined in an external .css file as shown in the below example..courier {
font-family: Courier;
color: #005CB9;
}
Once the above has been placed into a .css file, call the .css file by using a command similar to the below example in your portion of your web page. In the below example we've called our .css file basic.css. Once this is in your code you can use the same above example to turn text courier and blue within any of your web pages that contain this code. If at any time in the future you wish to change the properties you'll only need to change the code within the .css file.
Font tag
Although this HTML tag is deprecated it can still be used and may be necessary to be used with some online services. When using the FONT tag, you must include the face attribute, which is the name of the font to be used. In the below example, we're using the Courier font.This is a special font
Remember that when changing the font to be displayed, if the user visiting your web page does not have the font you are using, the font will be viewed as the default font.
Example:
This is a special font
Additional information:
See our color codes page for a complete listing of HTML color codes and examples of what each color code looks like.
Information about adjusting the website body font can be found on document CH000067.
[This message has been edited by
TX-47
(edited October 17, 2008
5:10:30 PM)]
TX-47
ComNet Cadet

[VE-ARMY] Lance Corporal
Post Number: 275
Total Posts: 621
Joined: Jan 2008
Status: Offline
|

RE: Datapad Blue
|
|
October 17, 2008
5:10:55 PM
|
|
html font/text color codes http://search.yahoo.com/search;_ylt=A0oGkibBBPlIenYBlEhXNyoA?p=html+font%2Ftext+color+codes&fr=yfp-t-501-s&ei=UTF-8http://www.htmlgoodies.com/tutorials/colors/article.php/3479011Section 1: Changing Full-Page Text Colors You have the ability to change full-page text colors over four levels: -- This denotes the full-page text color.
-- This denotes the color of the links on your page.
-- This denotes the color the link will flash when clicked upon.
-- This denotes the colors of the links after they have been visited. These commands come right after the commands. Again, in that position they affect everything on the page. Also... place them all together inside the same command along with any background commands. Something like this: < BODY BGCOLOR="######" TEXT="######" LINK="######" VLINK="######">
Please note: When you write these codes, you can write them with a # sign in front of the hex code or not. It used to be that that was required, but not any more. I still use it just because I started that way. You may want to just go with the six-digit code. Also make sure to place a space between each command and be sure to enclose it in quotation marks, like so: --------------------------------------------------------------------------------
Section 2: Changing Specific Word Color But I only want to change one word's color! You'll use a color (hex) code to do the trick. Follow this formula: text text text text text It's a pain in the you-know-where, but it gets the job done. It works with all H commands and text size commands. Basically, if it's text, it will work. [Text Color Codes] [Section 1: Changing Full-Page Text Colors] [Section 2: Changing Specific Word Color] Enjoy!
|
TX-47
ComNet Cadet

[VE-ARMY] Lance Corporal
Post Number: 276
Total Posts: 621
Joined: Jan 2008
Status: Offline
|

RE: Datapad Blue
|
|
October 17, 2008
5:12:55 PM
|
|
- OOC:
- I apologize; some of the code doesn't copy well into ComNet. Click the links for unbroken instructions.

|