HEX: #A4827A
RGB: (164,130,122)
#A4827A contains red, green and blue colors in about the same proportion. Web safe color of #A4827A is #999966 (or #996).
#A4827A color RGB value is (164,130,122).
RGB: (164,130,122) (64%,51%,48%)
R 164 of 255 = 64%
G 130 of 255 = 51%
B 122 of 255 = 48%
R + G + B ~ 54%. #A4827A is middle color (not dark and not light).
R + G + B =
164 + 130 + 122 = 416 (100%)
R 164 of 416 ~ 39.42%
G 130 of 416 ~ 31.25%
B 122 of 416 ~ 29.33%
#A4827A color CMYK value is (0,21,26,36).
CMYK: (0,21,26,36) C0M21Y26K36 (0%,21%,26%,36%) (0.00/0.21/0.26/0.36)
A4 | 82 | 7A | |
---|---|---|---|
RGB | 164 | 130 | 122 |
HSL | 11° | 18.75% | 56.08% |
HSB/HSV | 11° | 25.61% | 64.31% |
CMYK | 0.00% | 20.73% | 25.61% |
35.69% |
HEX | A4 | 82 | 7A |
Decimal | 164 | 130 | 122 |
Binary | 10100100 | 10000010 | 1111010 |
Octal | 244 | 202 | 172 |
Examples of css and html codes for elements with #A4827A color. Also use rgb(164,130,122) instead hex code.
.myTextColor { color: #A4827A; }
<p style="color:#A4827A">This sample text font color is #A4827A.</p>
This text font color is #A4827A.
.myBgColor { background-color: #A4827A; }
<div style="background-color:#A4827A">Inner text</div>
This div background color is #A4827A.
.myBorderColor { border: 1px solid #A4827A; }
<div style="border:3px solid #A4827A">Div</div>
This div border color is #A4827A.
.myOpacity80 { color: #A4827A; opacity: 0.8; }
<p style="color:#A4827A;opacity:0.8;">80%</p>
Text with #A4827A color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #A4827A;}
<p style="text-shadow: 3px 3px 1px #A4827A">Text here.</p>
This text has shadow with #A4827A color.
.textShadow {text-shadow: 3px 3px 1px #A4827A, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #A4827A, 5px 5px 20px red">Text here.</p>
This text has shadow with #A4827A primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#A4827A, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#A4827A, Direction=45, Strength=4)">Text</p>
This text has shadow with #A4827A and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #A4827A; -webkit-box-shadow: 1px 1px 3px 2px #A4827A; box-shadow: 1px 1px 3px 2px #A4827A; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #A4827A; -webkit-box-shadow: 1px 1px 3px 2px #A4827A; box-shadow:1px 1px 3px 2px #A4827A;">
Div content here</div>
This text has color #A4827A on black background.
This text has color #A4827A on white background.
This text has black color on #A4827A background.
This text has white color on #A4827A background.