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