HEX: #72C558
RGB: (114,197,88)
#72C558 contains mainly green color. Web safe color of #72C558 is #66CC66 (or #6C6).
#72C558 color RGB value is (114,197,88).
RGB: (114,197,88) (45%,77%,35%)
R 114 of 255 = 45%
G 197 of 255 = 77%
B 88 of 255 = 35%
R + G + B ~ 52%. #72C558 is middle color (not dark and not light).
R + G + B =
114 + 197 + 88 = 399 (100%)
R 114 of 399 ~ 28.57%
G 197 of 399 ~ 49.37%
B 88 of 399 ~ 22.06%
#72C558 color CMYK value is (42,0,55,23).
CMYK: (42,0,55,23) C42M0Y55K23 (42%,0%,55%,23%) (0.42/0.00/0.55/0.23)
72 | C5 | 58 | |
---|---|---|---|
RGB | 114 | 197 | 88 |
HSL | 106° | 48.44% | 55.88% |
HSB/HSV | 106° | 55.33% | 77.25% |
CMYK | 42.13% | 0.00% | 55.33% |
22.75% |
HEX | 72 | C5 | 58 |
Decimal | 114 | 197 | 88 |
Binary | 1110010 | 11000101 | 1011000 |
Octal | 162 | 305 | 130 |
Examples of css and html codes for elements with #72C558 color. Also use rgb(114,197,88) instead hex code.
.myTextColor { color: #72C558; }
<p style="color:#72C558">This sample text font color is #72C558.</p>
This text font color is #72C558.
.myBgColor { background-color: #72C558; }
<div style="background-color:#72C558">Inner text</div>
This div background color is #72C558.
.myBorderColor { border: 1px solid #72C558; }
<div style="border:3px solid #72C558">Div</div>
This div border color is #72C558.
.myOpacity80 { color: #72C558; opacity: 0.8; }
<p style="color:#72C558;opacity:0.8;">80%</p>
Text with #72C558 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #72C558;}
<p style="text-shadow: 3px 3px 1px #72C558">Text here.</p>
This text has shadow with #72C558 color.
.textShadow {text-shadow: 3px 3px 1px #72C558, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #72C558, 5px 5px 20px red">Text here.</p>
This text has shadow with #72C558 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#72C558, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#72C558, Direction=45, Strength=4)">Text</p>
This text has shadow with #72C558 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #72C558; -webkit-box-shadow: 1px 1px 3px 2px #72C558; box-shadow: 1px 1px 3px 2px #72C558; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #72C558; -webkit-box-shadow: 1px 1px 3px 2px #72C558; box-shadow:1px 1px 3px 2px #72C558;">
Div content here</div>
This text has color #72C558 on black background.
This text has color #72C558 on white background.
This text has black color on #72C558 background.
This text has white color on #72C558 background.