HEX: #48B62D
RGB: (72,182,45)
#48B62D contains mainly green color. Web safe color of #48B62D is #33CC33 (or #3C3).
#48B62D color RGB value is (72,182,45).
RGB: (72,182,45) (28%,71%,18%)
R 72 of 255 = 28%
G 182 of 255 = 71%
B 45 of 255 = 18%
R + G + B ~ 39%. #48B62D is quite dark color.
R + G + B =
72 + 182 + 45 = 299 (100%)
R 72 of 299 ~ 24.08%
G 182 of 299 ~ 60.87%
B 45 of 299 ~ 15.05%
#48B62D color CMYK value is (60,0,75,29).
CMYK: (60,0,75,29) C60M0Y75K29 (60%,0%,75%,29%) (0.60/0.00/0.75/0.29)
48 | B6 | 2D | |
---|---|---|---|
RGB | 72 | 182 | 45 |
HSL | 108° | 60.35% | 44.51% |
HSB/HSV | 108° | 75.27% | 71.37% |
CMYK | 60.44% | 0.00% | 75.27% |
28.63% |
HEX | 48 | B6 | 2D |
Decimal | 72 | 182 | 45 |
Binary | 1001000 | 10110110 | 101101 |
Octal | 110 | 266 | 55 |
Examples of css and html codes for elements with #48B62D color. Also use rgb(72,182,45) instead hex code.
.myTextColor { color: #48B62D; }
<p style="color:#48B62D">This sample text font color is #48B62D.</p>
This text font color is #48B62D.
.myBgColor { background-color: #48B62D; }
<div style="background-color:#48B62D">Inner text</div>
This div background color is #48B62D.
.myBorderColor { border: 1px solid #48B62D; }
<div style="border:3px solid #48B62D">Div</div>
This div border color is #48B62D.
.myOpacity80 { color: #48B62D; opacity: 0.8; }
<p style="color:#48B62D;opacity:0.8;">80%</p>
Text with #48B62D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #48B62D;}
<p style="text-shadow: 3px 3px 1px #48B62D">Text here.</p>
This text has shadow with #48B62D color.
.textShadow {text-shadow: 3px 3px 1px #48B62D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #48B62D, 5px 5px 20px red">Text here.</p>
This text has shadow with #48B62D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#48B62D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#48B62D, Direction=45, Strength=4)">Text</p>
This text has shadow with #48B62D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #48B62D; -webkit-box-shadow: 1px 1px 3px 2px #48B62D; box-shadow: 1px 1px 3px 2px #48B62D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #48B62D; -webkit-box-shadow: 1px 1px 3px 2px #48B62D; box-shadow:1px 1px 3px 2px #48B62D;">
Div content here</div>
This text has color #48B62D on black background.
This text has color #48B62D on white background.
This text has black color on #48B62D background.
This text has white color on #48B62D background.