HEX: #AD84AC
RGB: (173,132,172)
#AD84AC contains red, green and blue colors in about the same proportion. Web safe color of #AD84AC is #999999 (or #999).
#AD84AC color RGB value is (173,132,172).
RGB: (173,132,172) (68%,52%,67%)
R 173 of 255 = 68%
G 132 of 255 = 52%
B 172 of 255 = 67%
R + G + B ~ 62%. #AD84AC is quite light color.
R + G + B =
173 + 132 + 172 = 477 (100%)
R 173 of 477 ~ 36.27%
G 132 of 477 ~ 27.67%
B 172 of 477 ~ 36.06%
#AD84AC color CMYK value is (0,24,1,32).
CMYK: (0,24,1,32) C0M24Y1K32 (0%,24%,1%,32%) (0.00/0.24/0.01/0.32)
AD | 84 | AC | |
---|---|---|---|
RGB | 173 | 132 | 172 |
HSL | 301° | 20.00% | 59.80% |
HSB/HSV | 301° | 23.70% | 67.84% |
CMYK | 0.00% | 23.70% | 0.58% |
32.16% |
HEX | AD | 84 | AC |
Decimal | 173 | 132 | 172 |
Binary | 10101101 | 10000100 | 10101100 |
Octal | 255 | 204 | 254 |
Examples of css and html codes for elements with #AD84AC color. Also use rgb(173,132,172) instead hex code.
.myTextColor { color: #AD84AC; }
<p style="color:#AD84AC">This sample text font color is #AD84AC.</p>
This text font color is #AD84AC.
.myBgColor { background-color: #AD84AC; }
<div style="background-color:#AD84AC">Inner text</div>
This div background color is #AD84AC.
.myBorderColor { border: 1px solid #AD84AC; }
<div style="border:3px solid #AD84AC">Div</div>
This div border color is #AD84AC.
.myOpacity80 { color: #AD84AC; opacity: 0.8; }
<p style="color:#AD84AC;opacity:0.8;">80%</p>
Text with #AD84AC color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #AD84AC;}
<p style="text-shadow: 3px 3px 1px #AD84AC">Text here.</p>
This text has shadow with #AD84AC color.
.textShadow {text-shadow: 3px 3px 1px #AD84AC, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #AD84AC, 5px 5px 20px red">Text here.</p>
This text has shadow with #AD84AC primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#AD84AC, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#AD84AC, Direction=45, Strength=4)">Text</p>
This text has shadow with #AD84AC and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #AD84AC; -webkit-box-shadow: 1px 1px 3px 2px #AD84AC; box-shadow: 1px 1px 3px 2px #AD84AC; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #AD84AC; -webkit-box-shadow: 1px 1px 3px 2px #AD84AC; box-shadow:1px 1px 3px 2px #AD84AC;">
Div content here</div>
This text has color #AD84AC on black background.
This text has color #AD84AC on white background.
This text has black color on #AD84AC background.
This text has white color on #AD84AC background.