HEX: #AEC53D
RGB: (174,197,61)
#AEC53D contains mainly red and green colors. Web safe color of #AEC53D is #99CC33 (or #9C3).
#AEC53D color RGB value is (174,197,61).
RGB: (174,197,61) (68%,77%,24%)
R 174 of 255 = 68%
G 197 of 255 = 77%
B 61 of 255 = 24%
R + G + B ~ 56%. #AEC53D is middle color (not dark and not light).
R + G + B =
174 + 197 + 61 = 432 (100%)
R 174 of 432 ~ 40.28%
G 197 of 432 ~ 45.6%
B 61 of 432 ~ 14.12%
#AEC53D color CMYK value is (12,0,69,23).
CMYK: (12,0,69,23) C12M0Y69K23 (12%,0%,69%,23%) (0.12/0.00/0.69/0.23)
AE | C5 | 3D | |
---|---|---|---|
RGB | 174 | 197 | 61 |
HSL | 70° | 53.97% | 50.59% |
HSB/HSV | 70° | 69.04% | 77.25% |
CMYK | 11.68% | 0.00% | 69.04% |
22.75% |
HEX | AE | C5 | 3D |
Decimal | 174 | 197 | 61 |
Binary | 10101110 | 11000101 | 111101 |
Octal | 256 | 305 | 75 |
Examples of css and html codes for elements with #AEC53D color. Also use rgb(174,197,61) instead hex code.
.myTextColor { color: #AEC53D; }
<p style="color:#AEC53D">This sample text font color is #AEC53D.</p>
This text font color is #AEC53D.
.myBgColor { background-color: #AEC53D; }
<div style="background-color:#AEC53D">Inner text</div>
This div background color is #AEC53D.
.myBorderColor { border: 1px solid #AEC53D; }
<div style="border:3px solid #AEC53D">Div</div>
This div border color is #AEC53D.
.myOpacity80 { color: #AEC53D; opacity: 0.8; }
<p style="color:#AEC53D;opacity:0.8;">80%</p>
Text with #AEC53D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #AEC53D;}
<p style="text-shadow: 3px 3px 1px #AEC53D">Text here.</p>
This text has shadow with #AEC53D color.
.textShadow {text-shadow: 3px 3px 1px #AEC53D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #AEC53D, 5px 5px 20px red">Text here.</p>
This text has shadow with #AEC53D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#AEC53D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#AEC53D, Direction=45, Strength=4)">Text</p>
This text has shadow with #AEC53D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #AEC53D; -webkit-box-shadow: 1px 1px 3px 2px #AEC53D; box-shadow: 1px 1px 3px 2px #AEC53D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #AEC53D; -webkit-box-shadow: 1px 1px 3px 2px #AEC53D; box-shadow:1px 1px 3px 2px #AEC53D;">
Div content here</div>
This text has color #AEC53D on black background.
This text has color #AEC53D on white background.
This text has black color on #AEC53D background.
This text has white color on #AEC53D background.