HEX: #AA616D
RGB: (170,97,109)
#AA616D contains mainly red color. Web safe color of #AA616D is #996666 (or #966).
#AA616D color RGB value is (170,97,109).
RGB: (170,97,109) (67%,38%,43%)
R 170 of 255 = 67%
G 97 of 255 = 38%
B 109 of 255 = 43%
R + G + B ~ 49%. #AA616D is middle color (not dark and not light).
R + G + B =
170 + 97 + 109 = 376 (100%)
R 170 of 376 ~ 45.21%
G 97 of 376 ~ 25.8%
B 109 of 376 ~ 28.99%
#AA616D color CMYK value is (0,43,36,33).
CMYK: (0,43,36,33) C0M43Y36K33 (0%,43%,36%,33%) (0.00/0.43/0.36/0.33)
AA | 61 | 6D | |
---|---|---|---|
RGB | 170 | 97 | 109 |
HSL | 350° | 30.04% | 52.35% |
HSB/HSV | 350° | 42.94% | 66.67% |
CMYK | 0.00% | 42.94% | 35.88% |
33.33% |
HEX | AA | 61 | 6D |
Decimal | 170 | 97 | 109 |
Binary | 10101010 | 1100001 | 1101101 |
Octal | 252 | 141 | 155 |
Examples of css and html codes for elements with #AA616D color. Also use rgb(170,97,109) instead hex code.
.myTextColor { color: #AA616D; }
<p style="color:#AA616D">This sample text font color is #AA616D.</p>
This text font color is #AA616D.
.myBgColor { background-color: #AA616D; }
<div style="background-color:#AA616D">Inner text</div>
This div background color is #AA616D.
.myBorderColor { border: 1px solid #AA616D; }
<div style="border:3px solid #AA616D">Div</div>
This div border color is #AA616D.
.myOpacity80 { color: #AA616D; opacity: 0.8; }
<p style="color:#AA616D;opacity:0.8;">80%</p>
Text with #AA616D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #AA616D;}
<p style="text-shadow: 3px 3px 1px #AA616D">Text here.</p>
This text has shadow with #AA616D color.
.textShadow {text-shadow: 3px 3px 1px #AA616D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #AA616D, 5px 5px 20px red">Text here.</p>
This text has shadow with #AA616D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#AA616D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#AA616D, Direction=45, Strength=4)">Text</p>
This text has shadow with #AA616D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #AA616D; -webkit-box-shadow: 1px 1px 3px 2px #AA616D; box-shadow: 1px 1px 3px 2px #AA616D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #AA616D; -webkit-box-shadow: 1px 1px 3px 2px #AA616D; box-shadow:1px 1px 3px 2px #AA616D;">
Div content here</div>
This text has color #AA616D on black background.
This text has color #AA616D on white background.
This text has black color on #AA616D background.
This text has white color on #AA616D background.