HEX: #FFEDFA
RGB: (255,237,250)
#FFEDFA contains red, green and blue colors in about the same proportion. Web safe color of #FFEDFA is #FFFFFF (or #FFF).
#FFEDFA color RGB value is (255,237,250).
RGB: (255,237,250) (100%,93%,98%)
R 255 of 255 = 100%
G 237 of 255 = 93%
B 250 of 255 = 98%
R + G + B ~ 97%. #FFEDFA is light color.
R + G + B =
255 + 237 + 250 = 742 (100%)
R 255 of 742 ~ 34.37%
G 237 of 742 ~ 31.94%
B 250 of 742 ~ 33.69%
#FFEDFA color CMYK value is (0,7,2,0).
CMYK: (0,7,2,0) C0M7Y2K0 (0%,7%,2%,0%) (0.00/0.07/0.02/0.00)
FF | ED | FA | |
---|---|---|---|
RGB | 255 | 237 | 250 |
HSL | 317° | 100.00% | 96.47% |
HSB/HSV | 317° | 7.06% | 100.00% |
CMYK | 0.00% | 7.06% | 1.96% |
0.00% |
HEX | FF | ED | FA |
Decimal | 255 | 237 | 250 |
Binary | 11111111 | 11101101 | 11111010 |
Octal | 377 | 355 | 372 |
Examples of css and html codes for elements with #FFEDFA color. Also use rgb(255,237,250) instead hex code.
.myTextColor { color: #FFEDFA; }
<p style="color:#FFEDFA">This sample text font color is #FFEDFA.</p>
This text font color is #FFEDFA.
.myBgColor { background-color: #FFEDFA; }
<div style="background-color:#FFEDFA">Inner text</div>
This div background color is #FFEDFA.
.myBorderColor { border: 1px solid #FFEDFA; }
<div style="border:3px solid #FFEDFA">Div</div>
This div border color is #FFEDFA.
.myOpacity80 { color: #FFEDFA; opacity: 0.8; }
<p style="color:#FFEDFA;opacity:0.8;">80%</p>
Text with #FFEDFA color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #FFEDFA;}
<p style="text-shadow: 3px 3px 1px #FFEDFA">Text here.</p>
This text has shadow with #FFEDFA color.
.textShadow {text-shadow: 3px 3px 1px #FFEDFA, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #FFEDFA, 5px 5px 20px red">Text here.</p>
This text has shadow with #FFEDFA primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#FFEDFA, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#FFEDFA, Direction=45, Strength=4)">Text</p>
This text has shadow with #FFEDFA and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #FFEDFA; -webkit-box-shadow: 1px 1px 3px 2px #FFEDFA; box-shadow: 1px 1px 3px 2px #FFEDFA; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #FFEDFA; -webkit-box-shadow: 1px 1px 3px 2px #FFEDFA; box-shadow:1px 1px 3px 2px #FFEDFA;">
Div content here</div>
This text has color #FFEDFA on black background.
This text has color #FFEDFA on white background.
This text has black color on #FFEDFA background.
This text has white color on #FFEDFA background.