HEX: #00FA9A
RGB: (0,250,154)
Color name is MediumSpringGreen. #00FA9A contains mainly green color. Web safe color of #00FA9A is #00FF99 (or #0F9).
#00FA9A color RGB value is (0,250,154).
RGB: (0,250,154) (0%,98%,60%)
R 0 of 255 = 0%
G 250 of 255 = 98%
B 154 of 255 = 60%
R + G + B ~ 53%. #00FA9A is middle color (not dark and not light).
R + G + B =
0 + 250 + 154 = 404 (100%)
R 0 of 404 ~ 0%
G 250 of 404 ~ 61.88%
B 154 of 404 ~ 38.12%
#00FA9A color CMYK value is (100,0,38,2).
CMYK: (100,0,38,2) C100M0Y38K2 (100%,0%,38%,2%) (1.00/0.00/0.38/0.02)
00 | FA | 9A | |
---|---|---|---|
RGB | 0 | 250 | 154 |
HSL | 157° | 100.00% | 49.02% |
HSB/HSV | 157° | 100.00% | 98.04% |
CMYK | 100.00% | 0.00% | 38.40% |
1.96% |
HEX | 00 | FA | 9A |
Decimal | 0 | 250 | 154 |
Binary | 0 | 11111010 | 10011010 |
Octal | 0 | 372 | 232 |
Examples of css and html codes for elements with #00FA9A color. Also use rgb(0,250,154) instead hex code.
.myTextColor { color: #00FA9A; }
<p style="color:#00FA9A">This sample text font color is #00FA9A.</p>
This text font color is #00FA9A.
.myBgColor { background-color: #00FA9A; }
<div style="background-color:#00FA9A">Inner text</div>
This div background color is #00FA9A.
.myBorderColor { border: 1px solid #00FA9A; }
<div style="border:3px solid #00FA9A">Div</div>
This div border color is #00FA9A.
.myOpacity80 { color: #00FA9A; opacity: 0.8; }
<p style="color:#00FA9A;opacity:0.8;">80%</p>
Text with #00FA9A color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #00FA9A;}
<p style="text-shadow: 3px 3px 1px #00FA9A">Text here.</p>
This text has shadow with #00FA9A color.
.textShadow {text-shadow: 3px 3px 1px #00FA9A, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #00FA9A, 5px 5px 20px red">Text here.</p>
This text has shadow with #00FA9A primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#00FA9A, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#00FA9A, Direction=45, Strength=4)">Text</p>
This text has shadow with #00FA9A and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #00FA9A; -webkit-box-shadow: 1px 1px 3px 2px #00FA9A; box-shadow: 1px 1px 3px 2px #00FA9A; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #00FA9A; -webkit-box-shadow: 1px 1px 3px 2px #00FA9A; box-shadow:1px 1px 3px 2px #00FA9A;">
Div content here</div>
This text has color #00FA9A on black background.
This text has color #00FA9A on white background.
This text has black color on #00FA9A background.
This text has white color on #00FA9A background.