HEX: #ADABB5
RGB: (173,171,181)
#ADABB5 contains red, green and blue colors in about the same proportion. Web safe color of #ADABB5 is #9999CC (or #99C).
#ADABB5 color RGB value is (173,171,181).
RGB: (173,171,181) (68%,67%,71%)
R 173 of 255 = 68%
G 171 of 255 = 67%
B 181 of 255 = 71%
R + G + B ~ 69%. #ADABB5 is quite light color.
R + G + B =
173 + 171 + 181 = 525 (100%)
R 173 of 525 ~ 32.95%
G 171 of 525 ~ 32.57%
B 181 of 525 ~ 34.48%
#ADABB5 color CMYK value is (4,6,0,29).
CMYK: (4,6,0,29) C4M6Y0K29 (4%,6%,0%,29%) (0.04/0.06/0.00/0.29)
AD | AB | B5 | |
---|---|---|---|
RGB | 173 | 171 | 181 |
HSL | 252° | 6.33% | 69.02% |
HSB/HSV | 252° | 5.52% | 70.98% |
CMYK | 4.42% | 5.52% | 0.00% |
29.02% |
HEX | AD | AB | B5 |
Decimal | 173 | 171 | 181 |
Binary | 10101101 | 10101011 | 10110101 |
Octal | 255 | 253 | 265 |
Examples of css and html codes for elements with #ADABB5 color. Also use rgb(173,171,181) instead hex code.
.myTextColor { color: #ADABB5; }
<p style="color:#ADABB5">This sample text font color is #ADABB5.</p>
This text font color is #ADABB5.
.myBgColor { background-color: #ADABB5; }
<div style="background-color:#ADABB5">Inner text</div>
This div background color is #ADABB5.
.myBorderColor { border: 1px solid #ADABB5; }
<div style="border:3px solid #ADABB5">Div</div>
This div border color is #ADABB5.
.myOpacity80 { color: #ADABB5; opacity: 0.8; }
<p style="color:#ADABB5;opacity:0.8;">80%</p>
Text with #ADABB5 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #ADABB5;}
<p style="text-shadow: 3px 3px 1px #ADABB5">Text here.</p>
This text has shadow with #ADABB5 color.
.textShadow {text-shadow: 3px 3px 1px #ADABB5, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #ADABB5, 5px 5px 20px red">Text here.</p>
This text has shadow with #ADABB5 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#ADABB5, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#ADABB5, Direction=45, Strength=4)">Text</p>
This text has shadow with #ADABB5 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #ADABB5; -webkit-box-shadow: 1px 1px 3px 2px #ADABB5; box-shadow: 1px 1px 3px 2px #ADABB5; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #ADABB5; -webkit-box-shadow: 1px 1px 3px 2px #ADABB5; box-shadow:1px 1px 3px 2px #ADABB5;">
Div content here</div>
This text has color #ADABB5 on black background.
This text has color #ADABB5 on white background.
This text has black color on #ADABB5 background.
This text has white color on #ADABB5 background.