HEX: #AEE84D
RGB: (174,232,77)
#AEE84D contains mainly red and green colors. Web safe color of #AEE84D is #99FF33 (or #9F3).
#AEE84D color RGB value is (174,232,77).
RGB: (174,232,77) (68%,91%,30%)
R 174 of 255 = 68%
G 232 of 255 = 91%
B 77 of 255 = 30%
R + G + B ~ 63%. #AEE84D is quite light color.
R + G + B =
174 + 232 + 77 = 483 (100%)
R 174 of 483 ~ 36.02%
G 232 of 483 ~ 48.03%
B 77 of 483 ~ 15.94%
#AEE84D color CMYK value is (25,0,67,9).
CMYK: (25,0,67,9) C25M0Y67K9 (25%,0%,67%,9%) (0.25/0.00/0.67/0.09)
AE | E8 | 4D | |
---|---|---|---|
RGB | 174 | 232 | 77 |
HSL | 82° | 77.11% | 60.59% |
HSB/HSV | 82° | 66.81% | 90.98% |
CMYK | 25.00% | 0.00% | 66.81% |
9.02% |
HEX | AE | E8 | 4D |
Decimal | 174 | 232 | 77 |
Binary | 10101110 | 11101000 | 1001101 |
Octal | 256 | 350 | 115 |
Examples of css and html codes for elements with #AEE84D color. Also use rgb(174,232,77) instead hex code.
.myTextColor { color: #AEE84D; }
<p style="color:#AEE84D">This sample text font color is #AEE84D.</p>
This text font color is #AEE84D.
.myBgColor { background-color: #AEE84D; }
<div style="background-color:#AEE84D">Inner text</div>
This div background color is #AEE84D.
.myBorderColor { border: 1px solid #AEE84D; }
<div style="border:3px solid #AEE84D">Div</div>
This div border color is #AEE84D.
.myOpacity80 { color: #AEE84D; opacity: 0.8; }
<p style="color:#AEE84D;opacity:0.8;">80%</p>
Text with #AEE84D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #AEE84D;}
<p style="text-shadow: 3px 3px 1px #AEE84D">Text here.</p>
This text has shadow with #AEE84D color.
.textShadow {text-shadow: 3px 3px 1px #AEE84D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #AEE84D, 5px 5px 20px red">Text here.</p>
This text has shadow with #AEE84D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#AEE84D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#AEE84D, Direction=45, Strength=4)">Text</p>
This text has shadow with #AEE84D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #AEE84D; -webkit-box-shadow: 1px 1px 3px 2px #AEE84D; box-shadow: 1px 1px 3px 2px #AEE84D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #AEE84D; -webkit-box-shadow: 1px 1px 3px 2px #AEE84D; box-shadow:1px 1px 3px 2px #AEE84D;">
Div content here</div>
This text has color #AEE84D on black background.
This text has color #AEE84D on white background.
This text has black color on #AEE84D background.
This text has white color on #AEE84D background.