HEX: #AFE76D
RGB: (175,231,109)
#AFE76D contains mainly red and green colors. Web safe color of #AFE76D is #99FF66 (or #9F6).
#AFE76D color RGB value is (175,231,109).
RGB: (175,231,109) (69%,91%,43%)
R 175 of 255 = 69%
G 231 of 255 = 91%
B 109 of 255 = 43%
R + G + B ~ 68%. #AFE76D is quite light color.
R + G + B =
175 + 231 + 109 = 515 (100%)
R 175 of 515 ~ 33.98%
G 231 of 515 ~ 44.85%
B 109 of 515 ~ 21.17%
#AFE76D color CMYK value is (24,0,53,9).
CMYK: (24,0,53,9) C24M0Y53K9 (24%,0%,53%,9%) (0.24/0.00/0.53/0.09)
AF | E7 | 6D | |
---|---|---|---|
RGB | 175 | 231 | 109 |
HSL | 88° | 71.76% | 66.67% |
HSB/HSV | 88° | 52.81% | 90.59% |
CMYK | 24.24% | 0.00% | 52.81% |
9.41% |
HEX | AF | E7 | 6D |
Decimal | 175 | 231 | 109 |
Binary | 10101111 | 11100111 | 1101101 |
Octal | 257 | 347 | 155 |
Examples of css and html codes for elements with #AFE76D color. Also use rgb(175,231,109) instead hex code.
.myTextColor { color: #AFE76D; }
<p style="color:#AFE76D">This sample text font color is #AFE76D.</p>
This text font color is #AFE76D.
.myBgColor { background-color: #AFE76D; }
<div style="background-color:#AFE76D">Inner text</div>
This div background color is #AFE76D.
.myBorderColor { border: 1px solid #AFE76D; }
<div style="border:3px solid #AFE76D">Div</div>
This div border color is #AFE76D.
.myOpacity80 { color: #AFE76D; opacity: 0.8; }
<p style="color:#AFE76D;opacity:0.8;">80%</p>
Text with #AFE76D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #AFE76D;}
<p style="text-shadow: 3px 3px 1px #AFE76D">Text here.</p>
This text has shadow with #AFE76D color.
.textShadow {text-shadow: 3px 3px 1px #AFE76D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #AFE76D, 5px 5px 20px red">Text here.</p>
This text has shadow with #AFE76D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#AFE76D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#AFE76D, Direction=45, Strength=4)">Text</p>
This text has shadow with #AFE76D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #AFE76D; -webkit-box-shadow: 1px 1px 3px 2px #AFE76D; box-shadow: 1px 1px 3px 2px #AFE76D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #AFE76D; -webkit-box-shadow: 1px 1px 3px 2px #AFE76D; box-shadow:1px 1px 3px 2px #AFE76D;">
Div content here</div>
This text has color #AFE76D on black background.
This text has color #AFE76D on white background.
This text has black color on #AFE76D background.
This text has white color on #AFE76D background.