HEX: #ADFF2F
RGB: (173,255,47)
Color name is GreenYellow. #ADFF2F contains mainly green color. Web safe color of #ADFF2F is #99FF33 (or #9F3).
#ADFF2F color RGB value is (173,255,47).
RGB: (173,255,47) (68%,100%,18%)
R 173 of 255 = 68%
G 255 of 255 = 100%
B 47 of 255 = 18%
R + G + B ~ 62%. #ADFF2F is quite light color.
R + G + B =
173 + 255 + 47 = 475 (100%)
R 173 of 475 ~ 36.42%
G 255 of 475 ~ 53.68%
B 47 of 475 ~ 9.89%
#ADFF2F color CMYK value is (32,0,82,0).
CMYK: (32,0,82,0) C32M0Y82K0 (32%,0%,82%,0%) (0.32/0.00/0.82/0.00)
AD | FF | 2F | |
---|---|---|---|
RGB | 173 | 255 | 47 |
HSL | 84° | 100.00% | 59.22% |
HSB/HSV | 84° | 81.57% | 100.00% |
CMYK | 32.16% | 0.00% | 81.57% |
0.00% |
HEX | AD | FF | 2F |
Decimal | 173 | 255 | 47 |
Binary | 10101101 | 11111111 | 101111 |
Octal | 255 | 377 | 57 |
Examples of css and html codes for elements with #ADFF2F color. Also use rgb(173,255,47) instead hex code.
.myTextColor { color: #ADFF2F; }
<p style="color:#ADFF2F">This sample text font color is #ADFF2F.</p>
This text font color is #ADFF2F.
.myBgColor { background-color: #ADFF2F; }
<div style="background-color:#ADFF2F">Inner text</div>
This div background color is #ADFF2F.
.myBorderColor { border: 1px solid #ADFF2F; }
<div style="border:3px solid #ADFF2F">Div</div>
This div border color is #ADFF2F.
.myOpacity80 { color: #ADFF2F; opacity: 0.8; }
<p style="color:#ADFF2F;opacity:0.8;">80%</p>
Text with #ADFF2F color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #ADFF2F;}
<p style="text-shadow: 3px 3px 1px #ADFF2F">Text here.</p>
This text has shadow with #ADFF2F color.
.textShadow {text-shadow: 3px 3px 1px #ADFF2F, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #ADFF2F, 5px 5px 20px red">Text here.</p>
This text has shadow with #ADFF2F primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#ADFF2F, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#ADFF2F, Direction=45, Strength=4)">Text</p>
This text has shadow with #ADFF2F and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #ADFF2F; -webkit-box-shadow: 1px 1px 3px 2px #ADFF2F; box-shadow: 1px 1px 3px 2px #ADFF2F; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #ADFF2F; -webkit-box-shadow: 1px 1px 3px 2px #ADFF2F; box-shadow:1px 1px 3px 2px #ADFF2F;">
Div content here</div>
This text has color #ADFF2F on black background.
This text has color #ADFF2F on white background.
This text has black color on #ADFF2F background.
This text has white color on #ADFF2F background.