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