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