HEX: #EDD6BE
RGB: (237,214,190)
#EDD6BE contains red, green and blue colors in about the same proportion. Web safe color of #EDD6BE is #FFCCCC (or #FCC).
#EDD6BE color RGB value is (237,214,190).
RGB: (237,214,190) (93%,84%,75%)
R 237 of 255 = 93%
G 214 of 255 = 84%
B 190 of 255 = 75%
R + G + B ~ 84%. #EDD6BE is quite light color.
R + G + B =
237 + 214 + 190 = 641 (100%)
R 237 of 641 ~ 36.97%
G 214 of 641 ~ 33.39%
B 190 of 641 ~ 29.64%
#EDD6BE color CMYK value is (0,10,20,7).
CMYK: (0,10,20,7) C0M10Y20K7 (0%,10%,20%,7%) (0.00/0.10/0.20/0.07)
ED | D6 | BE | |
---|---|---|---|
RGB | 237 | 214 | 190 |
HSL | 31° | 56.63% | 83.73% |
HSB/HSV | 31° | 19.83% | 92.94% |
CMYK | 0.00% | 9.70% | 19.83% |
7.06% |
HEX | ED | D6 | BE |
Decimal | 237 | 214 | 190 |
Binary | 11101101 | 11010110 | 10111110 |
Octal | 355 | 326 | 276 |
Examples of css and html codes for elements with #EDD6BE color. Also use rgb(237,214,190) instead hex code.
.myTextColor { color: #EDD6BE; }
<p style="color:#EDD6BE">This sample text font color is #EDD6BE.</p>
This text font color is #EDD6BE.
.myBgColor { background-color: #EDD6BE; }
<div style="background-color:#EDD6BE">Inner text</div>
This div background color is #EDD6BE.
.myBorderColor { border: 1px solid #EDD6BE; }
<div style="border:3px solid #EDD6BE">Div</div>
This div border color is #EDD6BE.
.myOpacity80 { color: #EDD6BE; opacity: 0.8; }
<p style="color:#EDD6BE;opacity:0.8;">80%</p>
Text with #EDD6BE color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #EDD6BE;}
<p style="text-shadow: 3px 3px 1px #EDD6BE">Text here.</p>
This text has shadow with #EDD6BE color.
.textShadow {text-shadow: 3px 3px 1px #EDD6BE, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #EDD6BE, 5px 5px 20px red">Text here.</p>
This text has shadow with #EDD6BE primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#EDD6BE, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#EDD6BE, Direction=45, Strength=4)">Text</p>
This text has shadow with #EDD6BE and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #EDD6BE; -webkit-box-shadow: 1px 1px 3px 2px #EDD6BE; box-shadow: 1px 1px 3px 2px #EDD6BE; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #EDD6BE; -webkit-box-shadow: 1px 1px 3px 2px #EDD6BE; box-shadow:1px 1px 3px 2px #EDD6BE;">
Div content here</div>
This text has color #EDD6BE on black background.
This text has color #EDD6BE on white background.
This text has black color on #EDD6BE background.
This text has white color on #EDD6BE background.