HEX: #AD8997
RGB: (173,137,151)
#AD8997 contains red, green and blue colors in about the same proportion. Web safe color of #AD8997 is #999999 (or #999).
#AD8997 color RGB value is (173,137,151).
RGB: (173,137,151) (68%,54%,59%)
R 173 of 255 = 68%
G 137 of 255 = 54%
B 151 of 255 = 59%
R + G + B ~ 60%. #AD8997 is middle color (not dark and not light).
R + G + B =
173 + 137 + 151 = 461 (100%)
R 173 of 461 ~ 37.53%
G 137 of 461 ~ 29.72%
B 151 of 461 ~ 32.75%
#AD8997 color CMYK value is (0,21,13,32).
CMYK: (0,21,13,32) C0M21Y13K32 (0%,21%,13%,32%) (0.00/0.21/0.13/0.32)
AD | 89 | 97 | |
---|---|---|---|
RGB | 173 | 137 | 151 |
HSL | 337° | 18.00% | 60.78% |
HSB/HSV | 337° | 20.81% | 67.84% |
CMYK | 0.00% | 20.81% | 12.72% |
32.16% |
HEX | AD | 89 | 97 |
Decimal | 173 | 137 | 151 |
Binary | 10101101 | 10001001 | 10010111 |
Octal | 255 | 211 | 227 |
Examples of css and html codes for elements with #AD8997 color. Also use rgb(173,137,151) instead hex code.
.myTextColor { color: #AD8997; }
<p style="color:#AD8997">This sample text font color is #AD8997.</p>
This text font color is #AD8997.
.myBgColor { background-color: #AD8997; }
<div style="background-color:#AD8997">Inner text</div>
This div background color is #AD8997.
.myBorderColor { border: 1px solid #AD8997; }
<div style="border:3px solid #AD8997">Div</div>
This div border color is #AD8997.
.myOpacity80 { color: #AD8997; opacity: 0.8; }
<p style="color:#AD8997;opacity:0.8;">80%</p>
Text with #AD8997 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #AD8997;}
<p style="text-shadow: 3px 3px 1px #AD8997">Text here.</p>
This text has shadow with #AD8997 color.
.textShadow {text-shadow: 3px 3px 1px #AD8997, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #AD8997, 5px 5px 20px red">Text here.</p>
This text has shadow with #AD8997 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#AD8997, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#AD8997, Direction=45, Strength=4)">Text</p>
This text has shadow with #AD8997 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #AD8997; -webkit-box-shadow: 1px 1px 3px 2px #AD8997; box-shadow: 1px 1px 3px 2px #AD8997; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #AD8997; -webkit-box-shadow: 1px 1px 3px 2px #AD8997; box-shadow:1px 1px 3px 2px #AD8997;">
Div content here</div>
This text has color #AD8997 on black background.
This text has color #AD8997 on white background.
This text has black color on #AD8997 background.
This text has white color on #AD8997 background.