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