HEX: #EDEBEE
RGB: (237,235,238)
#EDEBEE contains red, green and blue colors in about the same proportion. #EDEBEE ‘ nin web güvenlik rengi #FFFFFF (ya da #FFF) dir.
#EDEBEE color RGB value is (237,235,238).
RGB: (237,235,238) (93%,92%,93%)
R 237 of 255 = 93%
G 235 of 255 = 92%
B 238 of 255 = 93%
R + G + B ~ 93%. #EDEBEE is light color.
R + G + B =
237 + 235 + 238 = 710 (100%)
R 237 of 710 ~ 33.38%
G 235 of 710 ~ 33.1%
B 238 of 710 ~ 33.52%
#EDEBEE rengi CMYK tonu (0,1,0,7).
CMYK: (0,1,0,7) C0M1Y0K7 (0%,1%,0%,7%) (0.00/0.01/0.00/0.07)
ED | EB | EE | |
---|---|---|---|
RGB | 237 | 235 | 238 |
HSL | 280° | 8.11% | 92.75% |
HSB/HSV | 280° | 1.26% | 93.33% |
CMYK | 0.42% | 1.26% | 0.00% |
6.67% |
HEX | ED | EB | EE |
Decimal | 237 | 235 | 238 |
Binary | 11101101 | 11101011 | 11101110 |
Octal | 355 | 353 | 356 |
Examples of css and html codes for elements with #EDEBEE color. Also use rgb(237,235,238) instead hex code.
.myTextColor { color: #EDEBEE; }
<p style="color:#EDEBEE">This sample text font color is #EDEBEE.</p>
This text font color is #EDEBEE.
.myBgColor { background-color: #EDEBEE; }
<div style="background-color:#EDEBEE">Inner text</div>
This div background color is #EDEBEE.
.myBorderColor { border: 1px solid #EDEBEE; }
<div style="border:3px solid #EDEBEE">Div</div>
This div border color is #EDEBEE.
.myOpacity80 { color: #EDEBEE; opacity: 0.8; }
<p style="color:#EDEBEE;opacity:0.8;">80%</p>
Text with #EDEBEE color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #EDEBEE;}
<p style="text-shadow: 3px 3px 1px #EDEBEE">Text here.</p>
This text has shadow with #EDEBEE color.
.textShadow {text-shadow: 3px 3px 1px #EDEBEE, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #EDEBEE, 5px 5px 20px red">Text here.</p>
This text has shadow with #EDEBEE primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#EDEBEE, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#EDEBEE, Direction=45, Strength=4)">Text</p>
This text has shadow with #EDEBEE and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #EDEBEE; -webkit-box-shadow: 1px 1px 3px 2px #EDEBEE; box-shadow: 1px 1px 3px 2px #EDEBEE; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #EDEBEE; -webkit-box-shadow: 1px 1px 3px 2px #EDEBEE; box-shadow:1px 1px 3px 2px #EDEBEE;">
Div content here</div>
This text has color #EDEBEE on black background.
This text has color #EDEBEE on white background.
This text has black color on #EDEBEE background.
This text has white color on #EDEBEE background.