HEX: #AAB4AD
RGB: (170,180,173)
#AAB4AD contains red, green and blue colors in about the same proportion. Web safe color of #AAB4AD is #99CC99 (or #9C9).
#AAB4AD color RGB value is (170,180,173).
RGB: (170,180,173) (67%,71%,68%)
R 170 of 255 = 67%
G 180 of 255 = 71%
B 173 of 255 = 68%
R + G + B ~ 69%. #AAB4AD is quite light color.
R + G + B =
170 + 180 + 173 = 523 (100%)
R 170 of 523 ~ 32.5%
G 180 of 523 ~ 34.42%
B 173 of 523 ~ 33.08%
#AAB4AD color CMYK value is (6,0,4,29).
CMYK: (6,0,4,29) C6M0Y4K29 (6%,0%,4%,29%) (0.06/0.00/0.04/0.29)
AA | B4 | AD | |
---|---|---|---|
RGB | 170 | 180 | 173 |
HSL | 138° | 6.25% | 68.63% |
HSB/HSV | 138° | 5.56% | 70.59% |
CMYK | 5.56% | 0.00% | 3.89% |
29.41% |
HEX | AA | B4 | AD |
Decimal | 170 | 180 | 173 |
Binary | 10101010 | 10110100 | 10101101 |
Octal | 252 | 264 | 255 |
Examples of css and html codes for elements with #AAB4AD color. Also use rgb(170,180,173) instead hex code.
.myTextColor { color: #AAB4AD; }
<p style="color:#AAB4AD">This sample text font color is #AAB4AD.</p>
This text font color is #AAB4AD.
.myBgColor { background-color: #AAB4AD; }
<div style="background-color:#AAB4AD">Inner text</div>
This div background color is #AAB4AD.
.myBorderColor { border: 1px solid #AAB4AD; }
<div style="border:3px solid #AAB4AD">Div</div>
This div border color is #AAB4AD.
.myOpacity80 { color: #AAB4AD; opacity: 0.8; }
<p style="color:#AAB4AD;opacity:0.8;">80%</p>
Text with #AAB4AD color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #AAB4AD;}
<p style="text-shadow: 3px 3px 1px #AAB4AD">Text here.</p>
This text has shadow with #AAB4AD color.
.textShadow {text-shadow: 3px 3px 1px #AAB4AD, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #AAB4AD, 5px 5px 20px red">Text here.</p>
This text has shadow with #AAB4AD primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#AAB4AD, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#AAB4AD, Direction=45, Strength=4)">Text</p>
This text has shadow with #AAB4AD and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #AAB4AD; -webkit-box-shadow: 1px 1px 3px 2px #AAB4AD; box-shadow: 1px 1px 3px 2px #AAB4AD; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #AAB4AD; -webkit-box-shadow: 1px 1px 3px 2px #AAB4AD; box-shadow:1px 1px 3px 2px #AAB4AD;">
Div content here</div>
This text has color #AAB4AD on black background.
This text has color #AAB4AD on white background.
This text has black color on #AAB4AD background.
This text has white color on #AAB4AD background.