HEX: #48B084
RGB: (72,176,132)
#48B084 contains mainly green and blue colors. Web safe color of #48B084 is #339999 (or #399).
#48B084 color RGB value is (72,176,132).
RGB: (72,176,132) (28%,69%,52%)
R 72 of 255 = 28%
G 176 of 255 = 69%
B 132 of 255 = 52%
R + G + B ~ 50%. #48B084 is middle color (not dark and not light).
R + G + B =
72 + 176 + 132 = 380 (100%)
R 72 of 380 ~ 18.95%
G 176 of 380 ~ 46.32%
B 132 of 380 ~ 34.74%
#48B084 color CMYK value is (59,0,25,31).
CMYK: (59,0,25,31) C59M0Y25K31 (59%,0%,25%,31%) (0.59/0.00/0.25/0.31)
48 | B0 | 84 | |
---|---|---|---|
RGB | 72 | 176 | 132 |
HSL | 155° | 41.94% | 48.63% |
HSB/HSV | 155° | 59.09% | 69.02% |
CMYK | 59.09% | 0.00% | 25.00% |
30.98% |
HEX | 48 | B0 | 84 |
Decimal | 72 | 176 | 132 |
Binary | 1001000 | 10110000 | 10000100 |
Octal | 110 | 260 | 204 |
Examples of css and html codes for elements with #48B084 color. Also use rgb(72,176,132) instead hex code.
.myTextColor { color: #48B084; }
<p style="color:#48B084">This sample text font color is #48B084.</p>
This text font color is #48B084.
.myBgColor { background-color: #48B084; }
<div style="background-color:#48B084">Inner text</div>
This div background color is #48B084.
.myBorderColor { border: 1px solid #48B084; }
<div style="border:3px solid #48B084">Div</div>
This div border color is #48B084.
.myOpacity80 { color: #48B084; opacity: 0.8; }
<p style="color:#48B084;opacity:0.8;">80%</p>
Text with #48B084 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #48B084;}
<p style="text-shadow: 3px 3px 1px #48B084">Text here.</p>
This text has shadow with #48B084 color.
.textShadow {text-shadow: 3px 3px 1px #48B084, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #48B084, 5px 5px 20px red">Text here.</p>
This text has shadow with #48B084 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#48B084, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#48B084, Direction=45, Strength=4)">Text</p>
This text has shadow with #48B084 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #48B084; -webkit-box-shadow: 1px 1px 3px 2px #48B084; box-shadow: 1px 1px 3px 2px #48B084; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #48B084; -webkit-box-shadow: 1px 1px 3px 2px #48B084; box-shadow:1px 1px 3px 2px #48B084;">
Div content here</div>
This text has color #48B084 on black background.
This text has color #48B084 on white background.
This text has black color on #48B084 background.
This text has white color on #48B084 background.