HEX: #AD4881
RGB: (173,72,129)
#AD4881 contains mainly red and blue colors. Web safe color of #AD4881 is #993399 (or #939).
#AD4881 color RGB value is (173,72,129).
RGB: (173,72,129) (68%,28%,51%)
R 173 of 255 = 68%
G 72 of 255 = 28%
B 129 of 255 = 51%
R + G + B ~ 49%. #AD4881 is middle color (not dark and not light).
R + G + B =
173 + 72 + 129 = 374 (100%)
R 173 of 374 ~ 46.26%
G 72 of 374 ~ 19.25%
B 129 of 374 ~ 34.49%
#AD4881 color CMYK value is (0,58,25,32).
CMYK: (0,58,25,32) C0M58Y25K32 (0%,58%,25%,32%) (0.00/0.58/0.25/0.32)
AD | 48 | 81 | |
---|---|---|---|
RGB | 173 | 72 | 129 |
HSL | 326° | 41.22% | 48.04% |
HSB/HSV | 326° | 58.38% | 67.84% |
CMYK | 0.00% | 58.38% | 25.43% |
32.16% |
HEX | AD | 48 | 81 |
Decimal | 173 | 72 | 129 |
Binary | 10101101 | 1001000 | 10000001 |
Octal | 255 | 110 | 201 |
Examples of css and html codes for elements with #AD4881 color. Also use rgb(173,72,129) instead hex code.
.myTextColor { color: #AD4881; }
<p style="color:#AD4881">This sample text font color is #AD4881.</p>
This text font color is #AD4881.
.myBgColor { background-color: #AD4881; }
<div style="background-color:#AD4881">Inner text</div>
This div background color is #AD4881.
.myBorderColor { border: 1px solid #AD4881; }
<div style="border:3px solid #AD4881">Div</div>
This div border color is #AD4881.
.myOpacity80 { color: #AD4881; opacity: 0.8; }
<p style="color:#AD4881;opacity:0.8;">80%</p>
Text with #AD4881 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #AD4881;}
<p style="text-shadow: 3px 3px 1px #AD4881">Text here.</p>
This text has shadow with #AD4881 color.
.textShadow {text-shadow: 3px 3px 1px #AD4881, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #AD4881, 5px 5px 20px red">Text here.</p>
This text has shadow with #AD4881 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#AD4881, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#AD4881, Direction=45, Strength=4)">Text</p>
This text has shadow with #AD4881 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #AD4881; -webkit-box-shadow: 1px 1px 3px 2px #AD4881; box-shadow: 1px 1px 3px 2px #AD4881; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #AD4881; -webkit-box-shadow: 1px 1px 3px 2px #AD4881; box-shadow:1px 1px 3px 2px #AD4881;">
Div content here</div>
This text has color #AD4881 on black background.
This text has color #AD4881 on white background.
This text has black color on #AD4881 background.
This text has white color on #AD4881 background.