HEX: #AD6862
RGB: (173,104,98)
#AD6862 contains mainly red color. Web safe color of #AD6862 is #996666 (or #966).
#AD6862 color RGB value is (173,104,98).
RGB: (173,104,98) (68%,41%,38%)
R 173 of 255 = 68%
G 104 of 255 = 41%
B 98 of 255 = 38%
R + G + B ~ 49%. #AD6862 is middle color (not dark and not light).
R + G + B =
173 + 104 + 98 = 375 (100%)
R 173 of 375 ~ 46.13%
G 104 of 375 ~ 27.73%
B 98 of 375 ~ 26.13%
#AD6862 color CMYK value is (0,40,43,32).
CMYK: (0,40,43,32) C0M40Y43K32 (0%,40%,43%,32%) (0.00/0.40/0.43/0.32)
AD | 68 | 62 | |
---|---|---|---|
RGB | 173 | 104 | 98 |
HSL | 5° | 31.38% | 53.14% |
HSB/HSV | 5° | 43.35% | 67.84% |
CMYK | 0.00% | 39.88% | 43.35% |
32.16% |
HEX | AD | 68 | 62 |
Decimal | 173 | 104 | 98 |
Binary | 10101101 | 1101000 | 1100010 |
Octal | 255 | 150 | 142 |
Examples of css and html codes for elements with #AD6862 color. Also use rgb(173,104,98) instead hex code.
.myTextColor { color: #AD6862; }
<p style="color:#AD6862">This sample text font color is #AD6862.</p>
This text font color is #AD6862.
.myBgColor { background-color: #AD6862; }
<div style="background-color:#AD6862">Inner text</div>
This div background color is #AD6862.
.myBorderColor { border: 1px solid #AD6862; }
<div style="border:3px solid #AD6862">Div</div>
This div border color is #AD6862.
.myOpacity80 { color: #AD6862; opacity: 0.8; }
<p style="color:#AD6862;opacity:0.8;">80%</p>
Text with #AD6862 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #AD6862;}
<p style="text-shadow: 3px 3px 1px #AD6862">Text here.</p>
This text has shadow with #AD6862 color.
.textShadow {text-shadow: 3px 3px 1px #AD6862, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #AD6862, 5px 5px 20px red">Text here.</p>
This text has shadow with #AD6862 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#AD6862, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#AD6862, Direction=45, Strength=4)">Text</p>
This text has shadow with #AD6862 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #AD6862; -webkit-box-shadow: 1px 1px 3px 2px #AD6862; box-shadow: 1px 1px 3px 2px #AD6862; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #AD6862; -webkit-box-shadow: 1px 1px 3px 2px #AD6862; box-shadow:1px 1px 3px 2px #AD6862;">
Div content here</div>
This text has color #AD6862 on black background.
This text has color #AD6862 on white background.
This text has black color on #AD6862 background.
This text has white color on #AD6862 background.