HEX: #00D71C
RGB: (0,215,28)
#00D71C contains mainly green color. Web safe color of #00D71C is #00CC33 (or #0C3).
#00D71C color RGB value is (0,215,28).
RGB: (0,215,28) (0%,84%,11%)
R 0 of 255 = 0%
G 215 of 255 = 84%
B 28 of 255 = 11%
R + G + B ~ 32%. #00D71C is quite dark color.
R + G + B =
0 + 215 + 28 = 243 (100%)
R 0 of 243 ~ 0%
G 215 of 243 ~ 88.48%
B 28 of 243 ~ 11.52%
#00D71C color CMYK value is (100,0,87,16).
CMYK: (100,0,87,16) C100M0Y87K16 (100%,0%,87%,16%) (1.00/0.00/0.87/0.16)
00 | D7 | 1C | |
---|---|---|---|
RGB | 0 | 215 | 28 |
HSL | 128° | 100.00% | 42.16% |
HSB/HSV | 128° | 100.00% | 84.31% |
CMYK | 100.00% | 0.00% | 86.98% |
15.69% |
HEX | 00 | D7 | 1C |
Decimal | 0 | 215 | 28 |
Binary | 0 | 11010111 | 11100 |
Octal | 0 | 327 | 34 |
Examples of css and html codes for elements with #00D71C color. Also use rgb(0,215,28) instead hex code.
.myTextColor { color: #00D71C; }
<p style="color:#00D71C">This sample text font color is #00D71C.</p>
This text font color is #00D71C.
.myBgColor { background-color: #00D71C; }
<div style="background-color:#00D71C">Inner text</div>
This div background color is #00D71C.
.myBorderColor { border: 1px solid #00D71C; }
<div style="border:3px solid #00D71C">Div</div>
This div border color is #00D71C.
.myOpacity80 { color: #00D71C; opacity: 0.8; }
<p style="color:#00D71C;opacity:0.8;">80%</p>
Text with #00D71C color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #00D71C;}
<p style="text-shadow: 3px 3px 1px #00D71C">Text here.</p>
This text has shadow with #00D71C color.
.textShadow {text-shadow: 3px 3px 1px #00D71C, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #00D71C, 5px 5px 20px red">Text here.</p>
This text has shadow with #00D71C primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#00D71C, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#00D71C, Direction=45, Strength=4)">Text</p>
This text has shadow with #00D71C and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #00D71C; -webkit-box-shadow: 1px 1px 3px 2px #00D71C; box-shadow: 1px 1px 3px 2px #00D71C; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #00D71C; -webkit-box-shadow: 1px 1px 3px 2px #00D71C; box-shadow:1px 1px 3px 2px #00D71C;">
Div content here</div>
This text has color #00D71C on black background.
This text has color #00D71C on white background.
This text has black color on #00D71C background.
This text has white color on #00D71C background.