HEX: #00C55E
RGB: (0,197,94)
#00C55E contains mainly green color. Web safe color of #00C55E is #00CC66 (or #0C6).
#00C55E color RGB value is (0,197,94).
RGB: (0,197,94) (0%,77%,37%)
R 0 of 255 = 0%
G 197 of 255 = 77%
B 94 of 255 = 37%
R + G + B ~ 38%. #00C55E is quite dark color.
R + G + B =
0 + 197 + 94 = 291 (100%)
R 0 of 291 ~ 0%
G 197 of 291 ~ 67.7%
B 94 of 291 ~ 32.3%
#00C55E color CMYK value is (100,0,52,23).
CMYK: (100,0,52,23) C100M0Y52K23 (100%,0%,52%,23%) (1.00/0.00/0.52/0.23)
00 | C5 | 5E | |
---|---|---|---|
RGB | 0 | 197 | 94 |
HSL | 149° | 100.00% | 38.63% |
HSB/HSV | 149° | 100.00% | 77.25% |
CMYK | 100.00% | 0.00% | 52.28% |
22.75% |
HEX | 00 | C5 | 5E |
Decimal | 0 | 197 | 94 |
Binary | 0 | 11000101 | 1011110 |
Octal | 0 | 305 | 136 |
Examples of css and html codes for elements with #00C55E color. Also use rgb(0,197,94) instead hex code.
.myTextColor { color: #00C55E; }
<p style="color:#00C55E">This sample text font color is #00C55E.</p>
This text font color is #00C55E.
.myBgColor { background-color: #00C55E; }
<div style="background-color:#00C55E">Inner text</div>
This div background color is #00C55E.
.myBorderColor { border: 1px solid #00C55E; }
<div style="border:3px solid #00C55E">Div</div>
This div border color is #00C55E.
.myOpacity80 { color: #00C55E; opacity: 0.8; }
<p style="color:#00C55E;opacity:0.8;">80%</p>
Text with #00C55E color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #00C55E;}
<p style="text-shadow: 3px 3px 1px #00C55E">Text here.</p>
This text has shadow with #00C55E color.
.textShadow {text-shadow: 3px 3px 1px #00C55E, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #00C55E, 5px 5px 20px red">Text here.</p>
This text has shadow with #00C55E primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#00C55E, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#00C55E, Direction=45, Strength=4)">Text</p>
This text has shadow with #00C55E and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #00C55E; -webkit-box-shadow: 1px 1px 3px 2px #00C55E; box-shadow: 1px 1px 3px 2px #00C55E; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #00C55E; -webkit-box-shadow: 1px 1px 3px 2px #00C55E; box-shadow:1px 1px 3px 2px #00C55E;">
Div content here</div>
This text has color #00C55E on black background.
This text has color #00C55E on white background.
This text has black color on #00C55E background.
This text has white color on #00C55E background.