HEX: #428200
RGB: (66,130,0)
#428200 contains mainly green color. Web safe color of #428200 is #339900 (or #390).
#428200 color RGB value is (66,130,0).
RGB: (66,130,0) (26%,51%,0%)
R 66 of 255 = 26%
G 130 of 255 = 51%
B 0 of 255 = 0%
R + G + B ~ 26%. #428200 is quite dark color.
R + G + B =
66 + 130 + 0 = 196 (100%)
R 66 of 196 ~ 33.67%
G 130 of 196 ~ 66.33%
B 0 of 196 ~ 0%
#428200 color CMYK value is (49,0,100,49).
CMYK: (49,0,100,49) C49M0Y100K49 (49%,0%,100%,49%) (0.49/0.00/1.00/0.49)
42 | 82 | 00 | |
---|---|---|---|
RGB | 66 | 130 | 0 |
HSL | 90° | 100.00% | 25.49% |
HSB/HSV | 90° | 100.00% | 50.98% |
CMYK | 49.23% | 0.00% | 100.00% |
49.02% |
HEX | 42 | 82 | 00 |
Decimal | 66 | 130 | 0 |
Binary | 1000010 | 10000010 | 0 |
Octal | 102 | 202 | 0 |
Examples of css and html codes for elements with #428200 color. Also use rgb(66,130,0) instead hex code.
.myTextColor { color: #428200; }
<p style="color:#428200">This sample text font color is #428200.</p>
This text font color is #428200.
.myBgColor { background-color: #428200; }
<div style="background-color:#428200">Inner text</div>
This div background color is #428200.
.myBorderColor { border: 1px solid #428200; }
<div style="border:3px solid #428200">Div</div>
This div border color is #428200.
.myOpacity80 { color: #428200; opacity: 0.8; }
<p style="color:#428200;opacity:0.8;">80%</p>
Text with #428200 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #428200;}
<p style="text-shadow: 3px 3px 1px #428200">Text here.</p>
This text has shadow with #428200 color.
.textShadow {text-shadow: 3px 3px 1px #428200, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #428200, 5px 5px 20px red">Text here.</p>
This text has shadow with #428200 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#428200, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#428200, Direction=45, Strength=4)">Text</p>
This text has shadow with #428200 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #428200; -webkit-box-shadow: 1px 1px 3px 2px #428200; box-shadow: 1px 1px 3px 2px #428200; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #428200; -webkit-box-shadow: 1px 1px 3px 2px #428200; box-shadow:1px 1px 3px 2px #428200;">
Div content here</div>
This text has color #428200 on black background.
This text has color #428200 on white background.
This text has black color on #428200 background.
This text has white color on #428200 background.