HEX: #48A80F
RGB: (72,168,15)
#48A80F contains mainly green color. Web safe color of #48A80F is #339900 (or #390).
#48A80F color RGB value is (72,168,15).
RGB: (72,168,15) (28%,66%,6%)
R 72 of 255 = 28%
G 168 of 255 = 66%
B 15 of 255 = 6%
R + G + B ~ 33%. #48A80F is quite dark color.
R + G + B =
72 + 168 + 15 = 255 (100%)
R 72 of 255 ~ 28.24%
G 168 of 255 ~ 65.88%
B 15 of 255 ~ 5.88%
#48A80F color CMYK value is (57,0,91,34).
CMYK: (57,0,91,34) C57M0Y91K34 (57%,0%,91%,34%) (0.57/0.00/0.91/0.34)
48 | A8 | 0F | |
---|---|---|---|
RGB | 72 | 168 | 15 |
HSL | 98° | 83.61% | 35.88% |
HSB/HSV | 98° | 91.07% | 65.88% |
CMYK | 57.14% | 0.00% | 91.07% |
34.12% |
HEX | 48 | A8 | 0F |
Decimal | 72 | 168 | 15 |
Binary | 1001000 | 10101000 | 1111 |
Octal | 110 | 250 | 17 |
Examples of css and html codes for elements with #48A80F color. Also use rgb(72,168,15) instead hex code.
.myTextColor { color: #48A80F; }
<p style="color:#48A80F">This sample text font color is #48A80F.</p>
This text font color is #48A80F.
.myBgColor { background-color: #48A80F; }
<div style="background-color:#48A80F">Inner text</div>
This div background color is #48A80F.
.myBorderColor { border: 1px solid #48A80F; }
<div style="border:3px solid #48A80F">Div</div>
This div border color is #48A80F.
.myOpacity80 { color: #48A80F; opacity: 0.8; }
<p style="color:#48A80F;opacity:0.8;">80%</p>
Text with #48A80F color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #48A80F;}
<p style="text-shadow: 3px 3px 1px #48A80F">Text here.</p>
This text has shadow with #48A80F color.
.textShadow {text-shadow: 3px 3px 1px #48A80F, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #48A80F, 5px 5px 20px red">Text here.</p>
This text has shadow with #48A80F primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#48A80F, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#48A80F, Direction=45, Strength=4)">Text</p>
This text has shadow with #48A80F and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #48A80F; -webkit-box-shadow: 1px 1px 3px 2px #48A80F; box-shadow: 1px 1px 3px 2px #48A80F; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #48A80F; -webkit-box-shadow: 1px 1px 3px 2px #48A80F; box-shadow:1px 1px 3px 2px #48A80F;">
Div content here</div>
This text has color #48A80F on black background.
This text has color #48A80F on white background.
This text has black color on #48A80F background.
This text has white color on #48A80F background.