HEX: #F9FDDD
RGB: (249,253,221)
#F9FDDD contains red, green and blue colors in about the same proportion. Web safe color of #F9FDDD is #FFFFCC (or #FFC).
#F9FDDD color RGB value is (249,253,221).
RGB: (249,253,221) (98%,99%,87%)
R 249 of 255 = 98%
G 253 of 255 = 99%
B 221 of 255 = 87%
R + G + B ~ 95%. #F9FDDD is light color.
R + G + B =
249 + 253 + 221 = 723 (100%)
R 249 of 723 ~ 34.44%
G 253 of 723 ~ 34.99%
B 221 of 723 ~ 30.57%
#F9FDDD color CMYK value is (2,0,13,1).
CMYK: (2,0,13,1) C2M0Y13K1 (2%,0%,13%,1%) (0.02/0.00/0.13/0.01)
F9 | FD | DD | |
---|---|---|---|
RGB | 249 | 253 | 221 |
HSL | 68° | 88.89% | 92.94% |
HSB/HSV | 68° | 12.65% | 99.22% |
CMYK | 1.58% | 0.00% | 12.65% |
0.78% |
HEX | F9 | FD | DD |
Decimal | 249 | 253 | 221 |
Binary | 11111001 | 11111101 | 11011101 |
Octal | 371 | 375 | 335 |
Examples of css and html codes for elements with #F9FDDD color. Also use rgb(249,253,221) instead hex code.
.myTextColor { color: #F9FDDD; }
<p style="color:#F9FDDD">This sample text font color is #F9FDDD.</p>
This text font color is #F9FDDD.
.myBgColor { background-color: #F9FDDD; }
<div style="background-color:#F9FDDD">Inner text</div>
This div background color is #F9FDDD.
.myBorderColor { border: 1px solid #F9FDDD; }
<div style="border:3px solid #F9FDDD">Div</div>
This div border color is #F9FDDD.
.myOpacity80 { color: #F9FDDD; opacity: 0.8; }
<p style="color:#F9FDDD;opacity:0.8;">80%</p>
Text with #F9FDDD color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #F9FDDD;}
<p style="text-shadow: 3px 3px 1px #F9FDDD">Text here.</p>
This text has shadow with #F9FDDD color.
.textShadow {text-shadow: 3px 3px 1px #F9FDDD, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #F9FDDD, 5px 5px 20px red">Text here.</p>
This text has shadow with #F9FDDD primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#F9FDDD, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#F9FDDD, Direction=45, Strength=4)">Text</p>
This text has shadow with #F9FDDD and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #F9FDDD; -webkit-box-shadow: 1px 1px 3px 2px #F9FDDD; box-shadow: 1px 1px 3px 2px #F9FDDD; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #F9FDDD; -webkit-box-shadow: 1px 1px 3px 2px #F9FDDD; box-shadow:1px 1px 3px 2px #F9FDDD;">
Div content here</div>
This text has color #F9FDDD on black background.
This text has color #F9FDDD on white background.
This text has black color on #F9FDDD background.
This text has white color on #F9FDDD background.