HEX: #AEB3BD
RGB: (174,179,189)
#AEB3BD contains red, green and blue colors in about the same proportion. Web safe color of #AEB3BD is #9999CC (or #99C).
#AEB3BD color RGB value is (174,179,189).
RGB: (174,179,189) (68%,70%,74%)
R 174 of 255 = 68%
G 179 of 255 = 70%
B 189 of 255 = 74%
R + G + B ~ 71%. #AEB3BD is quite light color.
R + G + B =
174 + 179 + 189 = 542 (100%)
R 174 of 542 ~ 32.1%
G 179 of 542 ~ 33.03%
B 189 of 542 ~ 34.87%
#AEB3BD color CMYK value is (8,5,0,26).
CMYK: (8,5,0,26) C8M5Y0K26 (8%,5%,0%,26%) (0.08/0.05/0.00/0.26)
AE | B3 | BD | |
---|---|---|---|
RGB | 174 | 179 | 189 |
HSL | 220° | 10.20% | 71.18% |
HSB/HSV | 220° | 7.94% | 74.12% |
CMYK | 7.94% | 5.29% | 0.00% |
25.88% |
HEX | AE | B3 | BD |
Decimal | 174 | 179 | 189 |
Binary | 10101110 | 10110011 | 10111101 |
Octal | 256 | 263 | 275 |
Examples of css and html codes for elements with #AEB3BD color. Also use rgb(174,179,189) instead hex code.
.myTextColor { color: #AEB3BD; }
<p style="color:#AEB3BD">This sample text font color is #AEB3BD.</p>
This text font color is #AEB3BD.
.myBgColor { background-color: #AEB3BD; }
<div style="background-color:#AEB3BD">Inner text</div>
This div background color is #AEB3BD.
.myBorderColor { border: 1px solid #AEB3BD; }
<div style="border:3px solid #AEB3BD">Div</div>
This div border color is #AEB3BD.
.myOpacity80 { color: #AEB3BD; opacity: 0.8; }
<p style="color:#AEB3BD;opacity:0.8;">80%</p>
Text with #AEB3BD color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #AEB3BD;}
<p style="text-shadow: 3px 3px 1px #AEB3BD">Text here.</p>
This text has shadow with #AEB3BD color.
.textShadow {text-shadow: 3px 3px 1px #AEB3BD, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #AEB3BD, 5px 5px 20px red">Text here.</p>
This text has shadow with #AEB3BD primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#AEB3BD, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#AEB3BD, Direction=45, Strength=4)">Text</p>
This text has shadow with #AEB3BD and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #AEB3BD; -webkit-box-shadow: 1px 1px 3px 2px #AEB3BD; box-shadow: 1px 1px 3px 2px #AEB3BD; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #AEB3BD; -webkit-box-shadow: 1px 1px 3px 2px #AEB3BD; box-shadow:1px 1px 3px 2px #AEB3BD;">
Div content here</div>
This text has color #AEB3BD on black background.
This text has color #AEB3BD on white background.
This text has black color on #AEB3BD background.
This text has white color on #AEB3BD background.