HEX: #42ED6D
RGB: (66,237,109)
#42ED6D contains mainly green color. Web safe color of #42ED6D is #33FF66 (or #3F6).
#42ED6D color RGB value is (66,237,109).
RGB: (66,237,109) (26%,93%,43%)
R 66 of 255 = 26%
G 237 of 255 = 93%
B 109 of 255 = 43%
R + G + B ~ 54%. #42ED6D is middle color (not dark and not light).
R + G + B =
66 + 237 + 109 = 412 (100%)
R 66 of 412 ~ 16.02%
G 237 of 412 ~ 57.52%
B 109 of 412 ~ 26.46%
#42ED6D color CMYK value is (72,0,54,7).
CMYK: (72,0,54,7) C72M0Y54K7 (72%,0%,54%,7%) (0.72/0.00/0.54/0.07)
42 | ED | 6D | |
---|---|---|---|
RGB | 66 | 237 | 109 |
HSL | 135° | 82.61% | 59.41% |
HSB/HSV | 135° | 72.15% | 92.94% |
CMYK | 72.15% | 0.00% | 54.01% |
7.06% |
HEX | 42 | ED | 6D |
Decimal | 66 | 237 | 109 |
Binary | 1000010 | 11101101 | 1101101 |
Octal | 102 | 355 | 155 |
Examples of css and html codes for elements with #42ED6D color. Also use rgb(66,237,109) instead hex code.
.myTextColor { color: #42ED6D; }
<p style="color:#42ED6D">This sample text font color is #42ED6D.</p>
This text font color is #42ED6D.
.myBgColor { background-color: #42ED6D; }
<div style="background-color:#42ED6D">Inner text</div>
This div background color is #42ED6D.
.myBorderColor { border: 1px solid #42ED6D; }
<div style="border:3px solid #42ED6D">Div</div>
This div border color is #42ED6D.
.myOpacity80 { color: #42ED6D; opacity: 0.8; }
<p style="color:#42ED6D;opacity:0.8;">80%</p>
Text with #42ED6D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #42ED6D;}
<p style="text-shadow: 3px 3px 1px #42ED6D">Text here.</p>
This text has shadow with #42ED6D color.
.textShadow {text-shadow: 3px 3px 1px #42ED6D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #42ED6D, 5px 5px 20px red">Text here.</p>
This text has shadow with #42ED6D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#42ED6D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#42ED6D, Direction=45, Strength=4)">Text</p>
This text has shadow with #42ED6D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #42ED6D; -webkit-box-shadow: 1px 1px 3px 2px #42ED6D; box-shadow: 1px 1px 3px 2px #42ED6D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #42ED6D; -webkit-box-shadow: 1px 1px 3px 2px #42ED6D; box-shadow:1px 1px 3px 2px #42ED6D;">
Div content here</div>
This text has color #42ED6D on black background.
This text has color #42ED6D on white background.
This text has black color on #42ED6D background.
This text has white color on #42ED6D background.