HEX: #F9DDEE
RGB: (249,221,238)
#F9DDEE contains red, green and blue colors in about the same proportion. Web safe color of #F9DDEE is #FFCCFF (or #FCF).
#F9DDEE color RGB value is (249,221,238).
RGB: (249,221,238) (98%,87%,93%)
R 249 of 255 = 98%
G 221 of 255 = 87%
B 238 of 255 = 93%
R + G + B ~ 93%. #F9DDEE is light color.
R + G + B =
249 + 221 + 238 = 708 (100%)
R 249 of 708 ~ 35.17%
G 221 of 708 ~ 31.21%
B 238 of 708 ~ 33.62%
#F9DDEE color CMYK value is (0,11,4,2).
CMYK: (0,11,4,2) C0M11Y4K2 (0%,11%,4%,2%) (0.00/0.11/0.04/0.02)
F9 | DD | EE | |
---|---|---|---|
RGB | 249 | 221 | 238 |
HSL | 324° | 70.00% | 92.16% |
HSB/HSV | 324° | 11.24% | 97.65% |
CMYK | 0.00% | 11.24% | 4.42% |
2.35% |
HEX | F9 | DD | EE |
Decimal | 249 | 221 | 238 |
Binary | 11111001 | 11011101 | 11101110 |
Octal | 371 | 335 | 356 |
Examples of css and html codes for elements with #F9DDEE color. Also use rgb(249,221,238) instead hex code.
.myTextColor { color: #F9DDEE; }
<p style="color:#F9DDEE">This sample text font color is #F9DDEE.</p>
This text font color is #F9DDEE.
.myBgColor { background-color: #F9DDEE; }
<div style="background-color:#F9DDEE">Inner text</div>
This div background color is #F9DDEE.
.myBorderColor { border: 1px solid #F9DDEE; }
<div style="border:3px solid #F9DDEE">Div</div>
This div border color is #F9DDEE.
.myOpacity80 { color: #F9DDEE; opacity: 0.8; }
<p style="color:#F9DDEE;opacity:0.8;">80%</p>
Text with #F9DDEE color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #F9DDEE;}
<p style="text-shadow: 3px 3px 1px #F9DDEE">Text here.</p>
This text has shadow with #F9DDEE color.
.textShadow {text-shadow: 3px 3px 1px #F9DDEE, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #F9DDEE, 5px 5px 20px red">Text here.</p>
This text has shadow with #F9DDEE primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#F9DDEE, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#F9DDEE, Direction=45, Strength=4)">Text</p>
This text has shadow with #F9DDEE and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #F9DDEE; -webkit-box-shadow: 1px 1px 3px 2px #F9DDEE; box-shadow: 1px 1px 3px 2px #F9DDEE; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #F9DDEE; -webkit-box-shadow: 1px 1px 3px 2px #F9DDEE; box-shadow:1px 1px 3px 2px #F9DDEE;">
Div content here</div>
This text has color #F9DDEE on black background.
This text has color #F9DDEE on white background.
This text has black color on #F9DDEE background.
This text has white color on #F9DDEE background.