HEX: #A7828E
RGB: (167,130,142)
#A7828E contains red, green and blue colors in about the same proportion. Web safe color of #A7828E is #999999 (or #999).
#A7828E color RGB value is (167,130,142).
RGB: (167,130,142) (65%,51%,56%)
R 167 of 255 = 65%
G 130 of 255 = 51%
B 142 of 255 = 56%
R + G + B ~ 57%. #A7828E is middle color (not dark and not light).
R + G + B =
167 + 130 + 142 = 439 (100%)
R 167 of 439 ~ 38.04%
G 130 of 439 ~ 29.61%
B 142 of 439 ~ 32.35%
#A7828E color CMYK value is (0,22,15,35).
CMYK: (0,22,15,35) C0M22Y15K35 (0%,22%,15%,35%) (0.00/0.22/0.15/0.35)
A7 | 82 | 8E | |
---|---|---|---|
RGB | 167 | 130 | 142 |
HSL | 341° | 17.37% | 58.24% |
HSB/HSV | 341° | 22.16% | 65.49% |
CMYK | 0.00% | 22.16% | 14.97% |
34.51% |
HEX | A7 | 82 | 8E |
Decimal | 167 | 130 | 142 |
Binary | 10100111 | 10000010 | 10001110 |
Octal | 247 | 202 | 216 |
Examples of css and html codes for elements with #A7828E color. Also use rgb(167,130,142) instead hex code.
.myTextColor { color: #A7828E; }
<p style="color:#A7828E">This sample text font color is #A7828E.</p>
This text font color is #A7828E.
.myBgColor { background-color: #A7828E; }
<div style="background-color:#A7828E">Inner text</div>
This div background color is #A7828E.
.myBorderColor { border: 1px solid #A7828E; }
<div style="border:3px solid #A7828E">Div</div>
This div border color is #A7828E.
.myOpacity80 { color: #A7828E; opacity: 0.8; }
<p style="color:#A7828E;opacity:0.8;">80%</p>
Text with #A7828E color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #A7828E;}
<p style="text-shadow: 3px 3px 1px #A7828E">Text here.</p>
This text has shadow with #A7828E color.
.textShadow {text-shadow: 3px 3px 1px #A7828E, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #A7828E, 5px 5px 20px red">Text here.</p>
This text has shadow with #A7828E primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#A7828E, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#A7828E, Direction=45, Strength=4)">Text</p>
This text has shadow with #A7828E and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #A7828E; -webkit-box-shadow: 1px 1px 3px 2px #A7828E; box-shadow: 1px 1px 3px 2px #A7828E; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #A7828E; -webkit-box-shadow: 1px 1px 3px 2px #A7828E; box-shadow:1px 1px 3px 2px #A7828E;">
Div content here</div>
This text has color #A7828E on black background.
This text has color #A7828E on white background.
This text has black color on #A7828E background.
This text has white color on #A7828E background.