HEX: #AEB2AF
RGB: (174,178,175)
#AEB2AF contains red, green and blue colors in about the same proportion. Web safe color of #AEB2AF is #999999 (or #999).
#AEB2AF color RGB value is (174,178,175).
RGB: (174,178,175) (68%,70%,69%)
R 174 of 255 = 68%
G 178 of 255 = 70%
B 175 of 255 = 69%
R + G + B ~ 69%. #AEB2AF is quite light color.
R + G + B =
174 + 178 + 175 = 527 (100%)
R 174 of 527 ~ 33.02%
G 178 of 527 ~ 33.78%
B 175 of 527 ~ 33.21%
#AEB2AF color CMYK value is (2,0,2,30).
CMYK: (2,0,2,30) C2M0Y2K30 (2%,0%,2%,30%) (0.02/0.00/0.02/0.30)
AE | B2 | AF | |
---|---|---|---|
RGB | 174 | 178 | 175 |
HSL | 135° | 2.53% | 69.02% |
HSB/HSV | 135° | 2.25% | 69.80% |
CMYK | 2.25% | 0.00% | 1.69% |
30.20% |
HEX | AE | B2 | AF |
Decimal | 174 | 178 | 175 |
Binary | 10101110 | 10110010 | 10101111 |
Octal | 256 | 262 | 257 |
Examples of css and html codes for elements with #AEB2AF color. Also use rgb(174,178,175) instead hex code.
.myTextColor { color: #AEB2AF; }
<p style="color:#AEB2AF">This sample text font color is #AEB2AF.</p>
This text font color is #AEB2AF.
.myBgColor { background-color: #AEB2AF; }
<div style="background-color:#AEB2AF">Inner text</div>
This div background color is #AEB2AF.
.myBorderColor { border: 1px solid #AEB2AF; }
<div style="border:3px solid #AEB2AF">Div</div>
This div border color is #AEB2AF.
.myOpacity80 { color: #AEB2AF; opacity: 0.8; }
<p style="color:#AEB2AF;opacity:0.8;">80%</p>
Text with #AEB2AF color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #AEB2AF;}
<p style="text-shadow: 3px 3px 1px #AEB2AF">Text here.</p>
This text has shadow with #AEB2AF color.
.textShadow {text-shadow: 3px 3px 1px #AEB2AF, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #AEB2AF, 5px 5px 20px red">Text here.</p>
This text has shadow with #AEB2AF primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#AEB2AF, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#AEB2AF, Direction=45, Strength=4)">Text</p>
This text has shadow with #AEB2AF and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #AEB2AF; -webkit-box-shadow: 1px 1px 3px 2px #AEB2AF; box-shadow: 1px 1px 3px 2px #AEB2AF; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #AEB2AF; -webkit-box-shadow: 1px 1px 3px 2px #AEB2AF; box-shadow:1px 1px 3px 2px #AEB2AF;">
Div content here</div>
This text has color #AEB2AF on black background.
This text has color #AEB2AF on white background.
This text has black color on #AEB2AF background.
This text has white color on #AEB2AF background.