HEX: #AEDFA5
RGB: (174,223,165)
#AEDFA5 contains red, green and blue colors in about the same proportion. Web safe color of #AEDFA5 is #99CC99 (or #9C9).
#AEDFA5 color RGB value is (174,223,165).
RGB: (174,223,165) (68%,87%,65%)
R 174 of 255 = 68%
G 223 of 255 = 87%
B 165 of 255 = 65%
R + G + B ~ 73%. #AEDFA5 is quite light color.
R + G + B =
174 + 223 + 165 = 562 (100%)
R 174 of 562 ~ 30.96%
G 223 of 562 ~ 39.68%
B 165 of 562 ~ 29.36%
#AEDFA5 color CMYK value is (22,0,26,13).
CMYK: (22,0,26,13) C22M0Y26K13 (22%,0%,26%,13%) (0.22/0.00/0.26/0.13)
AE | DF | A5 | |
---|---|---|---|
RGB | 174 | 223 | 165 |
HSL | 111° | 47.54% | 76.08% |
HSB/HSV | 111° | 26.01% | 87.45% |
CMYK | 21.97% | 0.00% | 26.01% |
12.55% |
HEX | AE | DF | A5 |
Decimal | 174 | 223 | 165 |
Binary | 10101110 | 11011111 | 10100101 |
Octal | 256 | 337 | 245 |
Examples of css and html codes for elements with #AEDFA5 color. Also use rgb(174,223,165) instead hex code.
.myTextColor { color: #AEDFA5; }
<p style="color:#AEDFA5">This sample text font color is #AEDFA5.</p>
This text font color is #AEDFA5.
.myBgColor { background-color: #AEDFA5; }
<div style="background-color:#AEDFA5">Inner text</div>
This div background color is #AEDFA5.
.myBorderColor { border: 1px solid #AEDFA5; }
<div style="border:3px solid #AEDFA5">Div</div>
This div border color is #AEDFA5.
.myOpacity80 { color: #AEDFA5; opacity: 0.8; }
<p style="color:#AEDFA5;opacity:0.8;">80%</p>
Text with #AEDFA5 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #AEDFA5;}
<p style="text-shadow: 3px 3px 1px #AEDFA5">Text here.</p>
This text has shadow with #AEDFA5 color.
.textShadow {text-shadow: 3px 3px 1px #AEDFA5, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #AEDFA5, 5px 5px 20px red">Text here.</p>
This text has shadow with #AEDFA5 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#AEDFA5, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#AEDFA5, Direction=45, Strength=4)">Text</p>
This text has shadow with #AEDFA5 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #AEDFA5; -webkit-box-shadow: 1px 1px 3px 2px #AEDFA5; box-shadow: 1px 1px 3px 2px #AEDFA5; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #AEDFA5; -webkit-box-shadow: 1px 1px 3px 2px #AEDFA5; box-shadow:1px 1px 3px 2px #AEDFA5;">
Div content here</div>
This text has color #AEDFA5 on black background.
This text has color #AEDFA5 on white background.
This text has black color on #AEDFA5 background.
This text has white color on #AEDFA5 background.