HEX: #AD9E60
RGB: (173,158,96)
#AD9E60 contains mainly red and green colors. Web safe color of #AD9E60 is #999966 (or #996).
#AD9E60 color RGB value is (173,158,96).
RGB: (173,158,96) (68%,62%,38%)
R 173 of 255 = 68%
G 158 of 255 = 62%
B 96 of 255 = 38%
R + G + B ~ 56%. #AD9E60 is middle color (not dark and not light).
R + G + B =
173 + 158 + 96 = 427 (100%)
R 173 of 427 ~ 40.52%
G 158 of 427 ~ 37%
B 96 of 427 ~ 22.48%
#AD9E60 color CMYK value is (0,9,45,32).
CMYK: (0,9,45,32) C0M9Y45K32 (0%,9%,45%,32%) (0.00/0.09/0.45/0.32)
AD | 9E | 60 | |
---|---|---|---|
RGB | 173 | 158 | 96 |
HSL | 48° | 31.95% | 52.75% |
HSB/HSV | 48° | 44.51% | 67.84% |
CMYK | 0.00% | 8.67% | 44.51% |
32.16% |
HEX | AD | 9E | 60 |
Decimal | 173 | 158 | 96 |
Binary | 10101101 | 10011110 | 1100000 |
Octal | 255 | 236 | 140 |
Examples of css and html codes for elements with #AD9E60 color. Also use rgb(173,158,96) instead hex code.
.myTextColor { color: #AD9E60; }
<p style="color:#AD9E60">This sample text font color is #AD9E60.</p>
This text font color is #AD9E60.
.myBgColor { background-color: #AD9E60; }
<div style="background-color:#AD9E60">Inner text</div>
This div background color is #AD9E60.
.myBorderColor { border: 1px solid #AD9E60; }
<div style="border:3px solid #AD9E60">Div</div>
This div border color is #AD9E60.
.myOpacity80 { color: #AD9E60; opacity: 0.8; }
<p style="color:#AD9E60;opacity:0.8;">80%</p>
Text with #AD9E60 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #AD9E60;}
<p style="text-shadow: 3px 3px 1px #AD9E60">Text here.</p>
This text has shadow with #AD9E60 color.
.textShadow {text-shadow: 3px 3px 1px #AD9E60, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #AD9E60, 5px 5px 20px red">Text here.</p>
This text has shadow with #AD9E60 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#AD9E60, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#AD9E60, Direction=45, Strength=4)">Text</p>
This text has shadow with #AD9E60 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #AD9E60; -webkit-box-shadow: 1px 1px 3px 2px #AD9E60; box-shadow: 1px 1px 3px 2px #AD9E60; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #AD9E60; -webkit-box-shadow: 1px 1px 3px 2px #AD9E60; box-shadow:1px 1px 3px 2px #AD9E60;">
Div content here</div>
This text has color #AD9E60 on black background.
This text has color #AD9E60 on white background.
This text has black color on #AD9E60 background.
This text has white color on #AD9E60 background.