HEX: #EDEBEC
RGB: (237,235,236)
#EDEBEC contains red, green and blue colors in about the same proportion. Web safe color of #EDEBEC is #FFFFFF (or #FFF).
#EDEBEC color RGB value is (237,235,236).
RGB: (237,235,236) (93%,92%,93%)
R 237 of 255 = 93%
G 235 of 255 = 92%
B 236 of 255 = 93%
R + G + B ~ 93%. #EDEBEC is light color.
R + G + B =
237 + 235 + 236 = 708 (100%)
R 237 of 708 ~ 33.47%
G 235 of 708 ~ 33.19%
B 236 of 708 ~ 33.33%
#EDEBEC color CMYK value is (0,1,0,7).
CMYK: (0,1,0,7) C0M1Y0K7 (0%,1%,0%,7%) (0.00/0.01/0.00/0.07)
ED | EB | EC | |
---|---|---|---|
RGB | 237 | 235 | 236 |
HSL | 330° | 5.26% | 92.55% |
HSB/HSV | 330° | 0.84% | 92.94% |
CMYK | 0.00% | 0.84% | 0.42% |
7.06% |
HEX | ED | EB | EC |
Decimal | 237 | 235 | 236 |
Binary | 11101101 | 11101011 | 11101100 |
Octal | 355 | 353 | 354 |
Examples of css and html codes for elements with #EDEBEC color. Also use rgb(237,235,236) instead hex code.
.myTextColor { color: #EDEBEC; }
<p style="color:#EDEBEC">This sample text font color is #EDEBEC.</p>
This text font color is #EDEBEC.
.myBgColor { background-color: #EDEBEC; }
<div style="background-color:#EDEBEC">Inner text</div>
This div background color is #EDEBEC.
.myBorderColor { border: 1px solid #EDEBEC; }
<div style="border:3px solid #EDEBEC">Div</div>
This div border color is #EDEBEC.
.myOpacity80 { color: #EDEBEC; opacity: 0.8; }
<p style="color:#EDEBEC;opacity:0.8;">80%</p>
Text with #EDEBEC color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #EDEBEC;}
<p style="text-shadow: 3px 3px 1px #EDEBEC">Text here.</p>
This text has shadow with #EDEBEC color.
.textShadow {text-shadow: 3px 3px 1px #EDEBEC, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #EDEBEC, 5px 5px 20px red">Text here.</p>
This text has shadow with #EDEBEC primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#EDEBEC, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#EDEBEC, Direction=45, Strength=4)">Text</p>
This text has shadow with #EDEBEC and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #EDEBEC; -webkit-box-shadow: 1px 1px 3px 2px #EDEBEC; box-shadow: 1px 1px 3px 2px #EDEBEC; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #EDEBEC; -webkit-box-shadow: 1px 1px 3px 2px #EDEBEC; box-shadow:1px 1px 3px 2px #EDEBEC;">
Div content here</div>
This text has color #EDEBEC on black background.
This text has color #EDEBEC on white background.
This text has black color on #EDEBEC background.
This text has white color on #EDEBEC background.