HEX: #EDCCA4
RGB: (237,204,164)
#EDCCA4 contains mainly red and green colors. Web safe color of #EDCCA4 is #FFCC99 (or #FC9).
#EDCCA4 color RGB value is (237,204,164).
RGB: (237,204,164) (93%,80%,64%)
R 237 of 255 = 93%
G 204 of 255 = 80%
B 164 of 255 = 64%
R + G + B ~ 79%. #EDCCA4 is quite light color.
R + G + B =
237 + 204 + 164 = 605 (100%)
R 237 of 605 ~ 39.17%
G 204 of 605 ~ 33.72%
B 164 of 605 ~ 27.11%
#EDCCA4 color CMYK value is (0,14,31,7).
CMYK: (0,14,31,7) C0M14Y31K7 (0%,14%,31%,7%) (0.00/0.14/0.31/0.07)
ED | CC | A4 | |
---|---|---|---|
RGB | 237 | 204 | 164 |
HSL | 33° | 66.97% | 78.63% |
HSB/HSV | 33° | 30.80% | 92.94% |
CMYK | 0.00% | 13.92% | 30.80% |
7.06% |
HEX | ED | CC | A4 |
Decimal | 237 | 204 | 164 |
Binary | 11101101 | 11001100 | 10100100 |
Octal | 355 | 314 | 244 |
Examples of css and html codes for elements with #EDCCA4 color. Also use rgb(237,204,164) instead hex code.
.myTextColor { color: #EDCCA4; }
<p style="color:#EDCCA4">This sample text font color is #EDCCA4.</p>
This text font color is #EDCCA4.
.myBgColor { background-color: #EDCCA4; }
<div style="background-color:#EDCCA4">Inner text</div>
This div background color is #EDCCA4.
.myBorderColor { border: 1px solid #EDCCA4; }
<div style="border:3px solid #EDCCA4">Div</div>
This div border color is #EDCCA4.
.myOpacity80 { color: #EDCCA4; opacity: 0.8; }
<p style="color:#EDCCA4;opacity:0.8;">80%</p>
Text with #EDCCA4 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #EDCCA4;}
<p style="text-shadow: 3px 3px 1px #EDCCA4">Text here.</p>
This text has shadow with #EDCCA4 color.
.textShadow {text-shadow: 3px 3px 1px #EDCCA4, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #EDCCA4, 5px 5px 20px red">Text here.</p>
This text has shadow with #EDCCA4 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#EDCCA4, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#EDCCA4, Direction=45, Strength=4)">Text</p>
This text has shadow with #EDCCA4 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #EDCCA4; -webkit-box-shadow: 1px 1px 3px 2px #EDCCA4; box-shadow: 1px 1px 3px 2px #EDCCA4; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #EDCCA4; -webkit-box-shadow: 1px 1px 3px 2px #EDCCA4; box-shadow:1px 1px 3px 2px #EDCCA4;">
Div content here</div>
This text has color #EDCCA4 on black background.
This text has color #EDCCA4 on white background.
This text has black color on #EDCCA4 background.
This text has white color on #EDCCA4 background.