HEX: #AEF1AE
RGB: (174,241,174)
#AEF1AE contains mainly green color. Web safe color of #AEF1AE is #99FF99 (or #9F9).
#AEF1AE color RGB value is (174,241,174).
RGB: (174,241,174) (68%,95%,68%)
R 174 of 255 = 68%
G 241 of 255 = 95%
B 174 of 255 = 68%
R + G + B ~ 77%. #AEF1AE is quite light color.
R + G + B =
174 + 241 + 174 = 589 (100%)
R 174 of 589 ~ 29.54%
G 241 of 589 ~ 40.92%
B 174 of 589 ~ 29.54%
#AEF1AE color CMYK value is (28,0,28,5).
CMYK: (28,0,28,5) C28M0Y28K5 (28%,0%,28%,5%) (0.28/0.00/0.28/0.05)
AE | F1 | AE | |
---|---|---|---|
RGB | 174 | 241 | 174 |
HSL | 120° | 70.53% | 81.37% |
HSB/HSV | 120° | 27.80% | 94.51% |
CMYK | 27.80% | 0.00% | 27.80% |
5.49% |
HEX | AE | F1 | AE |
Decimal | 174 | 241 | 174 |
Binary | 10101110 | 11110001 | 10101110 |
Octal | 256 | 361 | 256 |
Examples of css and html codes for elements with #AEF1AE color. Also use rgb(174,241,174) instead hex code.
.myTextColor { color: #AEF1AE; }
<p style="color:#AEF1AE">This sample text font color is #AEF1AE.</p>
This text font color is #AEF1AE.
.myBgColor { background-color: #AEF1AE; }
<div style="background-color:#AEF1AE">Inner text</div>
This div background color is #AEF1AE.
.myBorderColor { border: 1px solid #AEF1AE; }
<div style="border:3px solid #AEF1AE">Div</div>
This div border color is #AEF1AE.
.myOpacity80 { color: #AEF1AE; opacity: 0.8; }
<p style="color:#AEF1AE;opacity:0.8;">80%</p>
Text with #AEF1AE color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #AEF1AE;}
<p style="text-shadow: 3px 3px 1px #AEF1AE">Text here.</p>
This text has shadow with #AEF1AE color.
.textShadow {text-shadow: 3px 3px 1px #AEF1AE, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #AEF1AE, 5px 5px 20px red">Text here.</p>
This text has shadow with #AEF1AE primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#AEF1AE, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#AEF1AE, Direction=45, Strength=4)">Text</p>
This text has shadow with #AEF1AE and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #AEF1AE; -webkit-box-shadow: 1px 1px 3px 2px #AEF1AE; box-shadow: 1px 1px 3px 2px #AEF1AE; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #AEF1AE; -webkit-box-shadow: 1px 1px 3px 2px #AEF1AE; box-shadow:1px 1px 3px 2px #AEF1AE;">
Div content here</div>
This text has color #AEF1AE on black background.
This text has color #AEF1AE on white background.
This text has black color on #AEF1AE background.
This text has white color on #AEF1AE background.