HEX: #AEE472
RGB: (174,228,114)
#AEE472 contains mainly red and green colors. Web safe color of #AEE472 is #99CC66 (or #9C6).
#AEE472 color RGB value is (174,228,114).
RGB: (174,228,114) (68%,89%,45%)
R 174 of 255 = 68%
G 228 of 255 = 89%
B 114 of 255 = 45%
R + G + B ~ 67%. #AEE472 is quite light color.
R + G + B =
174 + 228 + 114 = 516 (100%)
R 174 of 516 ~ 33.72%
G 228 of 516 ~ 44.19%
B 114 of 516 ~ 22.09%
#AEE472 color CMYK value is (24,0,50,11).
CMYK: (24,0,50,11) C24M0Y50K11 (24%,0%,50%,11%) (0.24/0.00/0.50/0.11)
AE | E4 | 72 | |
---|---|---|---|
RGB | 174 | 228 | 114 |
HSL | 88° | 67.86% | 67.06% |
HSB/HSV | 88° | 50.00% | 89.41% |
CMYK | 23.68% | 0.00% | 50.00% |
10.59% |
HEX | AE | E4 | 72 |
Decimal | 174 | 228 | 114 |
Binary | 10101110 | 11100100 | 1110010 |
Octal | 256 | 344 | 162 |
Examples of css and html codes for elements with #AEE472 color. Also use rgb(174,228,114) instead hex code.
.myTextColor { color: #AEE472; }
<p style="color:#AEE472">This sample text font color is #AEE472.</p>
This text font color is #AEE472.
.myBgColor { background-color: #AEE472; }
<div style="background-color:#AEE472">Inner text</div>
This div background color is #AEE472.
.myBorderColor { border: 1px solid #AEE472; }
<div style="border:3px solid #AEE472">Div</div>
This div border color is #AEE472.
.myOpacity80 { color: #AEE472; opacity: 0.8; }
<p style="color:#AEE472;opacity:0.8;">80%</p>
Text with #AEE472 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #AEE472;}
<p style="text-shadow: 3px 3px 1px #AEE472">Text here.</p>
This text has shadow with #AEE472 color.
.textShadow {text-shadow: 3px 3px 1px #AEE472, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #AEE472, 5px 5px 20px red">Text here.</p>
This text has shadow with #AEE472 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#AEE472, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#AEE472, Direction=45, Strength=4)">Text</p>
This text has shadow with #AEE472 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #AEE472; -webkit-box-shadow: 1px 1px 3px 2px #AEE472; box-shadow: 1px 1px 3px 2px #AEE472; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #AEE472; -webkit-box-shadow: 1px 1px 3px 2px #AEE472; box-shadow:1px 1px 3px 2px #AEE472;">
Div content here</div>
This text has color #AEE472 on black background.
This text has color #AEE472 on white background.
This text has black color on #AEE472 background.
This text has white color on #AEE472 background.