HEX: #EBC5AA
RGB: (235,197,170)
#EBC5AA contains mainly red and green colors. Web safe color of #EBC5AA is #FFCC99 (or #FC9).
#EBC5AA color RGB value is (235,197,170).
RGB: (235,197,170) (92%,77%,67%)
R 235 of 255 = 92%
G 197 of 255 = 77%
B 170 of 255 = 67%
R + G + B ~ 79%. #EBC5AA is quite light color.
R + G + B =
235 + 197 + 170 = 602 (100%)
R 235 of 602 ~ 39.04%
G 197 of 602 ~ 32.72%
B 170 of 602 ~ 28.24%
#EBC5AA color CMYK value is (0,16,28,8).
CMYK: (0,16,28,8) C0M16Y28K8 (0%,16%,28%,8%) (0.00/0.16/0.28/0.08)
EB | C5 | AA | |
---|---|---|---|
RGB | 235 | 197 | 170 |
HSL | 25° | 61.90% | 79.41% |
HSB/HSV | 25° | 27.66% | 92.16% |
CMYK | 0.00% | 16.17% | 27.66% |
7.84% |
HEX | EB | C5 | AA |
Decimal | 235 | 197 | 170 |
Binary | 11101011 | 11000101 | 10101010 |
Octal | 353 | 305 | 252 |
Examples of css and html codes for elements with #EBC5AA color. Also use rgb(235,197,170) instead hex code.
.myTextColor { color: #EBC5AA; }
<p style="color:#EBC5AA">This sample text font color is #EBC5AA.</p>
This text font color is #EBC5AA.
.myBgColor { background-color: #EBC5AA; }
<div style="background-color:#EBC5AA">Inner text</div>
This div background color is #EBC5AA.
.myBorderColor { border: 1px solid #EBC5AA; }
<div style="border:3px solid #EBC5AA">Div</div>
This div border color is #EBC5AA.
.myOpacity80 { color: #EBC5AA; opacity: 0.8; }
<p style="color:#EBC5AA;opacity:0.8;">80%</p>
Text with #EBC5AA color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #EBC5AA;}
<p style="text-shadow: 3px 3px 1px #EBC5AA">Text here.</p>
This text has shadow with #EBC5AA color.
.textShadow {text-shadow: 3px 3px 1px #EBC5AA, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #EBC5AA, 5px 5px 20px red">Text here.</p>
This text has shadow with #EBC5AA primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#EBC5AA, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#EBC5AA, Direction=45, Strength=4)">Text</p>
This text has shadow with #EBC5AA and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #EBC5AA; -webkit-box-shadow: 1px 1px 3px 2px #EBC5AA; box-shadow: 1px 1px 3px 2px #EBC5AA; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #EBC5AA; -webkit-box-shadow: 1px 1px 3px 2px #EBC5AA; box-shadow:1px 1px 3px 2px #EBC5AA;">
Div content here</div>
This text has color #EBC5AA on black background.
This text has color #EBC5AA on white background.
This text has black color on #EBC5AA background.
This text has white color on #EBC5AA background.