HEX: #AD857D
RGB: (173,133,125)
#AD857D contains red, green and blue colors in about the same proportion. Web safe color of #AD857D is #999966 (or #996).
#AD857D color RGB value is (173,133,125).
RGB: (173,133,125) (68%,52%,49%)
R 173 of 255 = 68%
G 133 of 255 = 52%
B 125 of 255 = 49%
R + G + B ~ 56%. #AD857D is middle color (not dark and not light).
R + G + B =
173 + 133 + 125 = 431 (100%)
R 173 of 431 ~ 40.14%
G 133 of 431 ~ 30.86%
B 125 of 431 ~ 29%
#AD857D color CMYK value is (0,23,28,32).
CMYK: (0,23,28,32) C0M23Y28K32 (0%,23%,28%,32%) (0.00/0.23/0.28/0.32)
AD | 85 | 7D | |
---|---|---|---|
RGB | 173 | 133 | 125 |
HSL | 10° | 22.64% | 58.43% |
HSB/HSV | 10° | 27.75% | 67.84% |
CMYK | 0.00% | 23.12% | 27.75% |
32.16% |
HEX | AD | 85 | 7D |
Decimal | 173 | 133 | 125 |
Binary | 10101101 | 10000101 | 1111101 |
Octal | 255 | 205 | 175 |
Examples of css and html codes for elements with #AD857D color. Also use rgb(173,133,125) instead hex code.
.myTextColor { color: #AD857D; }
<p style="color:#AD857D">This sample text font color is #AD857D.</p>
This text font color is #AD857D.
.myBgColor { background-color: #AD857D; }
<div style="background-color:#AD857D">Inner text</div>
This div background color is #AD857D.
.myBorderColor { border: 1px solid #AD857D; }
<div style="border:3px solid #AD857D">Div</div>
This div border color is #AD857D.
.myOpacity80 { color: #AD857D; opacity: 0.8; }
<p style="color:#AD857D;opacity:0.8;">80%</p>
Text with #AD857D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #AD857D;}
<p style="text-shadow: 3px 3px 1px #AD857D">Text here.</p>
This text has shadow with #AD857D color.
.textShadow {text-shadow: 3px 3px 1px #AD857D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #AD857D, 5px 5px 20px red">Text here.</p>
This text has shadow with #AD857D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#AD857D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#AD857D, Direction=45, Strength=4)">Text</p>
This text has shadow with #AD857D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #AD857D; -webkit-box-shadow: 1px 1px 3px 2px #AD857D; box-shadow: 1px 1px 3px 2px #AD857D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #AD857D; -webkit-box-shadow: 1px 1px 3px 2px #AD857D; box-shadow:1px 1px 3px 2px #AD857D;">
Div content here</div>
This text has color #AD857D on black background.
This text has color #AD857D on white background.
This text has black color on #AD857D background.
This text has white color on #AD857D background.