HEX: #48BA58
RGB: (72,186,88)
#48BA58 contains mainly green color. Web safe color of #48BA58 is #33CC66 (or #3C6).
#48BA58 color RGB value is (72,186,88).
RGB: (72,186,88) (28%,73%,35%)
R 72 of 255 = 28%
G 186 of 255 = 73%
B 88 of 255 = 35%
R + G + B ~ 45%. #48BA58 is middle color (not dark and not light).
R + G + B =
72 + 186 + 88 = 346 (100%)
R 72 of 346 ~ 20.81%
G 186 of 346 ~ 53.76%
B 88 of 346 ~ 25.43%
#48BA58 color CMYK value is (61,0,53,27).
CMYK: (61,0,53,27) C61M0Y53K27 (61%,0%,53%,27%) (0.61/0.00/0.53/0.27)
48 | BA | 58 | |
---|---|---|---|
RGB | 72 | 186 | 88 |
HSL | 128° | 45.24% | 50.59% |
HSB/HSV | 128° | 61.29% | 72.94% |
CMYK | 61.29% | 0.00% | 52.69% |
27.06% |
HEX | 48 | BA | 58 |
Decimal | 72 | 186 | 88 |
Binary | 1001000 | 10111010 | 1011000 |
Octal | 110 | 272 | 130 |
Examples of css and html codes for elements with #48BA58 color. Also use rgb(72,186,88) instead hex code.
.myTextColor { color: #48BA58; }
<p style="color:#48BA58">This sample text font color is #48BA58.</p>
This text font color is #48BA58.
.myBgColor { background-color: #48BA58; }
<div style="background-color:#48BA58">Inner text</div>
This div background color is #48BA58.
.myBorderColor { border: 1px solid #48BA58; }
<div style="border:3px solid #48BA58">Div</div>
This div border color is #48BA58.
.myOpacity80 { color: #48BA58; opacity: 0.8; }
<p style="color:#48BA58;opacity:0.8;">80%</p>
Text with #48BA58 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #48BA58;}
<p style="text-shadow: 3px 3px 1px #48BA58">Text here.</p>
This text has shadow with #48BA58 color.
.textShadow {text-shadow: 3px 3px 1px #48BA58, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #48BA58, 5px 5px 20px red">Text here.</p>
This text has shadow with #48BA58 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#48BA58, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#48BA58, Direction=45, Strength=4)">Text</p>
This text has shadow with #48BA58 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #48BA58; -webkit-box-shadow: 1px 1px 3px 2px #48BA58; box-shadow: 1px 1px 3px 2px #48BA58; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #48BA58; -webkit-box-shadow: 1px 1px 3px 2px #48BA58; box-shadow:1px 1px 3px 2px #48BA58;">
Div content here</div>
This text has color #48BA58 on black background.
This text has color #48BA58 on white background.
This text has black color on #48BA58 background.
This text has white color on #48BA58 background.