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