HEX: #AEFEB5
RGB: (174,254,181)
#AEFEB5 contains mainly green color. Web safe color of #AEFEB5 is #99FFCC (or #9FC).
#AEFEB5 color RGB value is (174,254,181).
RGB: (174,254,181) (68%,100%,71%)
R 174 of 255 = 68%
G 254 of 255 = 100%
B 181 of 255 = 71%
R + G + B ~ 80%. #AEFEB5 is quite light color.
R + G + B =
174 + 254 + 181 = 609 (100%)
R 174 of 609 ~ 28.57%
G 254 of 609 ~ 41.71%
B 181 of 609 ~ 29.72%
#AEFEB5 color CMYK value is (31,0,29,0).
CMYK: (31,0,29,0) C31M0Y29K0 (31%,0%,29%,0%) (0.31/0.00/0.29/0.00)
AE | FE | B5 | |
---|---|---|---|
RGB | 174 | 254 | 181 |
HSL | 125° | 97.56% | 83.92% |
HSB/HSV | 125° | 31.50% | 99.61% |
CMYK | 31.50% | 0.00% | 28.74% |
0.39% |
HEX | AE | FE | B5 |
Decimal | 174 | 254 | 181 |
Binary | 10101110 | 11111110 | 10110101 |
Octal | 256 | 376 | 265 |
Examples of css and html codes for elements with #AEFEB5 color. Also use rgb(174,254,181) instead hex code.
.myTextColor { color: #AEFEB5; }
<p style="color:#AEFEB5">This sample text font color is #AEFEB5.</p>
This text font color is #AEFEB5.
.myBgColor { background-color: #AEFEB5; }
<div style="background-color:#AEFEB5">Inner text</div>
This div background color is #AEFEB5.
.myBorderColor { border: 1px solid #AEFEB5; }
<div style="border:3px solid #AEFEB5">Div</div>
This div border color is #AEFEB5.
.myOpacity80 { color: #AEFEB5; opacity: 0.8; }
<p style="color:#AEFEB5;opacity:0.8;">80%</p>
Text with #AEFEB5 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #AEFEB5;}
<p style="text-shadow: 3px 3px 1px #AEFEB5">Text here.</p>
This text has shadow with #AEFEB5 color.
.textShadow {text-shadow: 3px 3px 1px #AEFEB5, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #AEFEB5, 5px 5px 20px red">Text here.</p>
This text has shadow with #AEFEB5 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#AEFEB5, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#AEFEB5, Direction=45, Strength=4)">Text</p>
This text has shadow with #AEFEB5 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #AEFEB5; -webkit-box-shadow: 1px 1px 3px 2px #AEFEB5; box-shadow: 1px 1px 3px 2px #AEFEB5; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #AEFEB5; -webkit-box-shadow: 1px 1px 3px 2px #AEFEB5; box-shadow:1px 1px 3px 2px #AEFEB5;">
Div content here</div>
This text has color #AEFEB5 on black background.
This text has color #AEFEB5 on white background.
This text has black color on #AEFEB5 background.
This text has white color on #AEFEB5 background.