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