HEX: #48D594
RGB: (72,213,148)
#48D594 contains mainly green color. Web safe color of #48D594 is #33CC99 (or #3C9).
#48D594 color RGB value is (72,213,148).
RGB: (72,213,148) (28%,84%,58%)
R 72 of 255 = 28%
G 213 of 255 = 84%
B 148 of 255 = 58%
R + G + B ~ 57%. #48D594 is middle color (not dark and not light).
R + G + B =
72 + 213 + 148 = 433 (100%)
R 72 of 433 ~ 16.63%
G 213 of 433 ~ 49.19%
B 148 of 433 ~ 34.18%
#48D594 color CMYK value is (66,0,31,16).
CMYK: (66,0,31,16) C66M0Y31K16 (66%,0%,31%,16%) (0.66/0.00/0.31/0.16)
48 | D5 | 94 | |
---|---|---|---|
RGB | 72 | 213 | 148 |
HSL | 152° | 62.67% | 55.88% |
HSB/HSV | 152° | 66.20% | 83.53% |
CMYK | 66.20% | 0.00% | 30.52% |
16.47% |
HEX | 48 | D5 | 94 |
Decimal | 72 | 213 | 148 |
Binary | 1001000 | 11010101 | 10010100 |
Octal | 110 | 325 | 224 |
Examples of css and html codes for elements with #48D594 color. Also use rgb(72,213,148) instead hex code.
.myTextColor { color: #48D594; }
<p style="color:#48D594">This sample text font color is #48D594.</p>
This text font color is #48D594.
.myBgColor { background-color: #48D594; }
<div style="background-color:#48D594">Inner text</div>
This div background color is #48D594.
.myBorderColor { border: 1px solid #48D594; }
<div style="border:3px solid #48D594">Div</div>
This div border color is #48D594.
.myOpacity80 { color: #48D594; opacity: 0.8; }
<p style="color:#48D594;opacity:0.8;">80%</p>
Text with #48D594 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #48D594;}
<p style="text-shadow: 3px 3px 1px #48D594">Text here.</p>
This text has shadow with #48D594 color.
.textShadow {text-shadow: 3px 3px 1px #48D594, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #48D594, 5px 5px 20px red">Text here.</p>
This text has shadow with #48D594 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#48D594, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#48D594, Direction=45, Strength=4)">Text</p>
This text has shadow with #48D594 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #48D594; -webkit-box-shadow: 1px 1px 3px 2px #48D594; box-shadow: 1px 1px 3px 2px #48D594; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #48D594; -webkit-box-shadow: 1px 1px 3px 2px #48D594; box-shadow:1px 1px 3px 2px #48D594;">
Div content here</div>
This text has color #48D594 on black background.
This text has color #48D594 on white background.
This text has black color on #48D594 background.
This text has white color on #48D594 background.