HEX: #AA776A
RGB: (170,119,106)
#AA776A contains mainly red and green colors. Web safe color of #AA776A is #996666 (or #966).
#AA776A color RGB value is (170,119,106).
RGB: (170,119,106) (67%,47%,42%)
R 170 of 255 = 67%
G 119 of 255 = 47%
B 106 of 255 = 42%
R + G + B ~ 52%. #AA776A is middle color (not dark and not light).
R + G + B =
170 + 119 + 106 = 395 (100%)
R 170 of 395 ~ 43.04%
G 119 of 395 ~ 30.13%
B 106 of 395 ~ 26.84%
#AA776A color CMYK value is (0,30,38,33).
CMYK: (0,30,38,33) C0M30Y38K33 (0%,30%,38%,33%) (0.00/0.30/0.38/0.33)
AA | 77 | 6A | |
---|---|---|---|
RGB | 170 | 119 | 106 |
HSL | 12° | 27.35% | 54.12% |
HSB/HSV | 12° | 37.65% | 66.67% |
CMYK | 0.00% | 30.00% | 37.65% |
33.33% |
HEX | AA | 77 | 6A |
Decimal | 170 | 119 | 106 |
Binary | 10101010 | 1110111 | 1101010 |
Octal | 252 | 167 | 152 |
Examples of css and html codes for elements with #AA776A color. Also use rgb(170,119,106) instead hex code.
.myTextColor { color: #AA776A; }
<p style="color:#AA776A">This sample text font color is #AA776A.</p>
This text font color is #AA776A.
.myBgColor { background-color: #AA776A; }
<div style="background-color:#AA776A">Inner text</div>
This div background color is #AA776A.
.myBorderColor { border: 1px solid #AA776A; }
<div style="border:3px solid #AA776A">Div</div>
This div border color is #AA776A.
.myOpacity80 { color: #AA776A; opacity: 0.8; }
<p style="color:#AA776A;opacity:0.8;">80%</p>
Text with #AA776A color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #AA776A;}
<p style="text-shadow: 3px 3px 1px #AA776A">Text here.</p>
This text has shadow with #AA776A color.
.textShadow {text-shadow: 3px 3px 1px #AA776A, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #AA776A, 5px 5px 20px red">Text here.</p>
This text has shadow with #AA776A primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#AA776A, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#AA776A, Direction=45, Strength=4)">Text</p>
This text has shadow with #AA776A and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #AA776A; -webkit-box-shadow: 1px 1px 3px 2px #AA776A; box-shadow: 1px 1px 3px 2px #AA776A; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #AA776A; -webkit-box-shadow: 1px 1px 3px 2px #AA776A; box-shadow:1px 1px 3px 2px #AA776A;">
Div content here</div>
This text has color #AA776A on black background.
This text has color #AA776A on white background.
This text has black color on #AA776A background.
This text has white color on #AA776A background.