HEX: #72C888
RGB: (114,200,136)
#72C888 contains mainly green color. Web safe color of #72C888 is #66CC99 (or #6C9).
#72C888 color RGB value is (114,200,136).
RGB: (114,200,136) (45%,78%,53%)
R 114 of 255 = 45%
G 200 of 255 = 78%
B 136 of 255 = 53%
R + G + B ~ 59%. #72C888 is middle color (not dark and not light).
R + G + B =
114 + 200 + 136 = 450 (100%)
R 114 of 450 ~ 25.33%
G 200 of 450 ~ 44.44%
B 136 of 450 ~ 30.22%
#72C888 color CMYK value is (43,0,32,22).
CMYK: (43,0,32,22) C43M0Y32K22 (43%,0%,32%,22%) (0.43/0.00/0.32/0.22)
72 | C8 | 88 | |
---|---|---|---|
RGB | 114 | 200 | 136 |
HSL | 135° | 43.88% | 61.57% |
HSB/HSV | 135° | 43.00% | 78.43% |
CMYK | 43.00% | 0.00% | 32.00% |
21.57% |
HEX | 72 | C8 | 88 |
Decimal | 114 | 200 | 136 |
Binary | 1110010 | 11001000 | 10001000 |
Octal | 162 | 310 | 210 |
Examples of css and html codes for elements with #72C888 color. Also use rgb(114,200,136) instead hex code.
.myTextColor { color: #72C888; }
<p style="color:#72C888">This sample text font color is #72C888.</p>
This text font color is #72C888.
.myBgColor { background-color: #72C888; }
<div style="background-color:#72C888">Inner text</div>
This div background color is #72C888.
.myBorderColor { border: 1px solid #72C888; }
<div style="border:3px solid #72C888">Div</div>
This div border color is #72C888.
.myOpacity80 { color: #72C888; opacity: 0.8; }
<p style="color:#72C888;opacity:0.8;">80%</p>
Text with #72C888 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #72C888;}
<p style="text-shadow: 3px 3px 1px #72C888">Text here.</p>
This text has shadow with #72C888 color.
.textShadow {text-shadow: 3px 3px 1px #72C888, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #72C888, 5px 5px 20px red">Text here.</p>
This text has shadow with #72C888 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#72C888, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#72C888, Direction=45, Strength=4)">Text</p>
This text has shadow with #72C888 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #72C888; -webkit-box-shadow: 1px 1px 3px 2px #72C888; box-shadow: 1px 1px 3px 2px #72C888; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #72C888; -webkit-box-shadow: 1px 1px 3px 2px #72C888; box-shadow:1px 1px 3px 2px #72C888;">
Div content here</div>
This text has color #72C888 on black background.
This text has color #72C888 on white background.
This text has black color on #72C888 background.
This text has white color on #72C888 background.