HEX: #AC72AA
RGB: (172,114,170)
#AC72AA contains red, green and blue colors in about the same proportion. Web safe color of #AC72AA is #996699 (or #969).
#AC72AA color RGB value is (172,114,170).
RGB: (172,114,170) (67%,45%,67%)
R 172 of 255 = 67%
G 114 of 255 = 45%
B 170 of 255 = 67%
R + G + B ~ 60%. #AC72AA is middle color (not dark and not light).
R + G + B =
172 + 114 + 170 = 456 (100%)
R 172 of 456 ~ 37.72%
G 114 of 456 ~ 25%
B 170 of 456 ~ 37.28%
#AC72AA color CMYK value is (0,34,1,33).
CMYK: (0,34,1,33) C0M34Y1K33 (0%,34%,1%,33%) (0.00/0.34/0.01/0.33)
AC | 72 | AA | |
---|---|---|---|
RGB | 172 | 114 | 170 |
HSL | 302° | 25.89% | 56.08% |
HSB/HSV | 302° | 33.72% | 67.45% |
CMYK | 0.00% | 33.72% | 1.16% |
32.55% |
HEX | AC | 72 | AA |
Decimal | 172 | 114 | 170 |
Binary | 10101100 | 1110010 | 10101010 |
Octal | 254 | 162 | 252 |
Examples of css and html codes for elements with #AC72AA color. Also use rgb(172,114,170) instead hex code.
.myTextColor { color: #AC72AA; }
<p style="color:#AC72AA">This sample text font color is #AC72AA.</p>
This text font color is #AC72AA.
.myBgColor { background-color: #AC72AA; }
<div style="background-color:#AC72AA">Inner text</div>
This div background color is #AC72AA.
.myBorderColor { border: 1px solid #AC72AA; }
<div style="border:3px solid #AC72AA">Div</div>
This div border color is #AC72AA.
.myOpacity80 { color: #AC72AA; opacity: 0.8; }
<p style="color:#AC72AA;opacity:0.8;">80%</p>
Text with #AC72AA color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #AC72AA;}
<p style="text-shadow: 3px 3px 1px #AC72AA">Text here.</p>
This text has shadow with #AC72AA color.
.textShadow {text-shadow: 3px 3px 1px #AC72AA, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #AC72AA, 5px 5px 20px red">Text here.</p>
This text has shadow with #AC72AA primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#AC72AA, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#AC72AA, Direction=45, Strength=4)">Text</p>
This text has shadow with #AC72AA and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #AC72AA; -webkit-box-shadow: 1px 1px 3px 2px #AC72AA; box-shadow: 1px 1px 3px 2px #AC72AA; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #AC72AA; -webkit-box-shadow: 1px 1px 3px 2px #AC72AA; box-shadow:1px 1px 3px 2px #AC72AA;">
Div content here</div>
This text has color #AC72AA on black background.
This text has color #AC72AA on white background.
This text has black color on #AC72AA background.
This text has white color on #AC72AA background.