HEX: #F9CFDC
RGB: (249,207,220)
#F9CFDC contains red, green and blue colors in about the same proportion. Web safe color of #F9CFDC is #FFCCCC (or #FCC).
#F9CFDC color RGB value is (249,207,220).
RGB: (249,207,220) (98%,81%,86%)
R 249 of 255 = 98%
G 207 of 255 = 81%
B 220 of 255 = 86%
R + G + B ~ 88%. #F9CFDC is light color.
R + G + B =
249 + 207 + 220 = 676 (100%)
R 249 of 676 ~ 36.83%
G 207 of 676 ~ 30.62%
B 220 of 676 ~ 32.54%
#F9CFDC color CMYK value is (0,17,12,2).
CMYK: (0,17,12,2) C0M17Y12K2 (0%,17%,12%,2%) (0.00/0.17/0.12/0.02)
F9 | CF | DC | |
---|---|---|---|
RGB | 249 | 207 | 220 |
HSL | 341° | 77.78% | 89.41% |
HSB/HSV | 341° | 16.87% | 97.65% |
CMYK | 0.00% | 16.87% | 11.65% |
2.35% |
HEX | F9 | CF | DC |
Decimal | 249 | 207 | 220 |
Binary | 11111001 | 11001111 | 11011100 |
Octal | 371 | 317 | 334 |
Examples of css and html codes for elements with #F9CFDC color. Also use rgb(249,207,220) instead hex code.
.myTextColor { color: #F9CFDC; }
<p style="color:#F9CFDC">This sample text font color is #F9CFDC.</p>
This text font color is #F9CFDC.
.myBgColor { background-color: #F9CFDC; }
<div style="background-color:#F9CFDC">Inner text</div>
This div background color is #F9CFDC.
.myBorderColor { border: 1px solid #F9CFDC; }
<div style="border:3px solid #F9CFDC">Div</div>
This div border color is #F9CFDC.
.myOpacity80 { color: #F9CFDC; opacity: 0.8; }
<p style="color:#F9CFDC;opacity:0.8;">80%</p>
Text with #F9CFDC color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #F9CFDC;}
<p style="text-shadow: 3px 3px 1px #F9CFDC">Text here.</p>
This text has shadow with #F9CFDC color.
.textShadow {text-shadow: 3px 3px 1px #F9CFDC, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #F9CFDC, 5px 5px 20px red">Text here.</p>
This text has shadow with #F9CFDC primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#F9CFDC, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#F9CFDC, Direction=45, Strength=4)">Text</p>
This text has shadow with #F9CFDC and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #F9CFDC; -webkit-box-shadow: 1px 1px 3px 2px #F9CFDC; box-shadow: 1px 1px 3px 2px #F9CFDC; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #F9CFDC; -webkit-box-shadow: 1px 1px 3px 2px #F9CFDC; box-shadow:1px 1px 3px 2px #F9CFDC;">
Div content here</div>
This text has color #F9CFDC on black background.
This text has color #F9CFDC on white background.
This text has black color on #F9CFDC background.
This text has white color on #F9CFDC background.