HEX: #48B160
RGB: (72,177,96)
#48B160 contains mainly green color. Web safe color of #48B160 is #339966 (or #396).
#48B160 color RGB value is (72,177,96).
RGB: (72,177,96) (28%,69%,38%)
R 72 of 255 = 28%
G 177 of 255 = 69%
B 96 of 255 = 38%
R + G + B ~ 45%. #48B160 is middle color (not dark and not light).
R + G + B =
72 + 177 + 96 = 345 (100%)
R 72 of 345 ~ 20.87%
G 177 of 345 ~ 51.3%
B 96 of 345 ~ 27.83%
#48B160 color CMYK value is (59,0,46,31).
CMYK: (59,0,46,31) C59M0Y46K31 (59%,0%,46%,31%) (0.59/0.00/0.46/0.31)
48 | B1 | 60 | |
---|---|---|---|
RGB | 72 | 177 | 96 |
HSL | 134° | 42.17% | 48.82% |
HSB/HSV | 134° | 59.32% | 69.41% |
CMYK | 59.32% | 0.00% | 45.76% |
30.59% |
HEX | 48 | B1 | 60 |
Decimal | 72 | 177 | 96 |
Binary | 1001000 | 10110001 | 1100000 |
Octal | 110 | 261 | 140 |
Examples of css and html codes for elements with #48B160 color. Also use rgb(72,177,96) instead hex code.
.myTextColor { color: #48B160; }
<p style="color:#48B160">This sample text font color is #48B160.</p>
This text font color is #48B160.
.myBgColor { background-color: #48B160; }
<div style="background-color:#48B160">Inner text</div>
This div background color is #48B160.
.myBorderColor { border: 1px solid #48B160; }
<div style="border:3px solid #48B160">Div</div>
This div border color is #48B160.
.myOpacity80 { color: #48B160; opacity: 0.8; }
<p style="color:#48B160;opacity:0.8;">80%</p>
Text with #48B160 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #48B160;}
<p style="text-shadow: 3px 3px 1px #48B160">Text here.</p>
This text has shadow with #48B160 color.
.textShadow {text-shadow: 3px 3px 1px #48B160, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #48B160, 5px 5px 20px red">Text here.</p>
This text has shadow with #48B160 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#48B160, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#48B160, Direction=45, Strength=4)">Text</p>
This text has shadow with #48B160 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #48B160; -webkit-box-shadow: 1px 1px 3px 2px #48B160; box-shadow: 1px 1px 3px 2px #48B160; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #48B160; -webkit-box-shadow: 1px 1px 3px 2px #48B160; box-shadow:1px 1px 3px 2px #48B160;">
Div content here</div>
This text has color #48B160 on black background.
This text has color #48B160 on white background.
This text has black color on #48B160 background.
This text has white color on #48B160 background.