HEX: #AEB0BB
RGB: (174,176,187)
#AEB0BB contains red, green and blue colors in about the same proportion. Web safe color of #AEB0BB is #9999CC (or #99C).
#AEB0BB color RGB value is (174,176,187).
RGB: (174,176,187) (68%,69%,73%)
R 174 of 255 = 68%
G 176 of 255 = 69%
B 187 of 255 = 73%
R + G + B ~ 70%. #AEB0BB is quite light color.
R + G + B =
174 + 176 + 187 = 537 (100%)
R 174 of 537 ~ 32.4%
G 176 of 537 ~ 32.77%
B 187 of 537 ~ 34.82%
#AEB0BB color CMYK value is (7,6,0,27).
CMYK: (7,6,0,27) C7M6Y0K27 (7%,6%,0%,27%) (0.07/0.06/0.00/0.27)
AE | B0 | BB | |
---|---|---|---|
RGB | 174 | 176 | 187 |
HSL | 231° | 8.72% | 70.78% |
HSB/HSV | 231° | 6.95% | 73.33% |
CMYK | 6.95% | 5.88% | 0.00% |
26.67% |
HEX | AE | B0 | BB |
Decimal | 174 | 176 | 187 |
Binary | 10101110 | 10110000 | 10111011 |
Octal | 256 | 260 | 273 |
Examples of css and html codes for elements with #AEB0BB color. Also use rgb(174,176,187) instead hex code.
.myTextColor { color: #AEB0BB; }
<p style="color:#AEB0BB">This sample text font color is #AEB0BB.</p>
This text font color is #AEB0BB.
.myBgColor { background-color: #AEB0BB; }
<div style="background-color:#AEB0BB">Inner text</div>
This div background color is #AEB0BB.
.myBorderColor { border: 1px solid #AEB0BB; }
<div style="border:3px solid #AEB0BB">Div</div>
This div border color is #AEB0BB.
.myOpacity80 { color: #AEB0BB; opacity: 0.8; }
<p style="color:#AEB0BB;opacity:0.8;">80%</p>
Text with #AEB0BB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #AEB0BB;}
<p style="text-shadow: 3px 3px 1px #AEB0BB">Text here.</p>
This text has shadow with #AEB0BB color.
.textShadow {text-shadow: 3px 3px 1px #AEB0BB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #AEB0BB, 5px 5px 20px red">Text here.</p>
This text has shadow with #AEB0BB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#AEB0BB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#AEB0BB, Direction=45, Strength=4)">Text</p>
This text has shadow with #AEB0BB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #AEB0BB; -webkit-box-shadow: 1px 1px 3px 2px #AEB0BB; box-shadow: 1px 1px 3px 2px #AEB0BB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #AEB0BB; -webkit-box-shadow: 1px 1px 3px 2px #AEB0BB; box-shadow:1px 1px 3px 2px #AEB0BB;">
Div content here</div>
This text has color #AEB0BB on black background.
This text has color #AEB0BB on white background.
This text has black color on #AEB0BB background.
This text has white color on #AEB0BB background.