HEX: #AD918D
RGB: (173,145,141)
#AD918D contains red, green and blue colors in about the same proportion. Web safe color of #AD918D is #999999 (or #999).
#AD918D color RGB value is (173,145,141).
RGB: (173,145,141) (68%,57%,55%)
R 173 of 255 = 68%
G 145 of 255 = 57%
B 141 of 255 = 55%
R + G + B ~ 60%. #AD918D is middle color (not dark and not light).
R + G + B =
173 + 145 + 141 = 459 (100%)
R 173 of 459 ~ 37.69%
G 145 of 459 ~ 31.59%
B 141 of 459 ~ 30.72%
#AD918D color CMYK value is (0,16,18,32).
CMYK: (0,16,18,32) C0M16Y18K32 (0%,16%,18%,32%) (0.00/0.16/0.18/0.32)
AD | 91 | 8D | |
---|---|---|---|
RGB | 173 | 145 | 141 |
HSL | 7° | 16.33% | 61.57% |
HSB/HSV | 7° | 18.50% | 67.84% |
CMYK | 0.00% | 16.18% | 18.50% |
32.16% |
HEX | AD | 91 | 8D |
Decimal | 173 | 145 | 141 |
Binary | 10101101 | 10010001 | 10001101 |
Octal | 255 | 221 | 215 |
Examples of css and html codes for elements with #AD918D color. Also use rgb(173,145,141) instead hex code.
.myTextColor { color: #AD918D; }
<p style="color:#AD918D">This sample text font color is #AD918D.</p>
This text font color is #AD918D.
.myBgColor { background-color: #AD918D; }
<div style="background-color:#AD918D">Inner text</div>
This div background color is #AD918D.
.myBorderColor { border: 1px solid #AD918D; }
<div style="border:3px solid #AD918D">Div</div>
This div border color is #AD918D.
.myOpacity80 { color: #AD918D; opacity: 0.8; }
<p style="color:#AD918D;opacity:0.8;">80%</p>
Text with #AD918D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #AD918D;}
<p style="text-shadow: 3px 3px 1px #AD918D">Text here.</p>
This text has shadow with #AD918D color.
.textShadow {text-shadow: 3px 3px 1px #AD918D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #AD918D, 5px 5px 20px red">Text here.</p>
This text has shadow with #AD918D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#AD918D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#AD918D, Direction=45, Strength=4)">Text</p>
This text has shadow with #AD918D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #AD918D; -webkit-box-shadow: 1px 1px 3px 2px #AD918D; box-shadow: 1px 1px 3px 2px #AD918D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #AD918D; -webkit-box-shadow: 1px 1px 3px 2px #AD918D; box-shadow:1px 1px 3px 2px #AD918D;">
Div content here</div>
This text has color #AD918D on black background.
This text has color #AD918D on white background.
This text has black color on #AD918D background.
This text has white color on #AD918D background.