HEX: #EBD981
RGB: (235,217,129)
#EBD981 contains mainly red and green colors. Web safe color of #EBD981 is #FFCC99 (or #FC9).
#EBD981 color RGB value is (235,217,129).
RGB: (235,217,129) (92%,85%,51%)
R 235 of 255 = 92%
G 217 of 255 = 85%
B 129 of 255 = 51%
R + G + B ~ 76%. #EBD981 is quite light color.
R + G + B =
235 + 217 + 129 = 581 (100%)
R 235 of 581 ~ 40.45%
G 217 of 581 ~ 37.35%
B 129 of 581 ~ 22.2%
#EBD981 color CMYK value is (0,8,45,8).
CMYK: (0,8,45,8) C0M8Y45K8 (0%,8%,45%,8%) (0.00/0.08/0.45/0.08)
EB | D9 | 81 | |
---|---|---|---|
RGB | 235 | 217 | 129 |
HSL | 50° | 72.60% | 71.37% |
HSB/HSV | 50° | 45.11% | 92.16% |
CMYK | 0.00% | 7.66% | 45.11% |
7.84% |
HEX | EB | D9 | 81 |
Decimal | 235 | 217 | 129 |
Binary | 11101011 | 11011001 | 10000001 |
Octal | 353 | 331 | 201 |
Examples of css and html codes for elements with #EBD981 color. Also use rgb(235,217,129) instead hex code.
.myTextColor { color: #EBD981; }
<p style="color:#EBD981">This sample text font color is #EBD981.</p>
This text font color is #EBD981.
.myBgColor { background-color: #EBD981; }
<div style="background-color:#EBD981">Inner text</div>
This div background color is #EBD981.
.myBorderColor { border: 1px solid #EBD981; }
<div style="border:3px solid #EBD981">Div</div>
This div border color is #EBD981.
.myOpacity80 { color: #EBD981; opacity: 0.8; }
<p style="color:#EBD981;opacity:0.8;">80%</p>
Text with #EBD981 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #EBD981;}
<p style="text-shadow: 3px 3px 1px #EBD981">Text here.</p>
This text has shadow with #EBD981 color.
.textShadow {text-shadow: 3px 3px 1px #EBD981, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #EBD981, 5px 5px 20px red">Text here.</p>
This text has shadow with #EBD981 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#EBD981, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#EBD981, Direction=45, Strength=4)">Text</p>
This text has shadow with #EBD981 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #EBD981; -webkit-box-shadow: 1px 1px 3px 2px #EBD981; box-shadow: 1px 1px 3px 2px #EBD981; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #EBD981; -webkit-box-shadow: 1px 1px 3px 2px #EBD981; box-shadow:1px 1px 3px 2px #EBD981;">
Div content here</div>
This text has color #EBD981 on black background.
This text has color #EBD981 on white background.
This text has black color on #EBD981 background.
This text has white color on #EBD981 background.