HEX: #AFE9AA
RGB: (175,233,170)
#AFE9AA contains mainly red and green colors. Web safe color of #AFE9AA is #99FF99 (or #9F9).
#AFE9AA color RGB value is (175,233,170).
RGB: (175,233,170) (69%,91%,67%)
R 175 of 255 = 69%
G 233 of 255 = 91%
B 170 of 255 = 67%
R + G + B ~ 76%. #AFE9AA is quite light color.
R + G + B =
175 + 233 + 170 = 578 (100%)
R 175 of 578 ~ 30.28%
G 233 of 578 ~ 40.31%
B 170 of 578 ~ 29.41%
#AFE9AA color CMYK value is (25,0,27,9).
CMYK: (25,0,27,9) C25M0Y27K9 (25%,0%,27%,9%) (0.25/0.00/0.27/0.09)
AF | E9 | AA | |
---|---|---|---|
RGB | 175 | 233 | 170 |
HSL | 115° | 58.88% | 79.02% |
HSB/HSV | 115° | 27.04% | 91.37% |
CMYK | 24.89% | 0.00% | 27.04% |
8.63% |
HEX | AF | E9 | AA |
Decimal | 175 | 233 | 170 |
Binary | 10101111 | 11101001 | 10101010 |
Octal | 257 | 351 | 252 |
Examples of css and html codes for elements with #AFE9AA color. Also use rgb(175,233,170) instead hex code.
.myTextColor { color: #AFE9AA; }
<p style="color:#AFE9AA">This sample text font color is #AFE9AA.</p>
This text font color is #AFE9AA.
.myBgColor { background-color: #AFE9AA; }
<div style="background-color:#AFE9AA">Inner text</div>
This div background color is #AFE9AA.
.myBorderColor { border: 1px solid #AFE9AA; }
<div style="border:3px solid #AFE9AA">Div</div>
This div border color is #AFE9AA.
.myOpacity80 { color: #AFE9AA; opacity: 0.8; }
<p style="color:#AFE9AA;opacity:0.8;">80%</p>
Text with #AFE9AA color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #AFE9AA;}
<p style="text-shadow: 3px 3px 1px #AFE9AA">Text here.</p>
This text has shadow with #AFE9AA color.
.textShadow {text-shadow: 3px 3px 1px #AFE9AA, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #AFE9AA, 5px 5px 20px red">Text here.</p>
This text has shadow with #AFE9AA primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#AFE9AA, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#AFE9AA, Direction=45, Strength=4)">Text</p>
This text has shadow with #AFE9AA and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #AFE9AA; -webkit-box-shadow: 1px 1px 3px 2px #AFE9AA; box-shadow: 1px 1px 3px 2px #AFE9AA; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #AFE9AA; -webkit-box-shadow: 1px 1px 3px 2px #AFE9AA; box-shadow:1px 1px 3px 2px #AFE9AA;">
Div content here</div>
This text has color #AFE9AA on black background.
This text has color #AFE9AA on white background.
This text has black color on #AFE9AA background.
This text has white color on #AFE9AA background.