HEX: #428863
RGB: (66,136,99)
#428863 contains mainly green and blue colors. Web safe color of #428863 is #339966 (or #396).
#428863 color RGB value is (66,136,99).
RGB: (66,136,99) (26%,53%,39%)
R 66 of 255 = 26%
G 136 of 255 = 53%
B 99 of 255 = 39%
R + G + B ~ 39%. #428863 is quite dark color.
R + G + B =
66 + 136 + 99 = 301 (100%)
R 66 of 301 ~ 21.93%
G 136 of 301 ~ 45.18%
B 99 of 301 ~ 32.89%
#428863 color CMYK value is (51,0,27,47).
CMYK: (51,0,27,47) C51M0Y27K47 (51%,0%,27%,47%) (0.51/0.00/0.27/0.47)
42 | 88 | 63 | |
---|---|---|---|
RGB | 66 | 136 | 99 |
HSL | 148° | 34.65% | 39.61% |
HSB/HSV | 148° | 51.47% | 53.33% |
CMYK | 51.47% | 0.00% | 27.21% |
46.67% |
HEX | 42 | 88 | 63 |
Decimal | 66 | 136 | 99 |
Binary | 1000010 | 10001000 | 1100011 |
Octal | 102 | 210 | 143 |
Examples of css and html codes for elements with #428863 color. Also use rgb(66,136,99) instead hex code.
.myTextColor { color: #428863; }
<p style="color:#428863">This sample text font color is #428863.</p>
This text font color is #428863.
.myBgColor { background-color: #428863; }
<div style="background-color:#428863">Inner text</div>
This div background color is #428863.
.myBorderColor { border: 1px solid #428863; }
<div style="border:3px solid #428863">Div</div>
This div border color is #428863.
.myOpacity80 { color: #428863; opacity: 0.8; }
<p style="color:#428863;opacity:0.8;">80%</p>
Text with #428863 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #428863;}
<p style="text-shadow: 3px 3px 1px #428863">Text here.</p>
This text has shadow with #428863 color.
.textShadow {text-shadow: 3px 3px 1px #428863, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #428863, 5px 5px 20px red">Text here.</p>
This text has shadow with #428863 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#428863, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#428863, Direction=45, Strength=4)">Text</p>
This text has shadow with #428863 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #428863; -webkit-box-shadow: 1px 1px 3px 2px #428863; box-shadow: 1px 1px 3px 2px #428863; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #428863; -webkit-box-shadow: 1px 1px 3px 2px #428863; box-shadow:1px 1px 3px 2px #428863;">
Div content here</div>
This text has color #428863 on black background.
This text has color #428863 on white background.
This text has black color on #428863 background.
This text has white color on #428863 background.