HEX: #EDEED7
RGB: (237,238,215)
#EDEED7 contains red, green and blue colors in about the same proportion. Web safe color of #EDEED7 is #FFFFCC (or #FFC).
#EDEED7 color RGB value is (237,238,215).
RGB: (237,238,215) (93%,93%,84%)
R 237 of 255 = 93%
G 238 of 255 = 93%
B 215 of 255 = 84%
R + G + B ~ 90%. #EDEED7 is light color.
R + G + B =
237 + 238 + 215 = 690 (100%)
R 237 of 690 ~ 34.35%
G 238 of 690 ~ 34.49%
B 215 of 690 ~ 31.16%
#EDEED7 color CMYK value is (0,0,10,7).
CMYK: (0,0,10,7) C0M0Y10K7 (0%,0%,10%,7%) (0.00/0.00/0.10/0.07)
ED | EE | D7 | |
---|---|---|---|
RGB | 237 | 238 | 215 |
HSL | 63° | 40.35% | 88.82% |
HSB/HSV | 63° | 9.66% | 93.33% |
CMYK | 0.42% | 0.00% | 9.66% |
6.67% |
HEX | ED | EE | D7 |
Decimal | 237 | 238 | 215 |
Binary | 11101101 | 11101110 | 11010111 |
Octal | 355 | 356 | 327 |
Examples of css and html codes for elements with #EDEED7 color. Also use rgb(237,238,215) instead hex code.
.myTextColor { color: #EDEED7; }
<p style="color:#EDEED7">This sample text font color is #EDEED7.</p>
This text font color is #EDEED7.
.myBgColor { background-color: #EDEED7; }
<div style="background-color:#EDEED7">Inner text</div>
This div background color is #EDEED7.
.myBorderColor { border: 1px solid #EDEED7; }
<div style="border:3px solid #EDEED7">Div</div>
This div border color is #EDEED7.
.myOpacity80 { color: #EDEED7; opacity: 0.8; }
<p style="color:#EDEED7;opacity:0.8;">80%</p>
Text with #EDEED7 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #EDEED7;}
<p style="text-shadow: 3px 3px 1px #EDEED7">Text here.</p>
This text has shadow with #EDEED7 color.
.textShadow {text-shadow: 3px 3px 1px #EDEED7, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #EDEED7, 5px 5px 20px red">Text here.</p>
This text has shadow with #EDEED7 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#EDEED7, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#EDEED7, Direction=45, Strength=4)">Text</p>
This text has shadow with #EDEED7 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #EDEED7; -webkit-box-shadow: 1px 1px 3px 2px #EDEED7; box-shadow: 1px 1px 3px 2px #EDEED7; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #EDEED7; -webkit-box-shadow: 1px 1px 3px 2px #EDEED7; box-shadow:1px 1px 3px 2px #EDEED7;">
Div content here</div>
This text has color #EDEED7 on black background.
This text has color #EDEED7 on white background.
This text has black color on #EDEED7 background.
This text has white color on #EDEED7 background.