HEX: #74C991
RGB: (116,201,145)
#74C991 contains mainly green and blue colors. Web safe color of #74C991 is #66CC99 (or #6C9).
#74C991 color RGB value is (116,201,145).
RGB: (116,201,145) (45%,79%,57%)
R 116 of 255 = 45%
G 201 of 255 = 79%
B 145 of 255 = 57%
R + G + B ~ 60%. #74C991 is middle color (not dark and not light).
R + G + B =
116 + 201 + 145 = 462 (100%)
R 116 of 462 ~ 25.11%
G 201 of 462 ~ 43.51%
B 145 of 462 ~ 31.39%
#74C991 color CMYK value is (42,0,28,21).
CMYK: (42,0,28,21) C42M0Y28K21 (42%,0%,28%,21%) (0.42/0.00/0.28/0.21)
74 | C9 | 91 | |
---|---|---|---|
RGB | 116 | 201 | 145 |
HSL | 140° | 44.04% | 62.16% |
HSB/HSV | 140° | 42.29% | 78.82% |
CMYK | 42.29% | 0.00% | 27.86% |
21.18% |
HEX | 74 | C9 | 91 |
Decimal | 116 | 201 | 145 |
Binary | 1110100 | 11001001 | 10010001 |
Octal | 164 | 311 | 221 |
Examples of css and html codes for elements with #74C991 color. Also use rgb(116,201,145) instead hex code.
.myTextColor { color: #74C991; }
<p style="color:#74C991">This sample text font color is #74C991.</p>
This text font color is #74C991.
.myBgColor { background-color: #74C991; }
<div style="background-color:#74C991">Inner text</div>
This div background color is #74C991.
.myBorderColor { border: 1px solid #74C991; }
<div style="border:3px solid #74C991">Div</div>
This div border color is #74C991.
.myOpacity80 { color: #74C991; opacity: 0.8; }
<p style="color:#74C991;opacity:0.8;">80%</p>
Text with #74C991 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #74C991;}
<p style="text-shadow: 3px 3px 1px #74C991">Text here.</p>
This text has shadow with #74C991 color.
.textShadow {text-shadow: 3px 3px 1px #74C991, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #74C991, 5px 5px 20px red">Text here.</p>
This text has shadow with #74C991 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#74C991, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#74C991, Direction=45, Strength=4)">Text</p>
This text has shadow with #74C991 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #74C991; -webkit-box-shadow: 1px 1px 3px 2px #74C991; box-shadow: 1px 1px 3px 2px #74C991; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #74C991; -webkit-box-shadow: 1px 1px 3px 2px #74C991; box-shadow:1px 1px 3px 2px #74C991;">
Div content here</div>
This text has color #74C991 on black background.
This text has color #74C991 on white background.
This text has black color on #74C991 background.
This text has white color on #74C991 background.