HEX: #AC76AE
RGB: (172,118,174)
#AC76AE contains red, green and blue colors in about the same proportion. Web safe color of #AC76AE is #996699 (or #969).
#AC76AE color RGB value is (172,118,174).
RGB: (172,118,174) (67%,46%,68%)
R 172 of 255 = 67%
G 118 of 255 = 46%
B 174 of 255 = 68%
R + G + B ~ 60%. #AC76AE is middle color (not dark and not light).
R + G + B =
172 + 118 + 174 = 464 (100%)
R 172 of 464 ~ 37.07%
G 118 of 464 ~ 25.43%
B 174 of 464 ~ 37.5%
#AC76AE color CMYK value is (1,32,0,32).
CMYK: (1,32,0,32) C1M32Y0K32 (1%,32%,0%,32%) (0.01/0.32/0.00/0.32)
AC | 76 | AE | |
---|---|---|---|
RGB | 172 | 118 | 174 |
HSL | 298° | 25.69% | 57.25% |
HSB/HSV | 298° | 32.18% | 68.24% |
CMYK | 1.15% | 32.18% | 0.00% |
31.76% |
HEX | AC | 76 | AE |
Decimal | 172 | 118 | 174 |
Binary | 10101100 | 1110110 | 10101110 |
Octal | 254 | 166 | 256 |
Examples of css and html codes for elements with #AC76AE color. Also use rgb(172,118,174) instead hex code.
.myTextColor { color: #AC76AE; }
<p style="color:#AC76AE">This sample text font color is #AC76AE.</p>
This text font color is #AC76AE.
.myBgColor { background-color: #AC76AE; }
<div style="background-color:#AC76AE">Inner text</div>
This div background color is #AC76AE.
.myBorderColor { border: 1px solid #AC76AE; }
<div style="border:3px solid #AC76AE">Div</div>
This div border color is #AC76AE.
.myOpacity80 { color: #AC76AE; opacity: 0.8; }
<p style="color:#AC76AE;opacity:0.8;">80%</p>
Text with #AC76AE color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #AC76AE;}
<p style="text-shadow: 3px 3px 1px #AC76AE">Text here.</p>
This text has shadow with #AC76AE color.
.textShadow {text-shadow: 3px 3px 1px #AC76AE, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #AC76AE, 5px 5px 20px red">Text here.</p>
This text has shadow with #AC76AE primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#AC76AE, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#AC76AE, Direction=45, Strength=4)">Text</p>
This text has shadow with #AC76AE and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #AC76AE; -webkit-box-shadow: 1px 1px 3px 2px #AC76AE; box-shadow: 1px 1px 3px 2px #AC76AE; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #AC76AE; -webkit-box-shadow: 1px 1px 3px 2px #AC76AE; box-shadow:1px 1px 3px 2px #AC76AE;">
Div content here</div>
This text has color #AC76AE on black background.
This text has color #AC76AE on white background.
This text has black color on #AC76AE background.
This text has white color on #AC76AE background.