HEX: #72B030
RGB: (114,176,48)
#72B030 contains mainly green color. Web safe color of #72B030 is #669933 (or #693).
#72B030 color RGB value is (114,176,48).
RGB: (114,176,48) (45%,69%,19%)
R 114 of 255 = 45%
G 176 of 255 = 69%
B 48 of 255 = 19%
R + G + B ~ 44%. #72B030 is middle color (not dark and not light).
R + G + B =
114 + 176 + 48 = 338 (100%)
R 114 of 338 ~ 33.73%
G 176 of 338 ~ 52.07%
B 48 of 338 ~ 14.2%
#72B030 color CMYK value is (35,0,73,31).
CMYK: (35,0,73,31) C35M0Y73K31 (35%,0%,73%,31%) (0.35/0.00/0.73/0.31)
72 | B0 | 30 | |
---|---|---|---|
RGB | 114 | 176 | 48 |
HSL | 89° | 57.14% | 43.92% |
HSB/HSV | 89° | 72.73% | 69.02% |
CMYK | 35.23% | 0.00% | 72.73% |
30.98% |
HEX | 72 | B0 | 30 |
Decimal | 114 | 176 | 48 |
Binary | 1110010 | 10110000 | 110000 |
Octal | 162 | 260 | 60 |
Examples of css and html codes for elements with #72B030 color. Also use rgb(114,176,48) instead hex code.
.myTextColor { color: #72B030; }
<p style="color:#72B030">This sample text font color is #72B030.</p>
This text font color is #72B030.
.myBgColor { background-color: #72B030; }
<div style="background-color:#72B030">Inner text</div>
This div background color is #72B030.
.myBorderColor { border: 1px solid #72B030; }
<div style="border:3px solid #72B030">Div</div>
This div border color is #72B030.
.myOpacity80 { color: #72B030; opacity: 0.8; }
<p style="color:#72B030;opacity:0.8;">80%</p>
Text with #72B030 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #72B030;}
<p style="text-shadow: 3px 3px 1px #72B030">Text here.</p>
This text has shadow with #72B030 color.
.textShadow {text-shadow: 3px 3px 1px #72B030, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #72B030, 5px 5px 20px red">Text here.</p>
This text has shadow with #72B030 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#72B030, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#72B030, Direction=45, Strength=4)">Text</p>
This text has shadow with #72B030 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #72B030; -webkit-box-shadow: 1px 1px 3px 2px #72B030; box-shadow: 1px 1px 3px 2px #72B030; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #72B030; -webkit-box-shadow: 1px 1px 3px 2px #72B030; box-shadow:1px 1px 3px 2px #72B030;">
Div content here</div>
This text has color #72B030 on black background.
This text has color #72B030 on white background.
This text has black color on #72B030 background.
This text has white color on #72B030 background.