HEX: #48B250
RGB: (72,178,80)
#48B250 contains mainly green color. Web safe color of #48B250 is #339966 (or #396).
#48B250 color RGB value is (72,178,80).
RGB: (72,178,80) (28%,70%,31%)
R 72 of 255 = 28%
G 178 of 255 = 70%
B 80 of 255 = 31%
R + G + B ~ 43%. #48B250 is middle color (not dark and not light).
R + G + B =
72 + 178 + 80 = 330 (100%)
R 72 of 330 ~ 21.82%
G 178 of 330 ~ 53.94%
B 80 of 330 ~ 24.24%
#48B250 color CMYK value is (60,0,55,30).
CMYK: (60,0,55,30) C60M0Y55K30 (60%,0%,55%,30%) (0.60/0.00/0.55/0.30)
48 | B2 | 50 | |
---|---|---|---|
RGB | 72 | 178 | 80 |
HSL | 125° | 42.40% | 49.02% |
HSB/HSV | 125° | 59.55% | 69.80% |
CMYK | 59.55% | 0.00% | 55.06% |
30.20% |
HEX | 48 | B2 | 50 |
Decimal | 72 | 178 | 80 |
Binary | 1001000 | 10110010 | 1010000 |
Octal | 110 | 262 | 120 |
Examples of css and html codes for elements with #48B250 color. Also use rgb(72,178,80) instead hex code.
.myTextColor { color: #48B250; }
<p style="color:#48B250">This sample text font color is #48B250.</p>
This text font color is #48B250.
.myBgColor { background-color: #48B250; }
<div style="background-color:#48B250">Inner text</div>
This div background color is #48B250.
.myBorderColor { border: 1px solid #48B250; }
<div style="border:3px solid #48B250">Div</div>
This div border color is #48B250.
.myOpacity80 { color: #48B250; opacity: 0.8; }
<p style="color:#48B250;opacity:0.8;">80%</p>
Text with #48B250 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #48B250;}
<p style="text-shadow: 3px 3px 1px #48B250">Text here.</p>
This text has shadow with #48B250 color.
.textShadow {text-shadow: 3px 3px 1px #48B250, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #48B250, 5px 5px 20px red">Text here.</p>
This text has shadow with #48B250 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#48B250, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#48B250, Direction=45, Strength=4)">Text</p>
This text has shadow with #48B250 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #48B250; -webkit-box-shadow: 1px 1px 3px 2px #48B250; box-shadow: 1px 1px 3px 2px #48B250; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #48B250; -webkit-box-shadow: 1px 1px 3px 2px #48B250; box-shadow:1px 1px 3px 2px #48B250;">
Div content here</div>
This text has color #48B250 on black background.
This text has color #48B250 on white background.
This text has black color on #48B250 background.
This text has white color on #48B250 background.