HEX: #EBD5A3
RGB: (235,213,163)
#EBD5A3 contains mainly red and green colors. Web safe color of #EBD5A3 is #FFCC99 (or #FC9).
#EBD5A3 color RGB value is (235,213,163).
RGB: (235,213,163) (92%,84%,64%)
R 235 of 255 = 92%
G 213 of 255 = 84%
B 163 of 255 = 64%
R + G + B ~ 80%. #EBD5A3 is quite light color.
R + G + B =
235 + 213 + 163 = 611 (100%)
R 235 of 611 ~ 38.46%
G 213 of 611 ~ 34.86%
B 163 of 611 ~ 26.68%
#EBD5A3 color CMYK value is (0,9,31,8).
CMYK: (0,9,31,8) C0M9Y31K8 (0%,9%,31%,8%) (0.00/0.09/0.31/0.08)
EB | D5 | A3 | |
---|---|---|---|
RGB | 235 | 213 | 163 |
HSL | 42° | 64.29% | 78.04% |
HSB/HSV | 42° | 30.64% | 92.16% |
CMYK | 0.00% | 9.36% | 30.64% |
7.84% |
HEX | EB | D5 | A3 |
Decimal | 235 | 213 | 163 |
Binary | 11101011 | 11010101 | 10100011 |
Octal | 353 | 325 | 243 |
Examples of css and html codes for elements with #EBD5A3 color. Also use rgb(235,213,163) instead hex code.
.myTextColor { color: #EBD5A3; }
<p style="color:#EBD5A3">This sample text font color is #EBD5A3.</p>
This text font color is #EBD5A3.
.myBgColor { background-color: #EBD5A3; }
<div style="background-color:#EBD5A3">Inner text</div>
This div background color is #EBD5A3.
.myBorderColor { border: 1px solid #EBD5A3; }
<div style="border:3px solid #EBD5A3">Div</div>
This div border color is #EBD5A3.
.myOpacity80 { color: #EBD5A3; opacity: 0.8; }
<p style="color:#EBD5A3;opacity:0.8;">80%</p>
Text with #EBD5A3 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #EBD5A3;}
<p style="text-shadow: 3px 3px 1px #EBD5A3">Text here.</p>
This text has shadow with #EBD5A3 color.
.textShadow {text-shadow: 3px 3px 1px #EBD5A3, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #EBD5A3, 5px 5px 20px red">Text here.</p>
This text has shadow with #EBD5A3 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#EBD5A3, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#EBD5A3, Direction=45, Strength=4)">Text</p>
This text has shadow with #EBD5A3 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #EBD5A3; -webkit-box-shadow: 1px 1px 3px 2px #EBD5A3; box-shadow: 1px 1px 3px 2px #EBD5A3; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #EBD5A3; -webkit-box-shadow: 1px 1px 3px 2px #EBD5A3; box-shadow:1px 1px 3px 2px #EBD5A3;">
Div content here</div>
This text has color #EBD5A3 on black background.
This text has color #EBD5A3 on white background.
This text has black color on #EBD5A3 background.
This text has white color on #EBD5A3 background.