HEX: #AEF271
RGB: (174,242,113)
#AEF271 contains mainly green color. Web safe color of #AEF271 is #99FF66 (or #9F6).
#AEF271 color RGB value is (174,242,113).
RGB: (174,242,113) (68%,95%,44%)
R 174 of 255 = 68%
G 242 of 255 = 95%
B 113 of 255 = 44%
R + G + B ~ 69%. #AEF271 is quite light color.
R + G + B =
174 + 242 + 113 = 529 (100%)
R 174 of 529 ~ 32.89%
G 242 of 529 ~ 45.75%
B 113 of 529 ~ 21.36%
#AEF271 color CMYK value is (28,0,53,5).
CMYK: (28,0,53,5) C28M0Y53K5 (28%,0%,53%,5%) (0.28/0.00/0.53/0.05)
AE | F2 | 71 | |
---|---|---|---|
RGB | 174 | 242 | 113 |
HSL | 92° | 83.23% | 69.61% |
HSB/HSV | 92° | 53.31% | 94.90% |
CMYK | 28.10% | 0.00% | 53.31% |
5.10% |
HEX | AE | F2 | 71 |
Decimal | 174 | 242 | 113 |
Binary | 10101110 | 11110010 | 1110001 |
Octal | 256 | 362 | 161 |
Examples of css and html codes for elements with #AEF271 color. Also use rgb(174,242,113) instead hex code.
.myTextColor { color: #AEF271; }
<p style="color:#AEF271">This sample text font color is #AEF271.</p>
This text font color is #AEF271.
.myBgColor { background-color: #AEF271; }
<div style="background-color:#AEF271">Inner text</div>
This div background color is #AEF271.
.myBorderColor { border: 1px solid #AEF271; }
<div style="border:3px solid #AEF271">Div</div>
This div border color is #AEF271.
.myOpacity80 { color: #AEF271; opacity: 0.8; }
<p style="color:#AEF271;opacity:0.8;">80%</p>
Text with #AEF271 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #AEF271;}
<p style="text-shadow: 3px 3px 1px #AEF271">Text here.</p>
This text has shadow with #AEF271 color.
.textShadow {text-shadow: 3px 3px 1px #AEF271, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #AEF271, 5px 5px 20px red">Text here.</p>
This text has shadow with #AEF271 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#AEF271, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#AEF271, Direction=45, Strength=4)">Text</p>
This text has shadow with #AEF271 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #AEF271; -webkit-box-shadow: 1px 1px 3px 2px #AEF271; box-shadow: 1px 1px 3px 2px #AEF271; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #AEF271; -webkit-box-shadow: 1px 1px 3px 2px #AEF271; box-shadow:1px 1px 3px 2px #AEF271;">
Div content here</div>
This text has color #AEF271 on black background.
This text has color #AEF271 on white background.
This text has black color on #AEF271 background.
This text has white color on #AEF271 background.