HEX: #EDE6DF
RGB: (237,230,223)
#EDE6DF contains red, green and blue colors in about the same proportion. Web safe color of #EDE6DF is #FFCCCC (or #FCC).
#EDE6DF color RGB value is (237,230,223).
RGB: (237,230,223) (93%,90%,87%)
R 237 of 255 = 93%
G 230 of 255 = 90%
B 223 of 255 = 87%
R + G + B ~ 90%. #EDE6DF is light color.
R + G + B =
237 + 230 + 223 = 690 (100%)
R 237 of 690 ~ 34.35%
G 230 of 690 ~ 33.33%
B 223 of 690 ~ 32.32%
#EDE6DF color CMYK value is (0,3,6,7).
CMYK: (0,3,6,7) C0M3Y6K7 (0%,3%,6%,7%) (0.00/0.03/0.06/0.07)
ED | E6 | DF | |
---|---|---|---|
RGB | 237 | 230 | 223 |
HSL | 30° | 28.00% | 90.20% |
HSB/HSV | 30° | 5.91% | 92.94% |
CMYK | 0.00% | 2.95% | 5.91% |
7.06% |
HEX | ED | E6 | DF |
Decimal | 237 | 230 | 223 |
Binary | 11101101 | 11100110 | 11011111 |
Octal | 355 | 346 | 337 |
Examples of css and html codes for elements with #EDE6DF color. Also use rgb(237,230,223) instead hex code.
.myTextColor { color: #EDE6DF; }
<p style="color:#EDE6DF">This sample text font color is #EDE6DF.</p>
This text font color is #EDE6DF.
.myBgColor { background-color: #EDE6DF; }
<div style="background-color:#EDE6DF">Inner text</div>
This div background color is #EDE6DF.
.myBorderColor { border: 1px solid #EDE6DF; }
<div style="border:3px solid #EDE6DF">Div</div>
This div border color is #EDE6DF.
.myOpacity80 { color: #EDE6DF; opacity: 0.8; }
<p style="color:#EDE6DF;opacity:0.8;">80%</p>
Text with #EDE6DF color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #EDE6DF;}
<p style="text-shadow: 3px 3px 1px #EDE6DF">Text here.</p>
This text has shadow with #EDE6DF color.
.textShadow {text-shadow: 3px 3px 1px #EDE6DF, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #EDE6DF, 5px 5px 20px red">Text here.</p>
This text has shadow with #EDE6DF primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#EDE6DF, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#EDE6DF, Direction=45, Strength=4)">Text</p>
This text has shadow with #EDE6DF and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #EDE6DF; -webkit-box-shadow: 1px 1px 3px 2px #EDE6DF; box-shadow: 1px 1px 3px 2px #EDE6DF; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #EDE6DF; -webkit-box-shadow: 1px 1px 3px 2px #EDE6DF; box-shadow:1px 1px 3px 2px #EDE6DF;">
Div content here</div>
This text has color #EDE6DF on black background.
This text has color #EDE6DF on white background.
This text has black color on #EDE6DF background.
This text has white color on #EDE6DF background.