HEX: #EDC3AC
RGB: (237,195,172)
#EDC3AC contains mainly red and green colors. Web safe color of #EDC3AC is #FFCC99 (or #FC9).
#EDC3AC color RGB value is (237,195,172).
RGB: (237,195,172) (93%,76%,67%)
R 237 of 255 = 93%
G 195 of 255 = 76%
B 172 of 255 = 67%
R + G + B ~ 79%. #EDC3AC is quite light color.
R + G + B =
237 + 195 + 172 = 604 (100%)
R 237 of 604 ~ 39.24%
G 195 of 604 ~ 32.28%
B 172 of 604 ~ 28.48%
#EDC3AC color CMYK value is (0,18,27,7).
CMYK: (0,18,27,7) C0M18Y27K7 (0%,18%,27%,7%) (0.00/0.18/0.27/0.07)
ED | C3 | AC | |
---|---|---|---|
RGB | 237 | 195 | 172 |
HSL | 21° | 64.36% | 80.20% |
HSB/HSV | 21° | 27.43% | 92.94% |
CMYK | 0.00% | 17.72% | 27.43% |
7.06% |
HEX | ED | C3 | AC |
Decimal | 237 | 195 | 172 |
Binary | 11101101 | 11000011 | 10101100 |
Octal | 355 | 303 | 254 |
Examples of css and html codes for elements with #EDC3AC color. Also use rgb(237,195,172) instead hex code.
.myTextColor { color: #EDC3AC; }
<p style="color:#EDC3AC">This sample text font color is #EDC3AC.</p>
This text font color is #EDC3AC.
.myBgColor { background-color: #EDC3AC; }
<div style="background-color:#EDC3AC">Inner text</div>
This div background color is #EDC3AC.
.myBorderColor { border: 1px solid #EDC3AC; }
<div style="border:3px solid #EDC3AC">Div</div>
This div border color is #EDC3AC.
.myOpacity80 { color: #EDC3AC; opacity: 0.8; }
<p style="color:#EDC3AC;opacity:0.8;">80%</p>
Text with #EDC3AC color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #EDC3AC;}
<p style="text-shadow: 3px 3px 1px #EDC3AC">Text here.</p>
This text has shadow with #EDC3AC color.
.textShadow {text-shadow: 3px 3px 1px #EDC3AC, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #EDC3AC, 5px 5px 20px red">Text here.</p>
This text has shadow with #EDC3AC primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#EDC3AC, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#EDC3AC, Direction=45, Strength=4)">Text</p>
This text has shadow with #EDC3AC and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #EDC3AC; -webkit-box-shadow: 1px 1px 3px 2px #EDC3AC; box-shadow: 1px 1px 3px 2px #EDC3AC; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #EDC3AC; -webkit-box-shadow: 1px 1px 3px 2px #EDC3AC; box-shadow:1px 1px 3px 2px #EDC3AC;">
Div content here</div>
This text has color #EDC3AC on black background.
This text has color #EDC3AC on white background.
This text has black color on #EDC3AC background.
This text has white color on #EDC3AC background.