HEX: #48CC75
RGB: (72,204,117)
#48CC75 contains mainly green color. Web safe color of #48CC75 is #33CC66 (or #3C6).
#48CC75 color RGB value is (72,204,117).
RGB: (72,204,117) (28%,80%,46%)
R 72 of 255 = 28%
G 204 of 255 = 80%
B 117 of 255 = 46%
R + G + B ~ 51%. #48CC75 is middle color (not dark and not light).
R + G + B =
72 + 204 + 117 = 393 (100%)
R 72 of 393 ~ 18.32%
G 204 of 393 ~ 51.91%
B 117 of 393 ~ 29.77%
#48CC75 color CMYK value is (65,0,43,20).
CMYK: (65,0,43,20) C65M0Y43K20 (65%,0%,43%,20%) (0.65/0.00/0.43/0.20)
48 | CC | 75 | |
---|---|---|---|
RGB | 72 | 204 | 117 |
HSL | 140° | 56.41% | 54.12% |
HSB/HSV | 140° | 64.71% | 80.00% |
CMYK | 64.71% | 0.00% | 42.65% |
20.00% |
HEX | 48 | CC | 75 |
Decimal | 72 | 204 | 117 |
Binary | 1001000 | 11001100 | 1110101 |
Octal | 110 | 314 | 165 |
Examples of css and html codes for elements with #48CC75 color. Also use rgb(72,204,117) instead hex code.
.myTextColor { color: #48CC75; }
<p style="color:#48CC75">This sample text font color is #48CC75.</p>
This text font color is #48CC75.
.myBgColor { background-color: #48CC75; }
<div style="background-color:#48CC75">Inner text</div>
This div background color is #48CC75.
.myBorderColor { border: 1px solid #48CC75; }
<div style="border:3px solid #48CC75">Div</div>
This div border color is #48CC75.
.myOpacity80 { color: #48CC75; opacity: 0.8; }
<p style="color:#48CC75;opacity:0.8;">80%</p>
Text with #48CC75 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #48CC75;}
<p style="text-shadow: 3px 3px 1px #48CC75">Text here.</p>
This text has shadow with #48CC75 color.
.textShadow {text-shadow: 3px 3px 1px #48CC75, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #48CC75, 5px 5px 20px red">Text here.</p>
This text has shadow with #48CC75 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#48CC75, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#48CC75, Direction=45, Strength=4)">Text</p>
This text has shadow with #48CC75 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #48CC75; -webkit-box-shadow: 1px 1px 3px 2px #48CC75; box-shadow: 1px 1px 3px 2px #48CC75; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #48CC75; -webkit-box-shadow: 1px 1px 3px 2px #48CC75; box-shadow:1px 1px 3px 2px #48CC75;">
Div content here</div>
This text has color #48CC75 on black background.
This text has color #48CC75 on white background.
This text has black color on #48CC75 background.
This text has white color on #48CC75 background.