HEX: #72C422
RGB: (114,196,34)
#72C422 contains mainly green color. Web safe color of #72C422 is #66CC33 (or #6C3).
#72C422 color RGB value is (114,196,34).
RGB: (114,196,34) (45%,77%,13%)
R 114 of 255 = 45%
G 196 of 255 = 77%
B 34 of 255 = 13%
R + G + B ~ 45%. #72C422 is middle color (not dark and not light).
R + G + B =
114 + 196 + 34 = 344 (100%)
R 114 of 344 ~ 33.14%
G 196 of 344 ~ 56.98%
B 34 of 344 ~ 9.88%
#72C422 color CMYK value is (42,0,83,23).
CMYK: (42,0,83,23) C42M0Y83K23 (42%,0%,83%,23%) (0.42/0.00/0.83/0.23)
72 | C4 | 22 | |
---|---|---|---|
RGB | 114 | 196 | 34 |
HSL | 90° | 70.43% | 45.10% |
HSB/HSV | 90° | 82.65% | 76.86% |
CMYK | 41.84% | 0.00% | 82.65% |
23.14% |
HEX | 72 | C4 | 22 |
Decimal | 114 | 196 | 34 |
Binary | 1110010 | 11000100 | 100010 |
Octal | 162 | 304 | 42 |
Examples of css and html codes for elements with #72C422 color. Also use rgb(114,196,34) instead hex code.
.myTextColor { color: #72C422; }
<p style="color:#72C422">This sample text font color is #72C422.</p>
This text font color is #72C422.
.myBgColor { background-color: #72C422; }
<div style="background-color:#72C422">Inner text</div>
This div background color is #72C422.
.myBorderColor { border: 1px solid #72C422; }
<div style="border:3px solid #72C422">Div</div>
This div border color is #72C422.
.myOpacity80 { color: #72C422; opacity: 0.8; }
<p style="color:#72C422;opacity:0.8;">80%</p>
Text with #72C422 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #72C422;}
<p style="text-shadow: 3px 3px 1px #72C422">Text here.</p>
This text has shadow with #72C422 color.
.textShadow {text-shadow: 3px 3px 1px #72C422, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #72C422, 5px 5px 20px red">Text here.</p>
This text has shadow with #72C422 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#72C422, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#72C422, Direction=45, Strength=4)">Text</p>
This text has shadow with #72C422 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #72C422; -webkit-box-shadow: 1px 1px 3px 2px #72C422; box-shadow: 1px 1px 3px 2px #72C422; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #72C422; -webkit-box-shadow: 1px 1px 3px 2px #72C422; box-shadow:1px 1px 3px 2px #72C422;">
Div content here</div>
This text has color #72C422 on black background.
This text has color #72C422 on white background.
This text has black color on #72C422 background.
This text has white color on #72C422 background.