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