HEX: #F9DCDE
RGB: (249,220,222)
#F9DCDE contains red, green and blue colors in about the same proportion. Web safe color of #F9DCDE is #FFCCCC (or #FCC).
#F9DCDE color RGB value is (249,220,222).
RGB: (249,220,222) (98%,86%,87%)
R 249 of 255 = 98%
G 220 of 255 = 86%
B 222 of 255 = 87%
R + G + B ~ 90%. #F9DCDE is light color.
R + G + B =
249 + 220 + 222 = 691 (100%)
R 249 of 691 ~ 36.03%
G 220 of 691 ~ 31.84%
B 222 of 691 ~ 32.13%
#F9DCDE color CMYK value is (0,12,11,2).
CMYK: (0,12,11,2) C0M12Y11K2 (0%,12%,11%,2%) (0.00/0.12/0.11/0.02)
F9 | DC | DE | |
---|---|---|---|
RGB | 249 | 220 | 222 |
HSL | 356° | 70.73% | 91.96% |
HSB/HSV | 356° | 11.65% | 97.65% |
CMYK | 0.00% | 11.65% | 10.84% |
2.35% |
HEX | F9 | DC | DE |
Decimal | 249 | 220 | 222 |
Binary | 11111001 | 11011100 | 11011110 |
Octal | 371 | 334 | 336 |
Examples of css and html codes for elements with #F9DCDE color. Also use rgb(249,220,222) instead hex code.
.myTextColor { color: #F9DCDE; }
<p style="color:#F9DCDE">This sample text font color is #F9DCDE.</p>
This text font color is #F9DCDE.
.myBgColor { background-color: #F9DCDE; }
<div style="background-color:#F9DCDE">Inner text</div>
This div background color is #F9DCDE.
.myBorderColor { border: 1px solid #F9DCDE; }
<div style="border:3px solid #F9DCDE">Div</div>
This div border color is #F9DCDE.
.myOpacity80 { color: #F9DCDE; opacity: 0.8; }
<p style="color:#F9DCDE;opacity:0.8;">80%</p>
Text with #F9DCDE color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #F9DCDE;}
<p style="text-shadow: 3px 3px 1px #F9DCDE">Text here.</p>
This text has shadow with #F9DCDE color.
.textShadow {text-shadow: 3px 3px 1px #F9DCDE, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #F9DCDE, 5px 5px 20px red">Text here.</p>
This text has shadow with #F9DCDE primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#F9DCDE, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#F9DCDE, Direction=45, Strength=4)">Text</p>
This text has shadow with #F9DCDE and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #F9DCDE; -webkit-box-shadow: 1px 1px 3px 2px #F9DCDE; box-shadow: 1px 1px 3px 2px #F9DCDE; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #F9DCDE; -webkit-box-shadow: 1px 1px 3px 2px #F9DCDE; box-shadow:1px 1px 3px 2px #F9DCDE;">
Div content here</div>
This text has color #F9DCDE on black background.
This text has color #F9DCDE on white background.
This text has black color on #F9DCDE background.
This text has white color on #F9DCDE background.