HEX: #F9DBDE
RGB: (249,219,222)
#F9DBDE contains red, green and blue colors in about the same proportion. Web safe color of #F9DBDE is #FFCCCC (or #FCC).
#F9DBDE color RGB value is (249,219,222).
RGB: (249,219,222) (98%,86%,87%)
R 249 of 255 = 98%
G 219 of 255 = 86%
B 222 of 255 = 87%
R + G + B ~ 90%. #F9DBDE is light color.
R + G + B =
249 + 219 + 222 = 690 (100%)
R 249 of 690 ~ 36.09%
G 219 of 690 ~ 31.74%
B 222 of 690 ~ 32.17%
#F9DBDE 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 | DB | DE | |
---|---|---|---|
RGB | 249 | 219 | 222 |
HSL | 354° | 71.43% | 91.76% |
HSB/HSV | 354° | 12.05% | 97.65% |
CMYK | 0.00% | 12.05% | 10.84% |
2.35% |
HEX | F9 | DB | DE |
Decimal | 249 | 219 | 222 |
Binary | 11111001 | 11011011 | 11011110 |
Octal | 371 | 333 | 336 |
Examples of css and html codes for elements with #F9DBDE color. Also use rgb(249,219,222) instead hex code.
.myTextColor { color: #F9DBDE; }
<p style="color:#F9DBDE">This sample text font color is #F9DBDE.</p>
This text font color is #F9DBDE.
.myBgColor { background-color: #F9DBDE; }
<div style="background-color:#F9DBDE">Inner text</div>
This div background color is #F9DBDE.
.myBorderColor { border: 1px solid #F9DBDE; }
<div style="border:3px solid #F9DBDE">Div</div>
This div border color is #F9DBDE.
.myOpacity80 { color: #F9DBDE; opacity: 0.8; }
<p style="color:#F9DBDE;opacity:0.8;">80%</p>
Text with #F9DBDE color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #F9DBDE;}
<p style="text-shadow: 3px 3px 1px #F9DBDE">Text here.</p>
This text has shadow with #F9DBDE color.
.textShadow {text-shadow: 3px 3px 1px #F9DBDE, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #F9DBDE, 5px 5px 20px red">Text here.</p>
This text has shadow with #F9DBDE primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#F9DBDE, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#F9DBDE, Direction=45, Strength=4)">Text</p>
This text has shadow with #F9DBDE and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #F9DBDE; -webkit-box-shadow: 1px 1px 3px 2px #F9DBDE; box-shadow: 1px 1px 3px 2px #F9DBDE; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #F9DBDE; -webkit-box-shadow: 1px 1px 3px 2px #F9DBDE; box-shadow:1px 1px 3px 2px #F9DBDE;">
Div content here</div>
This text has color #F9DBDE on black background.
This text has color #F9DBDE on white background.
This text has black color on #F9DBDE background.
This text has white color on #F9DBDE background.