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