HEX: #FDF4EC
RGB: (253,244,236)
#FDF4EC contains red, green and blue colors in about the same proportion. Web safe color of #FDF4EC is #FFFFFF (or #FFF).
#FDF4EC color RGB value is (253,244,236).
RGB: (253,244,236) (99%,96%,93%)
R 253 of 255 = 99%
G 244 of 255 = 96%
B 236 of 255 = 93%
R + G + B ~ 96%. #FDF4EC is light color.
R + G + B =
253 + 244 + 236 = 733 (100%)
R 253 of 733 ~ 34.52%
G 244 of 733 ~ 33.29%
B 236 of 733 ~ 32.2%
#FDF4EC color CMYK value is (0,4,7,1).
CMYK: (0,4,7,1) C0M4Y7K1 (0%,4%,7%,1%) (0.00/0.04/0.07/0.01)
FD | F4 | EC | |
---|---|---|---|
RGB | 253 | 244 | 236 |
HSL | 28° | 80.95% | 95.88% |
HSB/HSV | 28° | 6.72% | 99.22% |
CMYK | 0.00% | 3.56% | 6.72% |
0.78% |
HEX | FD | F4 | EC |
Decimal | 253 | 244 | 236 |
Binary | 11111101 | 11110100 | 11101100 |
Octal | 375 | 364 | 354 |
Examples of css and html codes for elements with #FDF4EC color. Also use rgb(253,244,236) instead hex code.
.myTextColor { color: #FDF4EC; }
<p style="color:#FDF4EC">This sample text font color is #FDF4EC.</p>
This text font color is #FDF4EC.
.myBgColor { background-color: #FDF4EC; }
<div style="background-color:#FDF4EC">Inner text</div>
This div background color is #FDF4EC.
.myBorderColor { border: 1px solid #FDF4EC; }
<div style="border:3px solid #FDF4EC">Div</div>
This div border color is #FDF4EC.
.myOpacity80 { color: #FDF4EC; opacity: 0.8; }
<p style="color:#FDF4EC;opacity:0.8;">80%</p>
Text with #FDF4EC color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #FDF4EC;}
<p style="text-shadow: 3px 3px 1px #FDF4EC">Text here.</p>
This text has shadow with #FDF4EC color.
.textShadow {text-shadow: 3px 3px 1px #FDF4EC, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #FDF4EC, 5px 5px 20px red">Text here.</p>
This text has shadow with #FDF4EC primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#FDF4EC, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#FDF4EC, Direction=45, Strength=4)">Text</p>
This text has shadow with #FDF4EC and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #FDF4EC; -webkit-box-shadow: 1px 1px 3px 2px #FDF4EC; box-shadow: 1px 1px 3px 2px #FDF4EC; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #FDF4EC; -webkit-box-shadow: 1px 1px 3px 2px #FDF4EC; box-shadow:1px 1px 3px 2px #FDF4EC;">
Div content here</div>
This text has color #FDF4EC on black background.
This text has color #FDF4EC on white background.
This text has black color on #FDF4EC background.
This text has white color on #FDF4EC background.