HEX: #74D05E
RGB: (116,208,94)
#74D05E contains mainly green color. Web safe color of #74D05E is #66CC66 (or #6C6).
#74D05E color RGB value is (116,208,94).
RGB: (116,208,94) (45%,82%,37%)
R 116 of 255 = 45%
G 208 of 255 = 82%
B 94 of 255 = 37%
R + G + B ~ 55%. #74D05E is middle color (not dark and not light).
R + G + B =
116 + 208 + 94 = 418 (100%)
R 116 of 418 ~ 27.75%
G 208 of 418 ~ 49.76%
B 94 of 418 ~ 22.49%
#74D05E color CMYK value is (44,0,55,18).
CMYK: (44,0,55,18) C44M0Y55K18 (44%,0%,55%,18%) (0.44/0.00/0.55/0.18)
74 | D0 | 5E | |
---|---|---|---|
RGB | 116 | 208 | 94 |
HSL | 108° | 54.81% | 59.22% |
HSB/HSV | 108° | 54.81% | 81.57% |
CMYK | 44.23% | 0.00% | 54.81% |
18.43% |
HEX | 74 | D0 | 5E |
Decimal | 116 | 208 | 94 |
Binary | 1110100 | 11010000 | 1011110 |
Octal | 164 | 320 | 136 |
Examples of css and html codes for elements with #74D05E color. Also use rgb(116,208,94) instead hex code.
.myTextColor { color: #74D05E; }
<p style="color:#74D05E">This sample text font color is #74D05E.</p>
This text font color is #74D05E.
.myBgColor { background-color: #74D05E; }
<div style="background-color:#74D05E">Inner text</div>
This div background color is #74D05E.
.myBorderColor { border: 1px solid #74D05E; }
<div style="border:3px solid #74D05E">Div</div>
This div border color is #74D05E.
.myOpacity80 { color: #74D05E; opacity: 0.8; }
<p style="color:#74D05E;opacity:0.8;">80%</p>
Text with #74D05E color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #74D05E;}
<p style="text-shadow: 3px 3px 1px #74D05E">Text here.</p>
This text has shadow with #74D05E color.
.textShadow {text-shadow: 3px 3px 1px #74D05E, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #74D05E, 5px 5px 20px red">Text here.</p>
This text has shadow with #74D05E primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#74D05E, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#74D05E, Direction=45, Strength=4)">Text</p>
This text has shadow with #74D05E and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #74D05E; -webkit-box-shadow: 1px 1px 3px 2px #74D05E; box-shadow: 1px 1px 3px 2px #74D05E; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #74D05E; -webkit-box-shadow: 1px 1px 3px 2px #74D05E; box-shadow:1px 1px 3px 2px #74D05E;">
Div content here</div>
This text has color #74D05E on black background.
This text has color #74D05E on white background.
This text has black color on #74D05E background.
This text has white color on #74D05E background.