HEX: #EDCEB9
RGB: (237,206,185)
#EDCEB9 contains red, green and blue colors in about the same proportion. Web safe color of #EDCEB9 is #FFCCCC (or #FCC).
#EDCEB9 color RGB value is (237,206,185).
RGB: (237,206,185) (93%,81%,73%)
R 237 of 255 = 93%
G 206 of 255 = 81%
B 185 of 255 = 73%
R + G + B ~ 82%. #EDCEB9 is quite light color.
R + G + B =
237 + 206 + 185 = 628 (100%)
R 237 of 628 ~ 37.74%
G 206 of 628 ~ 32.8%
B 185 of 628 ~ 29.46%
#EDCEB9 color CMYK value is (0,13,22,7).
CMYK: (0,13,22,7) C0M13Y22K7 (0%,13%,22%,7%) (0.00/0.13/0.22/0.07)
ED | CE | B9 | |
---|---|---|---|
RGB | 237 | 206 | 185 |
HSL | 24° | 59.09% | 82.75% |
HSB/HSV | 24° | 21.94% | 92.94% |
CMYK | 0.00% | 13.08% | 21.94% |
7.06% |
HEX | ED | CE | B9 |
Decimal | 237 | 206 | 185 |
Binary | 11101101 | 11001110 | 10111001 |
Octal | 355 | 316 | 271 |
Examples of css and html codes for elements with #EDCEB9 color. Also use rgb(237,206,185) instead hex code.
.myTextColor { color: #EDCEB9; }
<p style="color:#EDCEB9">This sample text font color is #EDCEB9.</p>
This text font color is #EDCEB9.
.myBgColor { background-color: #EDCEB9; }
<div style="background-color:#EDCEB9">Inner text</div>
This div background color is #EDCEB9.
.myBorderColor { border: 1px solid #EDCEB9; }
<div style="border:3px solid #EDCEB9">Div</div>
This div border color is #EDCEB9.
.myOpacity80 { color: #EDCEB9; opacity: 0.8; }
<p style="color:#EDCEB9;opacity:0.8;">80%</p>
Text with #EDCEB9 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #EDCEB9;}
<p style="text-shadow: 3px 3px 1px #EDCEB9">Text here.</p>
This text has shadow with #EDCEB9 color.
.textShadow {text-shadow: 3px 3px 1px #EDCEB9, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #EDCEB9, 5px 5px 20px red">Text here.</p>
This text has shadow with #EDCEB9 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#EDCEB9, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#EDCEB9, Direction=45, Strength=4)">Text</p>
This text has shadow with #EDCEB9 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #EDCEB9; -webkit-box-shadow: 1px 1px 3px 2px #EDCEB9; box-shadow: 1px 1px 3px 2px #EDCEB9; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #EDCEB9; -webkit-box-shadow: 1px 1px 3px 2px #EDCEB9; box-shadow:1px 1px 3px 2px #EDCEB9;">
Div content here</div>
This text has color #EDCEB9 on black background.
This text has color #EDCEB9 on white background.
This text has black color on #EDCEB9 background.
This text has white color on #EDCEB9 background.