HEX: #00FF7F
RGB: (0,255,127)
Color name is SpringGreen. #00FF7F contains mainly green color. Web safe color of #00FF7F is #00FF66 (or #0F6).
#00FF7F color RGB value is (0,255,127).
RGB: (0,255,127) (0%,100%,50%)
R 0 of 255 = 0%
G 255 of 255 = 100%
B 127 of 255 = 50%
R + G + B ~ 50%. #00FF7F is middle color (not dark and not light).
R + G + B =
0 + 255 + 127 = 382 (100%)
R 0 of 382 ~ 0%
G 255 of 382 ~ 66.75%
B 127 of 382 ~ 33.25%
#00FF7F color CMYK value is (100,0,50,0).
CMYK: (100,0,50,0) C100M0Y50K0 (100%,0%,50%,0%) (1.00/0.00/0.50/0.00)
00 | FF | 7F | |
---|---|---|---|
RGB | 0 | 255 | 127 |
HSL | 150° | 100.00% | 50.00% |
HSB/HSV | 150° | 100.00% | 100.00% |
CMYK | 100.00% | 0.00% | 50.20% |
0.00% |
HEX | 00 | FF | 7F |
Decimal | 0 | 255 | 127 |
Binary | 0 | 11111111 | 1111111 |
Octal | 0 | 377 | 177 |
Examples of css and html codes for elements with #00FF7F color. Also use rgb(0,255,127) instead hex code.
.myTextColor { color: #00FF7F; }
<p style="color:#00FF7F">This sample text font color is #00FF7F.</p>
This text font color is #00FF7F.
.myBgColor { background-color: #00FF7F; }
<div style="background-color:#00FF7F">Inner text</div>
This div background color is #00FF7F.
.myBorderColor { border: 1px solid #00FF7F; }
<div style="border:3px solid #00FF7F">Div</div>
This div border color is #00FF7F.
.myOpacity80 { color: #00FF7F; opacity: 0.8; }
<p style="color:#00FF7F;opacity:0.8;">80%</p>
Text with #00FF7F color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #00FF7F;}
<p style="text-shadow: 3px 3px 1px #00FF7F">Text here.</p>
This text has shadow with #00FF7F color.
.textShadow {text-shadow: 3px 3px 1px #00FF7F, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #00FF7F, 5px 5px 20px red">Text here.</p>
This text has shadow with #00FF7F primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#00FF7F, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#00FF7F, Direction=45, Strength=4)">Text</p>
This text has shadow with #00FF7F and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #00FF7F; -webkit-box-shadow: 1px 1px 3px 2px #00FF7F; box-shadow: 1px 1px 3px 2px #00FF7F; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #00FF7F; -webkit-box-shadow: 1px 1px 3px 2px #00FF7F; box-shadow:1px 1px 3px 2px #00FF7F;">
Div content here</div>
This text has color #00FF7F on black background.
This text has color #00FF7F on white background.
This text has black color on #00FF7F background.
This text has white color on #00FF7F background.