HEX: #AD718F
RGB: (173,113,143)
#AD718F contains mainly red and blue colors. Web safe color of #AD718F is #996699 (or #969).
#AD718F color RGB value is (173,113,143).
RGB: (173,113,143) (68%,44%,56%)
R 173 of 255 = 68%
G 113 of 255 = 44%
B 143 of 255 = 56%
R + G + B ~ 56%. #AD718F is middle color (not dark and not light).
R + G + B =
173 + 113 + 143 = 429 (100%)
R 173 of 429 ~ 40.33%
G 113 of 429 ~ 26.34%
B 143 of 429 ~ 33.33%
#AD718F color CMYK value is (0,35,17,32).
CMYK: (0,35,17,32) C0M35Y17K32 (0%,35%,17%,32%) (0.00/0.35/0.17/0.32)
AD | 71 | 8F | |
---|---|---|---|
RGB | 173 | 113 | 143 |
HSL | 330° | 26.79% | 56.08% |
HSB/HSV | 330° | 34.68% | 67.84% |
CMYK | 0.00% | 34.68% | 17.34% |
32.16% |
HEX | AD | 71 | 8F |
Decimal | 173 | 113 | 143 |
Binary | 10101101 | 1110001 | 10001111 |
Octal | 255 | 161 | 217 |
Examples of css and html codes for elements with #AD718F color. Also use rgb(173,113,143) instead hex code.
.myTextColor { color: #AD718F; }
<p style="color:#AD718F">This sample text font color is #AD718F.</p>
This text font color is #AD718F.
.myBgColor { background-color: #AD718F; }
<div style="background-color:#AD718F">Inner text</div>
This div background color is #AD718F.
.myBorderColor { border: 1px solid #AD718F; }
<div style="border:3px solid #AD718F">Div</div>
This div border color is #AD718F.
.myOpacity80 { color: #AD718F; opacity: 0.8; }
<p style="color:#AD718F;opacity:0.8;">80%</p>
Text with #AD718F color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #AD718F;}
<p style="text-shadow: 3px 3px 1px #AD718F">Text here.</p>
This text has shadow with #AD718F color.
.textShadow {text-shadow: 3px 3px 1px #AD718F, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #AD718F, 5px 5px 20px red">Text here.</p>
This text has shadow with #AD718F primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#AD718F, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#AD718F, Direction=45, Strength=4)">Text</p>
This text has shadow with #AD718F and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #AD718F; -webkit-box-shadow: 1px 1px 3px 2px #AD718F; box-shadow: 1px 1px 3px 2px #AD718F; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #AD718F; -webkit-box-shadow: 1px 1px 3px 2px #AD718F; box-shadow:1px 1px 3px 2px #AD718F;">
Div content here</div>
This text has color #AD718F on black background.
This text has color #AD718F on white background.
This text has black color on #AD718F background.
This text has white color on #AD718F background.