HEX: #AEC88E
RGB: (174,200,142)
#AEC88E contains red, green and blue colors in about the same proportion. Web safe color of #AEC88E is #99CC99 (or #9C9).
#AEC88E color RGB value is (174,200,142).
RGB: (174,200,142) (68%,78%,56%)
R 174 of 255 = 68%
G 200 of 255 = 78%
B 142 of 255 = 56%
R + G + B ~ 67%. #AEC88E is quite light color.
R + G + B =
174 + 200 + 142 = 516 (100%)
R 174 of 516 ~ 33.72%
G 200 of 516 ~ 38.76%
B 142 of 516 ~ 27.52%
#AEC88E color CMYK value is (13,0,29,22).
CMYK: (13,0,29,22) C13M0Y29K22 (13%,0%,29%,22%) (0.13/0.00/0.29/0.22)
AE | C8 | 8E | |
---|---|---|---|
RGB | 174 | 200 | 142 |
HSL | 87° | 34.52% | 67.06% |
HSB/HSV | 87° | 29.00% | 78.43% |
CMYK | 13.00% | 0.00% | 29.00% |
21.57% |
HEX | AE | C8 | 8E |
Decimal | 174 | 200 | 142 |
Binary | 10101110 | 11001000 | 10001110 |
Octal | 256 | 310 | 216 |
Examples of css and html codes for elements with #AEC88E color. Also use rgb(174,200,142) instead hex code.
.myTextColor { color: #AEC88E; }
<p style="color:#AEC88E">This sample text font color is #AEC88E.</p>
This text font color is #AEC88E.
.myBgColor { background-color: #AEC88E; }
<div style="background-color:#AEC88E">Inner text</div>
This div background color is #AEC88E.
.myBorderColor { border: 1px solid #AEC88E; }
<div style="border:3px solid #AEC88E">Div</div>
This div border color is #AEC88E.
.myOpacity80 { color: #AEC88E; opacity: 0.8; }
<p style="color:#AEC88E;opacity:0.8;">80%</p>
Text with #AEC88E color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #AEC88E;}
<p style="text-shadow: 3px 3px 1px #AEC88E">Text here.</p>
This text has shadow with #AEC88E color.
.textShadow {text-shadow: 3px 3px 1px #AEC88E, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #AEC88E, 5px 5px 20px red">Text here.</p>
This text has shadow with #AEC88E primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#AEC88E, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#AEC88E, Direction=45, Strength=4)">Text</p>
This text has shadow with #AEC88E and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #AEC88E; -webkit-box-shadow: 1px 1px 3px 2px #AEC88E; box-shadow: 1px 1px 3px 2px #AEC88E; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #AEC88E; -webkit-box-shadow: 1px 1px 3px 2px #AEC88E; box-shadow:1px 1px 3px 2px #AEC88E;">
Div content here</div>
This text has color #AEC88E on black background.
This text has color #AEC88E on white background.
This text has black color on #AEC88E background.
This text has white color on #AEC88E background.