HEX: #48D398
RGB: (72,211,152)
#48D398 contains mainly green and blue colors. Web safe color of #48D398 is #33CC99 (or #3C9).
#48D398 color RGB value is (72,211,152).
RGB: (72,211,152) (28%,83%,60%)
R 72 of 255 = 28%
G 211 of 255 = 83%
B 152 of 255 = 60%
R + G + B ~ 57%. #48D398 is middle color (not dark and not light).
R + G + B =
72 + 211 + 152 = 435 (100%)
R 72 of 435 ~ 16.55%
G 211 of 435 ~ 48.51%
B 152 of 435 ~ 34.94%
#48D398 color CMYK value is (66,0,28,17).
CMYK: (66,0,28,17) C66M0Y28K17 (66%,0%,28%,17%) (0.66/0.00/0.28/0.17)
48 | D3 | 98 | |
---|---|---|---|
RGB | 72 | 211 | 152 |
HSL | 155° | 61.23% | 55.49% |
HSB/HSV | 155° | 65.88% | 82.75% |
CMYK | 65.88% | 0.00% | 27.96% |
17.25% |
HEX | 48 | D3 | 98 |
Decimal | 72 | 211 | 152 |
Binary | 1001000 | 11010011 | 10011000 |
Octal | 110 | 323 | 230 |
Examples of css and html codes for elements with #48D398 color. Also use rgb(72,211,152) instead hex code.
.myTextColor { color: #48D398; }
<p style="color:#48D398">This sample text font color is #48D398.</p>
This text font color is #48D398.
.myBgColor { background-color: #48D398; }
<div style="background-color:#48D398">Inner text</div>
This div background color is #48D398.
.myBorderColor { border: 1px solid #48D398; }
<div style="border:3px solid #48D398">Div</div>
This div border color is #48D398.
.myOpacity80 { color: #48D398; opacity: 0.8; }
<p style="color:#48D398;opacity:0.8;">80%</p>
Text with #48D398 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #48D398;}
<p style="text-shadow: 3px 3px 1px #48D398">Text here.</p>
This text has shadow with #48D398 color.
.textShadow {text-shadow: 3px 3px 1px #48D398, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #48D398, 5px 5px 20px red">Text here.</p>
This text has shadow with #48D398 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#48D398, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#48D398, Direction=45, Strength=4)">Text</p>
This text has shadow with #48D398 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #48D398; -webkit-box-shadow: 1px 1px 3px 2px #48D398; box-shadow: 1px 1px 3px 2px #48D398; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #48D398; -webkit-box-shadow: 1px 1px 3px 2px #48D398; box-shadow:1px 1px 3px 2px #48D398;">
Div content here</div>
This text has color #48D398 on black background.
This text has color #48D398 on white background.
This text has black color on #48D398 background.
This text has white color on #48D398 background.