I recommend you to follow the W3C recommendations:
All of them (CSS Level 1, Level 2 and Level 3) indicates that using color names is perfectly acceptable:
CSS1 Specification
CSS1 Specification recommends to use color names as well as RGB codes.
6.3 Color units
A color is a either a keyword or a numerical RGB specification.
The suggested list of keyword color names is: aqua, black, blue,
fuchsia, gray, green, lime, maroon, navy, olive, purple, red, silver,
teal, white, and yellow. These 16 colors are taken from the Windows
VGA palette, and their RGB values are not defined in this
specification.
BODY {color: black; background: white } H1 { color: maroon } H2 {
color: olive }
CSS2 and CSS3 Specification
4. Color units
A is either a keyword or a numerical RGB specification.
See the CSS2 Specification and CSS3 Specification for more information.
CSS Techniques for Web Content Accessibility Guidelines
However, the last version of this document (which is pretty outdated to me) says:
Example.
Use numbers, not names, for colors:
H1 {color: #808000}
H1 {color: rgb(50%,50%,0%)}
Deprecated example.
H1 {color: red}
Therefore, I don't see any cons to use color names, unless if you have specific requirements. Also, note these lines at the beginning of the document:
While the "Web Content Accessibility Guidelines 1.0" Recommendation [WCAG10] is a stable document, this series of companion documents is expected to evolve as technologies change and content developers discover more effective techniques for designing accessible Web content.
Shorthand Hexadecimal Colors
To me, it's more readable to write your HEX codes in lowercase. For example, #8b88b6 is obviously more readable than #8B88B6. Also, I tend to use shorthand HEX color instead of full code (#666 instead of #666666) since it's more efficient.
Last thing, don't worry about the Web-Safe colors. Those are not relevant anymore. See yourself the W3School Browser Statistics, nowadays, most people are using modern browsers such as Google Chrome or Mozilla Firefox. Use web-safe colors only if you have very specific needs.