HEX: #AA677A
RGB: (170,103,122)
#AA677A contains mainly red and blue colors. Web safe color of #AA677A is #996666 (or #966).
#AA677A color RGB value is (170,103,122).
RGB: (170,103,122) (67%,40%,48%)
R 170 of 255 = 67%
G 103 of 255 = 40%
B 122 of 255 = 48%
R + G + B ~ 52%. #AA677A is middle color (not dark and not light).
R + G + B =
170 + 103 + 122 = 395 (100%)
R 170 of 395 ~ 43.04%
G 103 of 395 ~ 26.08%
B 122 of 395 ~ 30.89%
#AA677A color CMYK value is (0,39,28,33).
CMYK: (0,39,28,33) C0M39Y28K33 (0%,39%,28%,33%) (0.00/0.39/0.28/0.33)
AA | 67 | 7A | |
---|---|---|---|
RGB | 170 | 103 | 122 |
HSL | 343° | 28.27% | 53.53% |
HSB/HSV | 343° | 39.41% | 66.67% |
CMYK | 0.00% | 39.41% | 28.24% |
33.33% |
HEX | AA | 67 | 7A |
Decimal | 170 | 103 | 122 |
Binary | 10101010 | 1100111 | 1111010 |
Octal | 252 | 147 | 172 |
Examples of css and html codes for elements with #AA677A color. Also use rgb(170,103,122) instead hex code.
.myTextColor { color: #AA677A; }
<p style="color:#AA677A">This sample text font color is #AA677A.</p>
This text font color is #AA677A.
.myBgColor { background-color: #AA677A; }
<div style="background-color:#AA677A">Inner text</div>
This div background color is #AA677A.
.myBorderColor { border: 1px solid #AA677A; }
<div style="border:3px solid #AA677A">Div</div>
This div border color is #AA677A.
.myOpacity80 { color: #AA677A; opacity: 0.8; }
<p style="color:#AA677A;opacity:0.8;">80%</p>
Text with #AA677A color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #AA677A;}
<p style="text-shadow: 3px 3px 1px #AA677A">Text here.</p>
This text has shadow with #AA677A color.
.textShadow {text-shadow: 3px 3px 1px #AA677A, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #AA677A, 5px 5px 20px red">Text here.</p>
This text has shadow with #AA677A primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#AA677A, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#AA677A, Direction=45, Strength=4)">Text</p>
This text has shadow with #AA677A and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #AA677A; -webkit-box-shadow: 1px 1px 3px 2px #AA677A; box-shadow: 1px 1px 3px 2px #AA677A; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #AA677A; -webkit-box-shadow: 1px 1px 3px 2px #AA677A; box-shadow:1px 1px 3px 2px #AA677A;">
Div content here</div>
This text has color #AA677A on black background.
This text has color #AA677A on white background.
This text has black color on #AA677A background.
This text has white color on #AA677A background.