HEX: #AD9983
RGB: (173,153,131)
#AD9983 contains red, green and blue colors in about the same proportion. Web safe color of #AD9983 is #999999 (or #999).
#AD9983 color RGB value is (173,153,131).
RGB: (173,153,131) (68%,60%,51%)
R 173 of 255 = 68%
G 153 of 255 = 60%
B 131 of 255 = 51%
R + G + B ~ 60%. #AD9983 is middle color (not dark and not light).
R + G + B =
173 + 153 + 131 = 457 (100%)
R 173 of 457 ~ 37.86%
G 153 of 457 ~ 33.48%
B 131 of 457 ~ 28.67%
#AD9983 color CMYK value is (0,12,24,32).
CMYK: (0,12,24,32) C0M12Y24K32 (0%,12%,24%,32%) (0.00/0.12/0.24/0.32)
AD | 99 | 83 | |
---|---|---|---|
RGB | 173 | 153 | 131 |
HSL | 31° | 20.39% | 59.61% |
HSB/HSV | 31° | 24.28% | 67.84% |
CMYK | 0.00% | 11.56% | 24.28% |
32.16% |
HEX | AD | 99 | 83 |
Decimal | 173 | 153 | 131 |
Binary | 10101101 | 10011001 | 10000011 |
Octal | 255 | 231 | 203 |
Examples of css and html codes for elements with #AD9983 color. Also use rgb(173,153,131) instead hex code.
.myTextColor { color: #AD9983; }
<p style="color:#AD9983">This sample text font color is #AD9983.</p>
This text font color is #AD9983.
.myBgColor { background-color: #AD9983; }
<div style="background-color:#AD9983">Inner text</div>
This div background color is #AD9983.
.myBorderColor { border: 1px solid #AD9983; }
<div style="border:3px solid #AD9983">Div</div>
This div border color is #AD9983.
.myOpacity80 { color: #AD9983; opacity: 0.8; }
<p style="color:#AD9983;opacity:0.8;">80%</p>
Text with #AD9983 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #AD9983;}
<p style="text-shadow: 3px 3px 1px #AD9983">Text here.</p>
This text has shadow with #AD9983 color.
.textShadow {text-shadow: 3px 3px 1px #AD9983, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #AD9983, 5px 5px 20px red">Text here.</p>
This text has shadow with #AD9983 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#AD9983, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#AD9983, Direction=45, Strength=4)">Text</p>
This text has shadow with #AD9983 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #AD9983; -webkit-box-shadow: 1px 1px 3px 2px #AD9983; box-shadow: 1px 1px 3px 2px #AD9983; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #AD9983; -webkit-box-shadow: 1px 1px 3px 2px #AD9983; box-shadow:1px 1px 3px 2px #AD9983;">
Div content here</div>
This text has color #AD9983 on black background.
This text has color #AD9983 on white background.
This text has black color on #AD9983 background.
This text has white color on #AD9983 background.