HEX: #FDE3DA
RGB: (253,227,218)
#FDE3DA contains red, green and blue colors in about the same proportion. Web safe color of #FDE3DA is #FFCCCC (or #FCC).
#FDE3DA color RGB value is (253,227,218).
RGB: (253,227,218) (99%,89%,85%)
R 253 of 255 = 99%
G 227 of 255 = 89%
B 218 of 255 = 85%
R + G + B ~ 91%. #FDE3DA is light color.
R + G + B =
253 + 227 + 218 = 698 (100%)
R 253 of 698 ~ 36.25%
G 227 of 698 ~ 32.52%
B 218 of 698 ~ 31.23%
#FDE3DA color CMYK value is (0,10,14,1).
CMYK: (0,10,14,1) C0M10Y14K1 (0%,10%,14%,1%) (0.00/0.10/0.14/0.01)
FD | E3 | DA | |
---|---|---|---|
RGB | 253 | 227 | 218 |
HSL | 15° | 89.74% | 92.35% |
HSB/HSV | 15° | 13.83% | 99.22% |
CMYK | 0.00% | 10.28% | 13.83% |
0.78% |
HEX | FD | E3 | DA |
Decimal | 253 | 227 | 218 |
Binary | 11111101 | 11100011 | 11011010 |
Octal | 375 | 343 | 332 |
Examples of css and html codes for elements with #FDE3DA color. Also use rgb(253,227,218) instead hex code.
.myTextColor { color: #FDE3DA; }
<p style="color:#FDE3DA">This sample text font color is #FDE3DA.</p>
This text font color is #FDE3DA.
.myBgColor { background-color: #FDE3DA; }
<div style="background-color:#FDE3DA">Inner text</div>
This div background color is #FDE3DA.
.myBorderColor { border: 1px solid #FDE3DA; }
<div style="border:3px solid #FDE3DA">Div</div>
This div border color is #FDE3DA.
.myOpacity80 { color: #FDE3DA; opacity: 0.8; }
<p style="color:#FDE3DA;opacity:0.8;">80%</p>
Text with #FDE3DA color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #FDE3DA;}
<p style="text-shadow: 3px 3px 1px #FDE3DA">Text here.</p>
This text has shadow with #FDE3DA color.
.textShadow {text-shadow: 3px 3px 1px #FDE3DA, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #FDE3DA, 5px 5px 20px red">Text here.</p>
This text has shadow with #FDE3DA primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#FDE3DA, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#FDE3DA, Direction=45, Strength=4)">Text</p>
This text has shadow with #FDE3DA and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #FDE3DA; -webkit-box-shadow: 1px 1px 3px 2px #FDE3DA; box-shadow: 1px 1px 3px 2px #FDE3DA; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #FDE3DA; -webkit-box-shadow: 1px 1px 3px 2px #FDE3DA; box-shadow:1px 1px 3px 2px #FDE3DA;">
Div content here</div>
This text has color #FDE3DA on black background.
This text has color #FDE3DA on white background.
This text has black color on #FDE3DA background.
This text has white color on #FDE3DA background.