HEX: #AEC99B
RGB: (174,201,155)
#AEC99B contains red, green and blue colors in about the same proportion. Web safe color of #AEC99B is #99CC99 (or #9C9).
#AEC99B color RGB value is (174,201,155).
RGB: (174,201,155) (68%,79%,61%)
R 174 of 255 = 68%
G 201 of 255 = 79%
B 155 of 255 = 61%
R + G + B ~ 69%. #AEC99B is quite light color.
R + G + B =
174 + 201 + 155 = 530 (100%)
R 174 of 530 ~ 32.83%
G 201 of 530 ~ 37.92%
B 155 of 530 ~ 29.25%
#AEC99B color CMYK value is (13,0,23,21).
CMYK: (13,0,23,21) C13M0Y23K21 (13%,0%,23%,21%) (0.13/0.00/0.23/0.21)
AE | C9 | 9B | |
---|---|---|---|
RGB | 174 | 201 | 155 |
HSL | 95° | 29.87% | 69.80% |
HSB/HSV | 95° | 22.89% | 78.82% |
CMYK | 13.43% | 0.00% | 22.89% |
21.18% |
HEX | AE | C9 | 9B |
Decimal | 174 | 201 | 155 |
Binary | 10101110 | 11001001 | 10011011 |
Octal | 256 | 311 | 233 |
Examples of css and html codes for elements with #AEC99B color. Also use rgb(174,201,155) instead hex code.
.myTextColor { color: #AEC99B; }
<p style="color:#AEC99B">This sample text font color is #AEC99B.</p>
This text font color is #AEC99B.
.myBgColor { background-color: #AEC99B; }
<div style="background-color:#AEC99B">Inner text</div>
This div background color is #AEC99B.
.myBorderColor { border: 1px solid #AEC99B; }
<div style="border:3px solid #AEC99B">Div</div>
This div border color is #AEC99B.
.myOpacity80 { color: #AEC99B; opacity: 0.8; }
<p style="color:#AEC99B;opacity:0.8;">80%</p>
Text with #AEC99B color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #AEC99B;}
<p style="text-shadow: 3px 3px 1px #AEC99B">Text here.</p>
This text has shadow with #AEC99B color.
.textShadow {text-shadow: 3px 3px 1px #AEC99B, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #AEC99B, 5px 5px 20px red">Text here.</p>
This text has shadow with #AEC99B primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#AEC99B, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#AEC99B, Direction=45, Strength=4)">Text</p>
This text has shadow with #AEC99B and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #AEC99B; -webkit-box-shadow: 1px 1px 3px 2px #AEC99B; box-shadow: 1px 1px 3px 2px #AEC99B; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #AEC99B; -webkit-box-shadow: 1px 1px 3px 2px #AEC99B; box-shadow:1px 1px 3px 2px #AEC99B;">
Div content here</div>
This text has color #AEC99B on black background.
This text has color #AEC99B on white background.
This text has black color on #AEC99B background.
This text has white color on #AEC99B background.