HEX: #74CA1C
RGB: (116,202,28)
#74CA1C contains mainly green color. Web safe color of #74CA1C is #66CC33 (or #6C3).
#74CA1C color RGB value is (116,202,28).
RGB: (116,202,28) (45%,79%,11%)
R 116 of 255 = 45%
G 202 of 255 = 79%
B 28 of 255 = 11%
R + G + B ~ 45%. #74CA1C is middle color (not dark and not light).
R + G + B =
116 + 202 + 28 = 346 (100%)
R 116 of 346 ~ 33.53%
G 202 of 346 ~ 58.38%
B 28 of 346 ~ 8.09%
#74CA1C color CMYK value is (43,0,86,21).
CMYK: (43,0,86,21) C43M0Y86K21 (43%,0%,86%,21%) (0.43/0.00/0.86/0.21)
74 | CA | 1C | |
---|---|---|---|
RGB | 116 | 202 | 28 |
HSL | 90° | 75.65% | 45.10% |
HSB/HSV | 90° | 86.14% | 79.22% |
CMYK | 42.57% | 0.00% | 86.14% |
20.78% |
HEX | 74 | CA | 1C |
Decimal | 116 | 202 | 28 |
Binary | 1110100 | 11001010 | 11100 |
Octal | 164 | 312 | 34 |
Examples of css and html codes for elements with #74CA1C color. Also use rgb(116,202,28) instead hex code.
.myTextColor { color: #74CA1C; }
<p style="color:#74CA1C">This sample text font color is #74CA1C.</p>
This text font color is #74CA1C.
.myBgColor { background-color: #74CA1C; }
<div style="background-color:#74CA1C">Inner text</div>
This div background color is #74CA1C.
.myBorderColor { border: 1px solid #74CA1C; }
<div style="border:3px solid #74CA1C">Div</div>
This div border color is #74CA1C.
.myOpacity80 { color: #74CA1C; opacity: 0.8; }
<p style="color:#74CA1C;opacity:0.8;">80%</p>
Text with #74CA1C color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #74CA1C;}
<p style="text-shadow: 3px 3px 1px #74CA1C">Text here.</p>
This text has shadow with #74CA1C color.
.textShadow {text-shadow: 3px 3px 1px #74CA1C, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #74CA1C, 5px 5px 20px red">Text here.</p>
This text has shadow with #74CA1C primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#74CA1C, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#74CA1C, Direction=45, Strength=4)">Text</p>
This text has shadow with #74CA1C and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #74CA1C; -webkit-box-shadow: 1px 1px 3px 2px #74CA1C; box-shadow: 1px 1px 3px 2px #74CA1C; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #74CA1C; -webkit-box-shadow: 1px 1px 3px 2px #74CA1C; box-shadow:1px 1px 3px 2px #74CA1C;">
Div content here</div>
This text has color #74CA1C on black background.
This text has color #74CA1C on white background.
This text has black color on #74CA1C background.
This text has white color on #74CA1C background.