HEX: #AEE180
RGB: (174,225,128)
#AEE180 contains mainly red and green colors. Web safe color of #AEE180 is #99CC66 (or #9C6).
#AEE180 color RGB value is (174,225,128).
RGB: (174,225,128) (68%,88%,50%)
R 174 of 255 = 68%
G 225 of 255 = 88%
B 128 of 255 = 50%
R + G + B ~ 69%. #AEE180 is quite light color.
R + G + B =
174 + 225 + 128 = 527 (100%)
R 174 of 527 ~ 33.02%
G 225 of 527 ~ 42.69%
B 128 of 527 ~ 24.29%
#AEE180 color CMYK value is (23,0,43,12).
CMYK: (23,0,43,12) C23M0Y43K12 (23%,0%,43%,12%) (0.23/0.00/0.43/0.12)
AE | E1 | 80 | |
---|---|---|---|
RGB | 174 | 225 | 128 |
HSL | 92° | 61.78% | 69.22% |
HSB/HSV | 92° | 43.11% | 88.24% |
CMYK | 22.67% | 0.00% | 43.11% |
11.76% |
HEX | AE | E1 | 80 |
Decimal | 174 | 225 | 128 |
Binary | 10101110 | 11100001 | 10000000 |
Octal | 256 | 341 | 200 |
Examples of css and html codes for elements with #AEE180 color. Also use rgb(174,225,128) instead hex code.
.myTextColor { color: #AEE180; }
<p style="color:#AEE180">This sample text font color is #AEE180.</p>
This text font color is #AEE180.
.myBgColor { background-color: #AEE180; }
<div style="background-color:#AEE180">Inner text</div>
This div background color is #AEE180.
.myBorderColor { border: 1px solid #AEE180; }
<div style="border:3px solid #AEE180">Div</div>
This div border color is #AEE180.
.myOpacity80 { color: #AEE180; opacity: 0.8; }
<p style="color:#AEE180;opacity:0.8;">80%</p>
Text with #AEE180 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #AEE180;}
<p style="text-shadow: 3px 3px 1px #AEE180">Text here.</p>
This text has shadow with #AEE180 color.
.textShadow {text-shadow: 3px 3px 1px #AEE180, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #AEE180, 5px 5px 20px red">Text here.</p>
This text has shadow with #AEE180 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#AEE180, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#AEE180, Direction=45, Strength=4)">Text</p>
This text has shadow with #AEE180 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #AEE180; -webkit-box-shadow: 1px 1px 3px 2px #AEE180; box-shadow: 1px 1px 3px 2px #AEE180; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #AEE180; -webkit-box-shadow: 1px 1px 3px 2px #AEE180; box-shadow:1px 1px 3px 2px #AEE180;">
Div content here</div>
This text has color #AEE180 on black background.
This text has color #AEE180 on white background.
This text has black color on #AEE180 background.
This text has white color on #AEE180 background.