HEX: #4C801C
RGB: (76,128,28)
#4C801C contains mainly red and green colors. Web safe color of #4C801C is #336633 (or #363).
#4C801C color RGB value is (76,128,28).
RGB: (76,128,28) (30%,50%,11%)
R 76 of 255 = 30%
G 128 of 255 = 50%
B 28 of 255 = 11%
R + G + B ~ 30%. #4C801C is quite dark color.
R + G + B =
76 + 128 + 28 = 232 (100%)
R 76 of 232 ~ 32.76%
G 128 of 232 ~ 55.17%
B 28 of 232 ~ 12.07%
#4C801C color CMYK value is (41,0,78,50).
CMYK: (41,0,78,50) C41M0Y78K50 (41%,0%,78%,50%) (0.41/0.00/0.78/0.50)
4C | 80 | 1C | |
---|---|---|---|
RGB | 76 | 128 | 28 |
HSL | 91° | 64.10% | 30.59% |
HSB/HSV | 91° | 78.13% | 50.20% |
CMYK | 40.63% | 0.00% | 78.13% |
49.80% |
HEX | 4C | 80 | 1C |
Decimal | 76 | 128 | 28 |
Binary | 1001100 | 10000000 | 11100 |
Octal | 114 | 200 | 34 |
Examples of css and html codes for elements with #4C801C color. Also use rgb(76,128,28) instead hex code.
.myTextColor { color: #4C801C; }
<p style="color:#4C801C">This sample text font color is #4C801C.</p>
This text font color is #4C801C.
.myBgColor { background-color: #4C801C; }
<div style="background-color:#4C801C">Inner text</div>
This div background color is #4C801C.
.myBorderColor { border: 1px solid #4C801C; }
<div style="border:3px solid #4C801C">Div</div>
This div border color is #4C801C.
.myOpacity80 { color: #4C801C; opacity: 0.8; }
<p style="color:#4C801C;opacity:0.8;">80%</p>
Text with #4C801C color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #4C801C;}
<p style="text-shadow: 3px 3px 1px #4C801C">Text here.</p>
This text has shadow with #4C801C color.
.textShadow {text-shadow: 3px 3px 1px #4C801C, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #4C801C, 5px 5px 20px red">Text here.</p>
This text has shadow with #4C801C primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#4C801C, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#4C801C, Direction=45, Strength=4)">Text</p>
This text has shadow with #4C801C and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #4C801C; -webkit-box-shadow: 1px 1px 3px 2px #4C801C; box-shadow: 1px 1px 3px 2px #4C801C; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #4C801C; -webkit-box-shadow: 1px 1px 3px 2px #4C801C; box-shadow:1px 1px 3px 2px #4C801C;">
Div content here</div>
This text has color #4C801C on black background.
This text has color #4C801C on white background.
This text has black color on #4C801C background.
This text has white color on #4C801C background.