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