HEX: #AD4E81
RGB: (173,78,129)
#AD4E81 contains mainly red and blue colors. Web safe color of #AD4E81 is #996699 (or #969).
#AD4E81 color RGB value is (173,78,129).
RGB: (173,78,129) (68%,31%,51%)
R 173 of 255 = 68%
G 78 of 255 = 31%
B 129 of 255 = 51%
R + G + B ~ 50%. #AD4E81 is middle color (not dark and not light).
R + G + B =
173 + 78 + 129 = 380 (100%)
R 173 of 380 ~ 45.53%
G 78 of 380 ~ 20.53%
B 129 of 380 ~ 33.95%
#AD4E81 color CMYK value is (0,55,25,32).
CMYK: (0,55,25,32) C0M55Y25K32 (0%,55%,25%,32%) (0.00/0.55/0.25/0.32)
AD | 4E | 81 | |
---|---|---|---|
RGB | 173 | 78 | 129 |
HSL | 328° | 37.85% | 49.22% |
HSB/HSV | 328° | 54.91% | 67.84% |
CMYK | 0.00% | 54.91% | 25.43% |
32.16% |
HEX | AD | 4E | 81 |
Decimal | 173 | 78 | 129 |
Binary | 10101101 | 1001110 | 10000001 |
Octal | 255 | 116 | 201 |
Examples of css and html codes for elements with #AD4E81 color. Also use rgb(173,78,129) instead hex code.
.myTextColor { color: #AD4E81; }
<p style="color:#AD4E81">This sample text font color is #AD4E81.</p>
This text font color is #AD4E81.
.myBgColor { background-color: #AD4E81; }
<div style="background-color:#AD4E81">Inner text</div>
This div background color is #AD4E81.
.myBorderColor { border: 1px solid #AD4E81; }
<div style="border:3px solid #AD4E81">Div</div>
This div border color is #AD4E81.
.myOpacity80 { color: #AD4E81; opacity: 0.8; }
<p style="color:#AD4E81;opacity:0.8;">80%</p>
Text with #AD4E81 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #AD4E81;}
<p style="text-shadow: 3px 3px 1px #AD4E81">Text here.</p>
This text has shadow with #AD4E81 color.
.textShadow {text-shadow: 3px 3px 1px #AD4E81, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #AD4E81, 5px 5px 20px red">Text here.</p>
This text has shadow with #AD4E81 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#AD4E81, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#AD4E81, Direction=45, Strength=4)">Text</p>
This text has shadow with #AD4E81 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #AD4E81; -webkit-box-shadow: 1px 1px 3px 2px #AD4E81; box-shadow: 1px 1px 3px 2px #AD4E81; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #AD4E81; -webkit-box-shadow: 1px 1px 3px 2px #AD4E81; box-shadow:1px 1px 3px 2px #AD4E81;">
Div content here</div>
This text has color #AD4E81 on black background.
This text has color #AD4E81 on white background.
This text has black color on #AD4E81 background.
This text has white color on #AD4E81 background.