HEX: #A7985A
RGB: (167,152,90)
#A7985A contains mainly red and green colors. Web safe color of #A7985A is #999966 (or #996).
#A7985A color RGB value is (167,152,90).
RGB: (167,152,90) (65%,60%,35%)
R 167 of 255 = 65%
G 152 of 255 = 60%
B 90 of 255 = 35%
R + G + B ~ 53%. #A7985A is middle color (not dark and not light).
R + G + B =
167 + 152 + 90 = 409 (100%)
R 167 of 409 ~ 40.83%
G 152 of 409 ~ 37.16%
B 90 of 409 ~ 22%
#A7985A color CMYK value is (0,9,46,35).
CMYK: (0,9,46,35) C0M9Y46K35 (0%,9%,46%,35%) (0.00/0.09/0.46/0.35)
A7 | 98 | 5A | |
---|---|---|---|
RGB | 167 | 152 | 90 |
HSL | 48° | 30.43% | 50.39% |
HSB/HSV | 48° | 46.11% | 65.49% |
CMYK | 0.00% | 8.98% | 46.11% |
34.51% |
HEX | A7 | 98 | 5A |
Decimal | 167 | 152 | 90 |
Binary | 10100111 | 10011000 | 1011010 |
Octal | 247 | 230 | 132 |
Examples of css and html codes for elements with #A7985A color. Also use rgb(167,152,90) instead hex code.
.myTextColor { color: #A7985A; }
<p style="color:#A7985A">This sample text font color is #A7985A.</p>
This text font color is #A7985A.
.myBgColor { background-color: #A7985A; }
<div style="background-color:#A7985A">Inner text</div>
This div background color is #A7985A.
.myBorderColor { border: 1px solid #A7985A; }
<div style="border:3px solid #A7985A">Div</div>
This div border color is #A7985A.
.myOpacity80 { color: #A7985A; opacity: 0.8; }
<p style="color:#A7985A;opacity:0.8;">80%</p>
Text with #A7985A color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #A7985A;}
<p style="text-shadow: 3px 3px 1px #A7985A">Text here.</p>
This text has shadow with #A7985A color.
.textShadow {text-shadow: 3px 3px 1px #A7985A, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #A7985A, 5px 5px 20px red">Text here.</p>
This text has shadow with #A7985A primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#A7985A, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#A7985A, Direction=45, Strength=4)">Text</p>
This text has shadow with #A7985A and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #A7985A; -webkit-box-shadow: 1px 1px 3px 2px #A7985A; box-shadow: 1px 1px 3px 2px #A7985A; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #A7985A; -webkit-box-shadow: 1px 1px 3px 2px #A7985A; box-shadow:1px 1px 3px 2px #A7985A;">
Div content here</div>
This text has color #A7985A on black background.
This text has color #A7985A on white background.
This text has black color on #A7985A background.
This text has white color on #A7985A background.