HEX: #74F88B
RGB: (116,248,139)
#74F88B contains mainly green color. Web safe color of #74F88B is #66FF99 (or #6F9).
#74F88B color RGB value is (116,248,139).
RGB: (116,248,139) (45%,97%,55%)
R 116 of 255 = 45%
G 248 of 255 = 97%
B 139 of 255 = 55%
R + G + B ~ 66%. #74F88B is quite light color.
R + G + B =
116 + 248 + 139 = 503 (100%)
R 116 of 503 ~ 23.06%
G 248 of 503 ~ 49.3%
B 139 of 503 ~ 27.63%
#74F88B color CMYK value is (53,0,44,3).
CMYK: (53,0,44,3) C53M0Y44K3 (53%,0%,44%,3%) (0.53/0.00/0.44/0.03)
74 | F8 | 8B | |
---|---|---|---|
RGB | 116 | 248 | 139 |
HSL | 130° | 90.41% | 71.37% |
HSB/HSV | 130° | 53.23% | 97.25% |
CMYK | 53.23% | 0.00% | 43.95% |
2.75% |
HEX | 74 | F8 | 8B |
Decimal | 116 | 248 | 139 |
Binary | 1110100 | 11111000 | 10001011 |
Octal | 164 | 370 | 213 |
Examples of css and html codes for elements with #74F88B color. Also use rgb(116,248,139) instead hex code.
.myTextColor { color: #74F88B; }
<p style="color:#74F88B">This sample text font color is #74F88B.</p>
This text font color is #74F88B.
.myBgColor { background-color: #74F88B; }
<div style="background-color:#74F88B">Inner text</div>
This div background color is #74F88B.
.myBorderColor { border: 1px solid #74F88B; }
<div style="border:3px solid #74F88B">Div</div>
This div border color is #74F88B.
.myOpacity80 { color: #74F88B; opacity: 0.8; }
<p style="color:#74F88B;opacity:0.8;">80%</p>
Text with #74F88B color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #74F88B;}
<p style="text-shadow: 3px 3px 1px #74F88B">Text here.</p>
This text has shadow with #74F88B color.
.textShadow {text-shadow: 3px 3px 1px #74F88B, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #74F88B, 5px 5px 20px red">Text here.</p>
This text has shadow with #74F88B primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#74F88B, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#74F88B, Direction=45, Strength=4)">Text</p>
This text has shadow with #74F88B and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #74F88B; -webkit-box-shadow: 1px 1px 3px 2px #74F88B; box-shadow: 1px 1px 3px 2px #74F88B; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #74F88B; -webkit-box-shadow: 1px 1px 3px 2px #74F88B; box-shadow:1px 1px 3px 2px #74F88B;">
Div content here</div>
This text has color #74F88B on black background.
This text has color #74F88B on white background.
This text has black color on #74F88B background.
This text has white color on #74F88B background.