HEX: #9999CC
RGB: (153,153,204)
#9999CC contains red, green and blue colors in about the same proportion. #9999CC color is web safe color. It maybe written shortly as #99C.
#9999CC color RGB value is (153,153,204).
RGB: (153,153,204) (60%,60%,80%)
R 153 of 255 = 60%
G 153 of 255 = 60%
B 204 of 255 = 80%
R + G + B ~ 67%. #9999CC is quite light color.
R + G + B =
153 + 153 + 204 = 510 (100%)
R 153 of 510 ~ 30%
G 153 of 510 ~ 30%
B 204 of 510 ~ 40%
#9999CC color CMYK value is (25,25,0,20).
CMYK: (25,25,0,20) C25M25Y0K20 (25%,25%,0%,20%) (0.25/0.25/0.00/0.20)
99 | 99 | CC | |
---|---|---|---|
RGB | 153 | 153 | 204 |
HSL | 240° | 33.33% | 70.00% |
HSB/HSV | 240° | 25.00% | 80.00% |
CMYK | 25.00% | 25.00% | 0.00% |
20.00% |
HEX | 99 | 99 | CC |
Decimal | 153 | 153 | 204 |
Binary | 10011001 | 10011001 | 11001100 |
Octal | 231 | 231 | 314 |
Examples of css and html codes for elements with #9999CC color. Also use rgb(153,153,204) instead hex code.
.myTextColor { color: #9999CC; }
<p style="color:#9999CC">This sample text font color is #9999CC.</p>
This text font color is #9999CC.
.myBgColor { background-color: #9999CC; }
<div style="background-color:#9999CC">Inner text</div>
This div background color is #9999CC.
.myBorderColor { border: 1px solid #9999CC; }
<div style="border:3px solid #9999CC">Div</div>
This div border color is #9999CC.
.myOpacity80 { color: #9999CC; opacity: 0.8; }
<p style="color:#9999CC;opacity:0.8;">80%</p>
Text with #9999CC color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #9999CC;}
<p style="text-shadow: 3px 3px 1px #9999CC">Text here.</p>
This text has shadow with #9999CC color.
.textShadow {text-shadow: 3px 3px 1px #9999CC, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #9999CC, 5px 5px 20px red">Text here.</p>
This text has shadow with #9999CC primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#9999CC, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#9999CC, Direction=45, Strength=4)">Text</p>
This text has shadow with #9999CC and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #9999CC; -webkit-box-shadow: 1px 1px 3px 2px #9999CC; box-shadow: 1px 1px 3px 2px #9999CC; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #9999CC; -webkit-box-shadow: 1px 1px 3px 2px #9999CC; box-shadow:1px 1px 3px 2px #9999CC;">
Div content here</div>
This text has color #9999CC on black background.
This text has color #9999CC on white background.
This text has black color on #9999CC background.
This text has white color on #9999CC background.