HEX: #ADB998
RGB: (173,185,152)
#ADB998 contains red, green and blue colors in about the same proportion. Web safe color of #ADB998 is #99CC99 (or #9C9).
#ADB998 color RGB value is (173,185,152).
RGB: (173,185,152) (68%,73%,60%)
R 173 of 255 = 68%
G 185 of 255 = 73%
B 152 of 255 = 60%
R + G + B ~ 67%. #ADB998 is quite light color.
R + G + B =
173 + 185 + 152 = 510 (100%)
R 173 of 510 ~ 33.92%
G 185 of 510 ~ 36.27%
B 152 of 510 ~ 29.8%
#ADB998 color CMYK value is (6,0,18,27).
CMYK: (6,0,18,27) C6M0Y18K27 (6%,0%,18%,27%) (0.06/0.00/0.18/0.27)
AD | B9 | 98 | |
---|---|---|---|
RGB | 173 | 185 | 152 |
HSL | 82° | 19.08% | 66.08% |
HSB/HSV | 82° | 17.84% | 72.55% |
CMYK | 6.49% | 0.00% | 17.84% |
27.45% |
HEX | AD | B9 | 98 |
Decimal | 173 | 185 | 152 |
Binary | 10101101 | 10111001 | 10011000 |
Octal | 255 | 271 | 230 |
Examples of css and html codes for elements with #ADB998 color. Also use rgb(173,185,152) instead hex code.
.myTextColor { color: #ADB998; }
<p style="color:#ADB998">This sample text font color is #ADB998.</p>
This text font color is #ADB998.
.myBgColor { background-color: #ADB998; }
<div style="background-color:#ADB998">Inner text</div>
This div background color is #ADB998.
.myBorderColor { border: 1px solid #ADB998; }
<div style="border:3px solid #ADB998">Div</div>
This div border color is #ADB998.
.myOpacity80 { color: #ADB998; opacity: 0.8; }
<p style="color:#ADB998;opacity:0.8;">80%</p>
Text with #ADB998 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #ADB998;}
<p style="text-shadow: 3px 3px 1px #ADB998">Text here.</p>
This text has shadow with #ADB998 color.
.textShadow {text-shadow: 3px 3px 1px #ADB998, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #ADB998, 5px 5px 20px red">Text here.</p>
This text has shadow with #ADB998 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#ADB998, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#ADB998, Direction=45, Strength=4)">Text</p>
This text has shadow with #ADB998 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #ADB998; -webkit-box-shadow: 1px 1px 3px 2px #ADB998; box-shadow: 1px 1px 3px 2px #ADB998; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #ADB998; -webkit-box-shadow: 1px 1px 3px 2px #ADB998; box-shadow:1px 1px 3px 2px #ADB998;">
Div content here</div>
This text has color #ADB998 on black background.
This text has color #ADB998 on white background.
This text has black color on #ADB998 background.
This text has white color on #ADB998 background.