HEX: #48983F
RGB: (72,152,63)
#48983F contains mainly green color. Web safe color of #48983F is #339933 (or #393).
#48983F color RGB value is (72,152,63).
RGB: (72,152,63) (28%,60%,25%)
R 72 of 255 = 28%
G 152 of 255 = 60%
B 63 of 255 = 25%
R + G + B ~ 38%. #48983F is quite dark color.
R + G + B =
72 + 152 + 63 = 287 (100%)
R 72 of 287 ~ 25.09%
G 152 of 287 ~ 52.96%
B 63 of 287 ~ 21.95%
#48983F color CMYK value is (53,0,59,40).
CMYK: (53,0,59,40) C53M0Y59K40 (53%,0%,59%,40%) (0.53/0.00/0.59/0.40)
48 | 98 | 3F | |
---|---|---|---|
RGB | 72 | 152 | 63 |
HSL | 114° | 41.40% | 42.16% |
HSB/HSV | 114° | 58.55% | 59.61% |
CMYK | 52.63% | 0.00% | 58.55% |
40.39% |
HEX | 48 | 98 | 3F |
Decimal | 72 | 152 | 63 |
Binary | 1001000 | 10011000 | 111111 |
Octal | 110 | 230 | 77 |
Examples of css and html codes for elements with #48983F color. Also use rgb(72,152,63) instead hex code.
.myTextColor { color: #48983F; }
<p style="color:#48983F">This sample text font color is #48983F.</p>
This text font color is #48983F.
.myBgColor { background-color: #48983F; }
<div style="background-color:#48983F">Inner text</div>
This div background color is #48983F.
.myBorderColor { border: 1px solid #48983F; }
<div style="border:3px solid #48983F">Div</div>
This div border color is #48983F.
.myOpacity80 { color: #48983F; opacity: 0.8; }
<p style="color:#48983F;opacity:0.8;">80%</p>
Text with #48983F color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #48983F;}
<p style="text-shadow: 3px 3px 1px #48983F">Text here.</p>
This text has shadow with #48983F color.
.textShadow {text-shadow: 3px 3px 1px #48983F, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #48983F, 5px 5px 20px red">Text here.</p>
This text has shadow with #48983F primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#48983F, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#48983F, Direction=45, Strength=4)">Text</p>
This text has shadow with #48983F and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #48983F; -webkit-box-shadow: 1px 1px 3px 2px #48983F; box-shadow: 1px 1px 3px 2px #48983F; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #48983F; -webkit-box-shadow: 1px 1px 3px 2px #48983F; box-shadow:1px 1px 3px 2px #48983F;">
Div content here</div>
This text has color #48983F on black background.
This text has color #48983F on white background.
This text has black color on #48983F background.
This text has white color on #48983F background.