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