HEX: #AD888A
RGB: (173,136,138)
#AD888A contains red, green and blue colors in about the same proportion. Web safe color of #AD888A is #999999 (or #999).
#AD888A color RGB value is (173,136,138).
RGB: (173,136,138) (68%,53%,54%)
R 173 of 255 = 68%
G 136 of 255 = 53%
B 138 of 255 = 54%
R + G + B ~ 58%. #AD888A is middle color (not dark and not light).
R + G + B =
173 + 136 + 138 = 447 (100%)
R 173 of 447 ~ 38.7%
G 136 of 447 ~ 30.43%
B 138 of 447 ~ 30.87%
#AD888A color CMYK value is (0,21,20,32).
CMYK: (0,21,20,32) C0M21Y20K32 (0%,21%,20%,32%) (0.00/0.21/0.20/0.32)
AD | 88 | 8A | |
---|---|---|---|
RGB | 173 | 136 | 138 |
HSL | 357° | 18.41% | 60.59% |
HSB/HSV | 357° | 21.39% | 67.84% |
CMYK | 0.00% | 21.39% | 20.23% |
32.16% |
HEX | AD | 88 | 8A |
Decimal | 173 | 136 | 138 |
Binary | 10101101 | 10001000 | 10001010 |
Octal | 255 | 210 | 212 |
Examples of css and html codes for elements with #AD888A color. Also use rgb(173,136,138) instead hex code.
.myTextColor { color: #AD888A; }
<p style="color:#AD888A">This sample text font color is #AD888A.</p>
This text font color is #AD888A.
.myBgColor { background-color: #AD888A; }
<div style="background-color:#AD888A">Inner text</div>
This div background color is #AD888A.
.myBorderColor { border: 1px solid #AD888A; }
<div style="border:3px solid #AD888A">Div</div>
This div border color is #AD888A.
.myOpacity80 { color: #AD888A; opacity: 0.8; }
<p style="color:#AD888A;opacity:0.8;">80%</p>
Text with #AD888A color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #AD888A;}
<p style="text-shadow: 3px 3px 1px #AD888A">Text here.</p>
This text has shadow with #AD888A color.
.textShadow {text-shadow: 3px 3px 1px #AD888A, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #AD888A, 5px 5px 20px red">Text here.</p>
This text has shadow with #AD888A primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#AD888A, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#AD888A, Direction=45, Strength=4)">Text</p>
This text has shadow with #AD888A and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #AD888A; -webkit-box-shadow: 1px 1px 3px 2px #AD888A; box-shadow: 1px 1px 3px 2px #AD888A; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #AD888A; -webkit-box-shadow: 1px 1px 3px 2px #AD888A; box-shadow:1px 1px 3px 2px #AD888A;">
Div content here</div>
This text has color #AD888A on black background.
This text has color #AD888A on white background.
This text has black color on #AD888A background.
This text has white color on #AD888A background.