HEX: #AD466C
RGB: (173,70,108)
#AD466C contains mainly red color. Web safe color of #AD466C is #993366 (or #936).
#AD466C color RGB value is (173,70,108).
RGB: (173,70,108) (68%,27%,42%)
R 173 of 255 = 68%
G 70 of 255 = 27%
B 108 of 255 = 42%
R + G + B ~ 46%. #AD466C is middle color (not dark and not light).
R + G + B =
173 + 70 + 108 = 351 (100%)
R 173 of 351 ~ 49.29%
G 70 of 351 ~ 19.94%
B 108 of 351 ~ 30.77%
#AD466C color CMYK value is (0,60,38,32).
CMYK: (0,60,38,32) C0M60Y38K32 (0%,60%,38%,32%) (0.00/0.60/0.38/0.32)
AD | 46 | 6C | |
---|---|---|---|
RGB | 173 | 70 | 108 |
HSL | 338° | 42.39% | 47.65% |
HSB/HSV | 338° | 59.54% | 67.84% |
CMYK | 0.00% | 59.54% | 37.57% |
32.16% |
HEX | AD | 46 | 6C |
Decimal | 173 | 70 | 108 |
Binary | 10101101 | 1000110 | 1101100 |
Octal | 255 | 106 | 154 |
Examples of css and html codes for elements with #AD466C color. Also use rgb(173,70,108) instead hex code.
.myTextColor { color: #AD466C; }
<p style="color:#AD466C">This sample text font color is #AD466C.</p>
This text font color is #AD466C.
.myBgColor { background-color: #AD466C; }
<div style="background-color:#AD466C">Inner text</div>
This div background color is #AD466C.
.myBorderColor { border: 1px solid #AD466C; }
<div style="border:3px solid #AD466C">Div</div>
This div border color is #AD466C.
.myOpacity80 { color: #AD466C; opacity: 0.8; }
<p style="color:#AD466C;opacity:0.8;">80%</p>
Text with #AD466C color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #AD466C;}
<p style="text-shadow: 3px 3px 1px #AD466C">Text here.</p>
This text has shadow with #AD466C color.
.textShadow {text-shadow: 3px 3px 1px #AD466C, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #AD466C, 5px 5px 20px red">Text here.</p>
This text has shadow with #AD466C primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#AD466C, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#AD466C, Direction=45, Strength=4)">Text</p>
This text has shadow with #AD466C and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #AD466C; -webkit-box-shadow: 1px 1px 3px 2px #AD466C; box-shadow: 1px 1px 3px 2px #AD466C; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #AD466C; -webkit-box-shadow: 1px 1px 3px 2px #AD466C; box-shadow:1px 1px 3px 2px #AD466C;">
Div content here</div>
This text has color #AD466C on black background.
This text has color #AD466C on white background.
This text has black color on #AD466C background.
This text has white color on #AD466C background.