HEX: #72BB5C
RGB: (114,187,92)
#72BB5C contains mainly green color. Web safe color of #72BB5C is #66CC66 (or #6C6).
#72BB5C color RGB value is (114,187,92).
RGB: (114,187,92) (45%,73%,36%)
R 114 of 255 = 45%
G 187 of 255 = 73%
B 92 of 255 = 36%
R + G + B ~ 51%. #72BB5C is middle color (not dark and not light).
R + G + B =
114 + 187 + 92 = 393 (100%)
R 114 of 393 ~ 29.01%
G 187 of 393 ~ 47.58%
B 92 of 393 ~ 23.41%
#72BB5C color CMYK value is (39,0,51,27).
CMYK: (39,0,51,27) C39M0Y51K27 (39%,0%,51%,27%) (0.39/0.00/0.51/0.27)
72 | BB | 5C | |
---|---|---|---|
RGB | 114 | 187 | 92 |
HSL | 106° | 41.13% | 54.71% |
HSB/HSV | 106° | 50.80% | 73.33% |
CMYK | 39.04% | 0.00% | 50.80% |
26.67% |
HEX | 72 | BB | 5C |
Decimal | 114 | 187 | 92 |
Binary | 1110010 | 10111011 | 1011100 |
Octal | 162 | 273 | 134 |
Examples of css and html codes for elements with #72BB5C color. Also use rgb(114,187,92) instead hex code.
.myTextColor { color: #72BB5C; }
<p style="color:#72BB5C">This sample text font color is #72BB5C.</p>
This text font color is #72BB5C.
.myBgColor { background-color: #72BB5C; }
<div style="background-color:#72BB5C">Inner text</div>
This div background color is #72BB5C.
.myBorderColor { border: 1px solid #72BB5C; }
<div style="border:3px solid #72BB5C">Div</div>
This div border color is #72BB5C.
.myOpacity80 { color: #72BB5C; opacity: 0.8; }
<p style="color:#72BB5C;opacity:0.8;">80%</p>
Text with #72BB5C color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #72BB5C;}
<p style="text-shadow: 3px 3px 1px #72BB5C">Text here.</p>
This text has shadow with #72BB5C color.
.textShadow {text-shadow: 3px 3px 1px #72BB5C, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #72BB5C, 5px 5px 20px red">Text here.</p>
This text has shadow with #72BB5C primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#72BB5C, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#72BB5C, Direction=45, Strength=4)">Text</p>
This text has shadow with #72BB5C and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #72BB5C; -webkit-box-shadow: 1px 1px 3px 2px #72BB5C; box-shadow: 1px 1px 3px 2px #72BB5C; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #72BB5C; -webkit-box-shadow: 1px 1px 3px 2px #72BB5C; box-shadow:1px 1px 3px 2px #72BB5C;">
Div content here</div>
This text has color #72BB5C on black background.
This text has color #72BB5C on white background.
This text has black color on #72BB5C background.
This text has white color on #72BB5C background.