HEX: #74D647
RGB: (116,214,71)
#74D647 contains mainly green color. Web safe color of #74D647 is #66CC33 (or #6C3).
#74D647 color RGB value is (116,214,71).
RGB: (116,214,71) (45%,84%,28%)
R 116 of 255 = 45%
G 214 of 255 = 84%
B 71 of 255 = 28%
R + G + B ~ 52%. #74D647 is middle color (not dark and not light).
R + G + B =
116 + 214 + 71 = 401 (100%)
R 116 of 401 ~ 28.93%
G 214 of 401 ~ 53.37%
B 71 of 401 ~ 17.71%
#74D647 color CMYK value is (46,0,67,16).
CMYK: (46,0,67,16) C46M0Y67K16 (46%,0%,67%,16%) (0.46/0.00/0.67/0.16)
74 | D6 | 47 | |
---|---|---|---|
RGB | 116 | 214 | 71 |
HSL | 101° | 63.56% | 55.88% |
HSB/HSV | 101° | 66.82% | 83.92% |
CMYK | 45.79% | 0.00% | 66.82% |
16.08% |
HEX | 74 | D6 | 47 |
Decimal | 116 | 214 | 71 |
Binary | 1110100 | 11010110 | 1000111 |
Octal | 164 | 326 | 107 |
Examples of css and html codes for elements with #74D647 color. Also use rgb(116,214,71) instead hex code.
.myTextColor { color: #74D647; }
<p style="color:#74D647">This sample text font color is #74D647.</p>
This text font color is #74D647.
.myBgColor { background-color: #74D647; }
<div style="background-color:#74D647">Inner text</div>
This div background color is #74D647.
.myBorderColor { border: 1px solid #74D647; }
<div style="border:3px solid #74D647">Div</div>
This div border color is #74D647.
.myOpacity80 { color: #74D647; opacity: 0.8; }
<p style="color:#74D647;opacity:0.8;">80%</p>
Text with #74D647 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #74D647;}
<p style="text-shadow: 3px 3px 1px #74D647">Text here.</p>
This text has shadow with #74D647 color.
.textShadow {text-shadow: 3px 3px 1px #74D647, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #74D647, 5px 5px 20px red">Text here.</p>
This text has shadow with #74D647 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#74D647, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#74D647, Direction=45, Strength=4)">Text</p>
This text has shadow with #74D647 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #74D647; -webkit-box-shadow: 1px 1px 3px 2px #74D647; box-shadow: 1px 1px 3px 2px #74D647; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #74D647; -webkit-box-shadow: 1px 1px 3px 2px #74D647; box-shadow:1px 1px 3px 2px #74D647;">
Div content here</div>
This text has color #74D647 on black background.
This text has color #74D647 on white background.
This text has black color on #74D647 background.
This text has white color on #74D647 background.