HEX: #F9CDD7
RGB: (249,205,215)
#F9CDD7 contains red, green and blue colors in about the same proportion. Web safe color of #F9CDD7 is #FFCCCC (or #FCC).
#F9CDD7 color RGB value is (249,205,215).
RGB: (249,205,215) (98%,80%,84%)
R 249 of 255 = 98%
G 205 of 255 = 80%
B 215 of 255 = 84%
R + G + B ~ 87%. #F9CDD7 is light color.
R + G + B =
249 + 205 + 215 = 669 (100%)
R 249 of 669 ~ 37.22%
G 205 of 669 ~ 30.64%
B 215 of 669 ~ 32.14%
#F9CDD7 color CMYK value is (0,18,14,2).
CMYK: (0,18,14,2) C0M18Y14K2 (0%,18%,14%,2%) (0.00/0.18/0.14/0.02)
F9 | CD | D7 | |
---|---|---|---|
RGB | 249 | 205 | 215 |
HSL | 346° | 78.57% | 89.02% |
HSB/HSV | 346° | 17.67% | 97.65% |
CMYK | 0.00% | 17.67% | 13.65% |
2.35% |
HEX | F9 | CD | D7 |
Decimal | 249 | 205 | 215 |
Binary | 11111001 | 11001101 | 11010111 |
Octal | 371 | 315 | 327 |
Examples of css and html codes for elements with #F9CDD7 color. Also use rgb(249,205,215) instead hex code.
.myTextColor { color: #F9CDD7; }
<p style="color:#F9CDD7">This sample text font color is #F9CDD7.</p>
This text font color is #F9CDD7.
.myBgColor { background-color: #F9CDD7; }
<div style="background-color:#F9CDD7">Inner text</div>
This div background color is #F9CDD7.
.myBorderColor { border: 1px solid #F9CDD7; }
<div style="border:3px solid #F9CDD7">Div</div>
This div border color is #F9CDD7.
.myOpacity80 { color: #F9CDD7; opacity: 0.8; }
<p style="color:#F9CDD7;opacity:0.8;">80%</p>
Text with #F9CDD7 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #F9CDD7;}
<p style="text-shadow: 3px 3px 1px #F9CDD7">Text here.</p>
This text has shadow with #F9CDD7 color.
.textShadow {text-shadow: 3px 3px 1px #F9CDD7, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #F9CDD7, 5px 5px 20px red">Text here.</p>
This text has shadow with #F9CDD7 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#F9CDD7, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#F9CDD7, Direction=45, Strength=4)">Text</p>
This text has shadow with #F9CDD7 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #F9CDD7; -webkit-box-shadow: 1px 1px 3px 2px #F9CDD7; box-shadow: 1px 1px 3px 2px #F9CDD7; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #F9CDD7; -webkit-box-shadow: 1px 1px 3px 2px #F9CDD7; box-shadow:1px 1px 3px 2px #F9CDD7;">
Div content here</div>
This text has color #F9CDD7 on black background.
This text has color #F9CDD7 on white background.
This text has black color on #F9CDD7 background.
This text has white color on #F9CDD7 background.