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