HEX: #AD6E7E
RGB: (173,110,126)
#AD6E7E contains mainly red and blue colors. Web safe color of #AD6E7E is #996666 (or #966).
#AD6E7E color RGB value is (173,110,126).
RGB: (173,110,126) (68%,43%,49%)
R 173 of 255 = 68%
G 110 of 255 = 43%
B 126 of 255 = 49%
R + G + B ~ 53%. #AD6E7E is middle color (not dark and not light).
R + G + B =
173 + 110 + 126 = 409 (100%)
R 173 of 409 ~ 42.3%
G 110 of 409 ~ 26.89%
B 126 of 409 ~ 30.81%
#AD6E7E color CMYK value is (0,36,27,32).
CMYK: (0,36,27,32) C0M36Y27K32 (0%,36%,27%,32%) (0.00/0.36/0.27/0.32)
AD | 6E | 7E | |
---|---|---|---|
RGB | 173 | 110 | 126 |
HSL | 345° | 27.75% | 55.49% |
HSB/HSV | 345° | 36.42% | 67.84% |
CMYK | 0.00% | 36.42% | 27.17% |
32.16% |
HEX | AD | 6E | 7E |
Decimal | 173 | 110 | 126 |
Binary | 10101101 | 1101110 | 1111110 |
Octal | 255 | 156 | 176 |
Examples of css and html codes for elements with #AD6E7E color. Also use rgb(173,110,126) instead hex code.
.myTextColor { color: #AD6E7E; }
<p style="color:#AD6E7E">This sample text font color is #AD6E7E.</p>
This text font color is #AD6E7E.
.myBgColor { background-color: #AD6E7E; }
<div style="background-color:#AD6E7E">Inner text</div>
This div background color is #AD6E7E.
.myBorderColor { border: 1px solid #AD6E7E; }
<div style="border:3px solid #AD6E7E">Div</div>
This div border color is #AD6E7E.
.myOpacity80 { color: #AD6E7E; opacity: 0.8; }
<p style="color:#AD6E7E;opacity:0.8;">80%</p>
Text with #AD6E7E color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #AD6E7E;}
<p style="text-shadow: 3px 3px 1px #AD6E7E">Text here.</p>
This text has shadow with #AD6E7E color.
.textShadow {text-shadow: 3px 3px 1px #AD6E7E, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #AD6E7E, 5px 5px 20px red">Text here.</p>
This text has shadow with #AD6E7E primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#AD6E7E, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#AD6E7E, Direction=45, Strength=4)">Text</p>
This text has shadow with #AD6E7E and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #AD6E7E; -webkit-box-shadow: 1px 1px 3px 2px #AD6E7E; box-shadow: 1px 1px 3px 2px #AD6E7E; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #AD6E7E; -webkit-box-shadow: 1px 1px 3px 2px #AD6E7E; box-shadow:1px 1px 3px 2px #AD6E7E;">
Div content here</div>
This text has color #AD6E7E on black background.
This text has color #AD6E7E on white background.
This text has black color on #AD6E7E background.
This text has white color on #AD6E7E background.