HEX: #AEBEB5
RGB: (174,190,181)
#AEBEB5 contains red, green and blue colors in about the same proportion. Web safe color of #AEBEB5 is #99CCCC (or #9CC).
#AEBEB5 color RGB value is (174,190,181).
RGB: (174,190,181) (68%,75%,71%)
R 174 of 255 = 68%
G 190 of 255 = 75%
B 181 of 255 = 71%
R + G + B ~ 71%. #AEBEB5 is quite light color.
R + G + B =
174 + 190 + 181 = 545 (100%)
R 174 of 545 ~ 31.93%
G 190 of 545 ~ 34.86%
B 181 of 545 ~ 33.21%
#AEBEB5 color CMYK value is (8,0,5,25).
CMYK: (8,0,5,25) C8M0Y5K25 (8%,0%,5%,25%) (0.08/0.00/0.05/0.25)
AE | BE | B5 | |
---|---|---|---|
RGB | 174 | 190 | 181 |
HSL | 146° | 10.96% | 71.37% |
HSB/HSV | 146° | 8.42% | 74.51% |
CMYK | 8.42% | 0.00% | 4.74% |
25.49% |
HEX | AE | BE | B5 |
Decimal | 174 | 190 | 181 |
Binary | 10101110 | 10111110 | 10110101 |
Octal | 256 | 276 | 265 |
Examples of css and html codes for elements with #AEBEB5 color. Also use rgb(174,190,181) instead hex code.
.myTextColor { color: #AEBEB5; }
<p style="color:#AEBEB5">This sample text font color is #AEBEB5.</p>
This text font color is #AEBEB5.
.myBgColor { background-color: #AEBEB5; }
<div style="background-color:#AEBEB5">Inner text</div>
This div background color is #AEBEB5.
.myBorderColor { border: 1px solid #AEBEB5; }
<div style="border:3px solid #AEBEB5">Div</div>
This div border color is #AEBEB5.
.myOpacity80 { color: #AEBEB5; opacity: 0.8; }
<p style="color:#AEBEB5;opacity:0.8;">80%</p>
Text with #AEBEB5 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #AEBEB5;}
<p style="text-shadow: 3px 3px 1px #AEBEB5">Text here.</p>
This text has shadow with #AEBEB5 color.
.textShadow {text-shadow: 3px 3px 1px #AEBEB5, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #AEBEB5, 5px 5px 20px red">Text here.</p>
This text has shadow with #AEBEB5 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#AEBEB5, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#AEBEB5, Direction=45, Strength=4)">Text</p>
This text has shadow with #AEBEB5 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #AEBEB5; -webkit-box-shadow: 1px 1px 3px 2px #AEBEB5; box-shadow: 1px 1px 3px 2px #AEBEB5; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #AEBEB5; -webkit-box-shadow: 1px 1px 3px 2px #AEBEB5; box-shadow:1px 1px 3px 2px #AEBEB5;">
Div content here</div>
This text has color #AEBEB5 on black background.
This text has color #AEBEB5 on white background.
This text has black color on #AEBEB5 background.
This text has white color on #AEBEB5 background.