HEX: #ADBDA6
RGB: (173,189,166)
#ADBDA6 contains red, green and blue colors in about the same proportion. Web safe color of #ADBDA6 is #99CC99 (or #9C9).
#ADBDA6 color RGB value is (173,189,166).
RGB: (173,189,166) (68%,74%,65%)
R 173 of 255 = 68%
G 189 of 255 = 74%
B 166 of 255 = 65%
R + G + B ~ 69%. #ADBDA6 is quite light color.
R + G + B =
173 + 189 + 166 = 528 (100%)
R 173 of 528 ~ 32.77%
G 189 of 528 ~ 35.8%
B 166 of 528 ~ 31.44%
#ADBDA6 color CMYK value is (8,0,12,26).
CMYK: (8,0,12,26) C8M0Y12K26 (8%,0%,12%,26%) (0.08/0.00/0.12/0.26)
AD | BD | A6 | |
---|---|---|---|
RGB | 173 | 189 | 166 |
HSL | 102° | 14.84% | 69.61% |
HSB/HSV | 102° | 12.17% | 74.12% |
CMYK | 8.47% | 0.00% | 12.17% |
25.88% |
HEX | AD | BD | A6 |
Decimal | 173 | 189 | 166 |
Binary | 10101101 | 10111101 | 10100110 |
Octal | 255 | 275 | 246 |
Examples of css and html codes for elements with #ADBDA6 color. Also use rgb(173,189,166) instead hex code.
.myTextColor { color: #ADBDA6; }
<p style="color:#ADBDA6">This sample text font color is #ADBDA6.</p>
This text font color is #ADBDA6.
.myBgColor { background-color: #ADBDA6; }
<div style="background-color:#ADBDA6">Inner text</div>
This div background color is #ADBDA6.
.myBorderColor { border: 1px solid #ADBDA6; }
<div style="border:3px solid #ADBDA6">Div</div>
This div border color is #ADBDA6.
.myOpacity80 { color: #ADBDA6; opacity: 0.8; }
<p style="color:#ADBDA6;opacity:0.8;">80%</p>
Text with #ADBDA6 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #ADBDA6;}
<p style="text-shadow: 3px 3px 1px #ADBDA6">Text here.</p>
This text has shadow with #ADBDA6 color.
.textShadow {text-shadow: 3px 3px 1px #ADBDA6, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #ADBDA6, 5px 5px 20px red">Text here.</p>
This text has shadow with #ADBDA6 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#ADBDA6, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#ADBDA6, Direction=45, Strength=4)">Text</p>
This text has shadow with #ADBDA6 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #ADBDA6; -webkit-box-shadow: 1px 1px 3px 2px #ADBDA6; box-shadow: 1px 1px 3px 2px #ADBDA6; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #ADBDA6; -webkit-box-shadow: 1px 1px 3px 2px #ADBDA6; box-shadow:1px 1px 3px 2px #ADBDA6;">
Div content here</div>
This text has color #ADBDA6 on black background.
This text has color #ADBDA6 on white background.
This text has black color on #ADBDA6 background.
This text has white color on #ADBDA6 background.