HEX: #A58010
RGB: (165,128,16)
#A58010 contains mainly red and green colors. Web safe color of #A58010 is #996600 (or #960).
#A58010 color RGB value is (165,128,16).
RGB: (165,128,16) (65%,50%,6%)
R 165 of 255 = 65%
G 128 of 255 = 50%
B 16 of 255 = 6%
R + G + B ~ 40%. #A58010 is middle color (not dark and not light).
R + G + B =
165 + 128 + 16 = 309 (100%)
R 165 of 309 ~ 53.4%
G 128 of 309 ~ 41.42%
B 16 of 309 ~ 5.18%
#A58010 color CMYK value is (0,22,90,35).
CMYK: (0,22,90,35) C0M22Y90K35 (0%,22%,90%,35%) (0.00/0.22/0.90/0.35)
A5 | 80 | 10 | |
---|---|---|---|
RGB | 165 | 128 | 16 |
HSL | 45° | 82.32% | 35.49% |
HSB/HSV | 45° | 90.30% | 64.71% |
CMYK | 0.00% | 22.42% | 90.30% |
35.29% |
HEX | A5 | 80 | 10 |
Decimal | 165 | 128 | 16 |
Binary | 10100101 | 10000000 | 10000 |
Octal | 245 | 200 | 20 |
Examples of css and html codes for elements with #A58010 color. Also use rgb(165,128,16) instead hex code.
.myTextColor { color: #A58010; }
<p style="color:#A58010">This sample text font color is #A58010.</p>
This text font color is #A58010.
.myBgColor { background-color: #A58010; }
<div style="background-color:#A58010">Inner text</div>
This div background color is #A58010.
.myBorderColor { border: 1px solid #A58010; }
<div style="border:3px solid #A58010">Div</div>
This div border color is #A58010.
.myOpacity80 { color: #A58010; opacity: 0.8; }
<p style="color:#A58010;opacity:0.8;">80%</p>
Text with #A58010 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #A58010;}
<p style="text-shadow: 3px 3px 1px #A58010">Text here.</p>
This text has shadow with #A58010 color.
.textShadow {text-shadow: 3px 3px 1px #A58010, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #A58010, 5px 5px 20px red">Text here.</p>
This text has shadow with #A58010 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#A58010, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#A58010, Direction=45, Strength=4)">Text</p>
This text has shadow with #A58010 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #A58010; -webkit-box-shadow: 1px 1px 3px 2px #A58010; box-shadow: 1px 1px 3px 2px #A58010; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #A58010; -webkit-box-shadow: 1px 1px 3px 2px #A58010; box-shadow:1px 1px 3px 2px #A58010;">
Div content here</div>
This text has color #A58010 on black background.
This text has color #A58010 on white background.
This text has black color on #A58010 background.
This text has white color on #A58010 background.