HEX: #FFEDE6
RGB: (255,237,230)
#FFEDE6 contains red, green and blue colors in about the same proportion. Web safe color of #FFEDE6 is #FFFFCC (or #FFC).
#FFEDE6 color RGB value is (255,237,230).
RGB: (255,237,230) (100%,93%,90%)
R 255 of 255 = 100%
G 237 of 255 = 93%
B 230 of 255 = 90%
R + G + B ~ 94%. #FFEDE6 is light color.
R + G + B =
255 + 237 + 230 = 722 (100%)
R 255 of 722 ~ 35.32%
G 237 of 722 ~ 32.83%
B 230 of 722 ~ 31.86%
#FFEDE6 color CMYK value is (0,7,10,0).
CMYK: (0,7,10,0) C0M7Y10K0 (0%,7%,10%,0%) (0.00/0.07/0.10/0.00)
FF | ED | E6 | |
---|---|---|---|
RGB | 255 | 237 | 230 |
HSL | 17° | 100.00% | 95.10% |
HSB/HSV | 17° | 9.80% | 100.00% |
CMYK | 0.00% | 7.06% | 9.80% |
0.00% |
HEX | FF | ED | E6 |
Decimal | 255 | 237 | 230 |
Binary | 11111111 | 11101101 | 11100110 |
Octal | 377 | 355 | 346 |
Examples of css and html codes for elements with #FFEDE6 color. Also use rgb(255,237,230) instead hex code.
.myTextColor { color: #FFEDE6; }
<p style="color:#FFEDE6">This sample text font color is #FFEDE6.</p>
This text font color is #FFEDE6.
.myBgColor { background-color: #FFEDE6; }
<div style="background-color:#FFEDE6">Inner text</div>
This div background color is #FFEDE6.
.myBorderColor { border: 1px solid #FFEDE6; }
<div style="border:3px solid #FFEDE6">Div</div>
This div border color is #FFEDE6.
.myOpacity80 { color: #FFEDE6; opacity: 0.8; }
<p style="color:#FFEDE6;opacity:0.8;">80%</p>
Text with #FFEDE6 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #FFEDE6;}
<p style="text-shadow: 3px 3px 1px #FFEDE6">Text here.</p>
This text has shadow with #FFEDE6 color.
.textShadow {text-shadow: 3px 3px 1px #FFEDE6, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #FFEDE6, 5px 5px 20px red">Text here.</p>
This text has shadow with #FFEDE6 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#FFEDE6, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#FFEDE6, Direction=45, Strength=4)">Text</p>
This text has shadow with #FFEDE6 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #FFEDE6; -webkit-box-shadow: 1px 1px 3px 2px #FFEDE6; box-shadow: 1px 1px 3px 2px #FFEDE6; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #FFEDE6; -webkit-box-shadow: 1px 1px 3px 2px #FFEDE6; box-shadow:1px 1px 3px 2px #FFEDE6;">
Div content here</div>
This text has color #FFEDE6 on black background.
This text has color #FFEDE6 on white background.
This text has black color on #FFEDE6 background.
This text has white color on #FFEDE6 background.