HEX: #AEB4AB
RGB: (174,180,171)
#AEB4AB contains red, green and blue colors in about the same proportion. Web safe color of #AEB4AB is #99CC99 (or #9C9).
#AEB4AB color RGB value is (174,180,171).
RGB: (174,180,171) (68%,71%,67%)
R 174 of 255 = 68%
G 180 of 255 = 71%
B 171 of 255 = 67%
R + G + B ~ 69%. #AEB4AB is quite light color.
R + G + B =
174 + 180 + 171 = 525 (100%)
R 174 of 525 ~ 33.14%
G 180 of 525 ~ 34.29%
B 171 of 525 ~ 32.57%
#AEB4AB color CMYK value is (3,0,5,29).
CMYK: (3,0,5,29) C3M0Y5K29 (3%,0%,5%,29%) (0.03/0.00/0.05/0.29)
AE | B4 | AB | |
---|---|---|---|
RGB | 174 | 180 | 171 |
HSL | 100° | 5.66% | 68.82% |
HSB/HSV | 100° | 5.00% | 70.59% |
CMYK | 3.33% | 0.00% | 5.00% |
29.41% |
HEX | AE | B4 | AB |
Decimal | 174 | 180 | 171 |
Binary | 10101110 | 10110100 | 10101011 |
Octal | 256 | 264 | 253 |
Examples of css and html codes for elements with #AEB4AB color. Also use rgb(174,180,171) instead hex code.
.myTextColor { color: #AEB4AB; }
<p style="color:#AEB4AB">This sample text font color is #AEB4AB.</p>
This text font color is #AEB4AB.
.myBgColor { background-color: #AEB4AB; }
<div style="background-color:#AEB4AB">Inner text</div>
This div background color is #AEB4AB.
.myBorderColor { border: 1px solid #AEB4AB; }
<div style="border:3px solid #AEB4AB">Div</div>
This div border color is #AEB4AB.
.myOpacity80 { color: #AEB4AB; opacity: 0.8; }
<p style="color:#AEB4AB;opacity:0.8;">80%</p>
Text with #AEB4AB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #AEB4AB;}
<p style="text-shadow: 3px 3px 1px #AEB4AB">Text here.</p>
This text has shadow with #AEB4AB color.
.textShadow {text-shadow: 3px 3px 1px #AEB4AB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #AEB4AB, 5px 5px 20px red">Text here.</p>
This text has shadow with #AEB4AB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#AEB4AB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#AEB4AB, Direction=45, Strength=4)">Text</p>
This text has shadow with #AEB4AB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #AEB4AB; -webkit-box-shadow: 1px 1px 3px 2px #AEB4AB; box-shadow: 1px 1px 3px 2px #AEB4AB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #AEB4AB; -webkit-box-shadow: 1px 1px 3px 2px #AEB4AB; box-shadow:1px 1px 3px 2px #AEB4AB;">
Div content here</div>
This text has color #AEB4AB on black background.
This text has color #AEB4AB on white background.
This text has black color on #AEB4AB background.
This text has white color on #AEB4AB background.