Using Colors
In HTML documents, when you want to change the font color, you have to type a hexadecimal value for the color. The code is in hexadecimal with a pound sign and 6 characters from 0 (zero) to F (fifteen in hexadecimal). Some of the most common colors are shown below; however, the Color utility in CuteFTP eliminates the need to memorize the HTML codes for colors.
Color Name |
Hex Code |
RGB (Red, Green, Blue) Values |
---|---|---|
black |
#000000 |
0,0,0 |
white |
#FFFFFF |
255,255,255 |
red |
#FF0000 |
255,0,0 |
blue |
#0000FF |
0,0,255 |
green |
#00FF00 |
0,255,0 |
yellow |
#FFFF00 |
255,255,0 |
To open the color options
-
Click within the HTML Editor pane at the location where you want to paste the hexadecimal color code.
-
On the main menu, click Tools > Color to HEX. (This option is not available if you do not click within the HTML Editor pane first.) The Color dialog box appears.
-
Click the color to use.
-
If you want to use browser-safe colors only, select the Paste browser-safe color check box.
-
Choose OK to insert the HEX code for the selected color into your document. For example:
<p><font color="FF0000">text</font>
For more information about using colors in HTML documents, as well as a chart of many different color codes, refer to http://www.w3schools.com/html/html_colors.asp.