HEX: #EBBD73
RGB: (235,189,115)
#EBBD73 contains mainly red and green colors. Web safe color of #EBBD73 is #FFCC66 (or #FC6).
#EBBD73 color RGB value is (235,189,115).
RGB: (235,189,115) (92%,74%,45%)
R 235 of 255 = 92%
G 189 of 255 = 74%
B 115 of 255 = 45%
R + G + B ~ 70%. #EBBD73 is quite light color.
R + G + B =
235 + 189 + 115 = 539 (100%)
R 235 of 539 ~ 43.6%
G 189 of 539 ~ 35.06%
B 115 of 539 ~ 21.34%
#EBBD73 color CMYK value is (0,20,51,8).
CMYK: (0,20,51,8) C0M20Y51K8 (0%,20%,51%,8%) (0.00/0.20/0.51/0.08)
EB | BD | 73 | |
---|---|---|---|
RGB | 235 | 189 | 115 |
HSL | 37° | 75.00% | 68.63% |
HSB/HSV | 37° | 51.06% | 92.16% |
CMYK | 0.00% | 19.57% | 51.06% |
7.84% |
HEX | EB | BD | 73 |
Decimal | 235 | 189 | 115 |
Binary | 11101011 | 10111101 | 1110011 |
Octal | 353 | 275 | 163 |
Examples of css and html codes for elements with #EBBD73 color. Also use rgb(235,189,115) instead hex code.
.myTextColor { color: #EBBD73; }
<p style="color:#EBBD73">This sample text font color is #EBBD73.</p>
This text font color is #EBBD73.
.myBgColor { background-color: #EBBD73; }
<div style="background-color:#EBBD73">Inner text</div>
This div background color is #EBBD73.
.myBorderColor { border: 1px solid #EBBD73; }
<div style="border:3px solid #EBBD73">Div</div>
This div border color is #EBBD73.
.myOpacity80 { color: #EBBD73; opacity: 0.8; }
<p style="color:#EBBD73;opacity:0.8;">80%</p>
Text with #EBBD73 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #EBBD73;}
<p style="text-shadow: 3px 3px 1px #EBBD73">Text here.</p>
This text has shadow with #EBBD73 color.
.textShadow {text-shadow: 3px 3px 1px #EBBD73, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #EBBD73, 5px 5px 20px red">Text here.</p>
This text has shadow with #EBBD73 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#EBBD73, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#EBBD73, Direction=45, Strength=4)">Text</p>
This text has shadow with #EBBD73 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #EBBD73; -webkit-box-shadow: 1px 1px 3px 2px #EBBD73; box-shadow: 1px 1px 3px 2px #EBBD73; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #EBBD73; -webkit-box-shadow: 1px 1px 3px 2px #EBBD73; box-shadow:1px 1px 3px 2px #EBBD73;">
Div content here</div>
This text has color #EBBD73 on black background.
This text has color #EBBD73 on white background.
This text has black color on #EBBD73 background.
This text has white color on #EBBD73 background.