HEX: #74FACA
RGB: (116,250,202)
#74FACA contains mainly green and blue colors. Web safe color of #74FACA is #66FFCC (or #6FC).
#74FACA color RGB value is (116,250,202).
RGB: (116,250,202) (45%,98%,79%)
R 116 of 255 = 45%
G 250 of 255 = 98%
B 202 of 255 = 79%
R + G + B ~ 74%. #74FACA is quite light color.
R + G + B =
116 + 250 + 202 = 568 (100%)
R 116 of 568 ~ 20.42%
G 250 of 568 ~ 44.01%
B 202 of 568 ~ 35.56%
#74FACA color CMYK value is (54,0,19,2).
CMYK: (54,0,19,2) C54M0Y19K2 (54%,0%,19%,2%) (0.54/0.00/0.19/0.02)
74 | FA | CA | |
---|---|---|---|
RGB | 116 | 250 | 202 |
HSL | 159° | 93.06% | 71.76% |
HSB/HSV | 159° | 53.60% | 98.04% |
CMYK | 53.60% | 0.00% | 19.20% |
1.96% |
HEX | 74 | FA | CA |
Decimal | 116 | 250 | 202 |
Binary | 1110100 | 11111010 | 11001010 |
Octal | 164 | 372 | 312 |
Examples of css and html codes for elements with #74FACA color. Also use rgb(116,250,202) instead hex code.
.myTextColor { color: #74FACA; }
<p style="color:#74FACA">This sample text font color is #74FACA.</p>
This text font color is #74FACA.
.myBgColor { background-color: #74FACA; }
<div style="background-color:#74FACA">Inner text</div>
This div background color is #74FACA.
.myBorderColor { border: 1px solid #74FACA; }
<div style="border:3px solid #74FACA">Div</div>
This div border color is #74FACA.
.myOpacity80 { color: #74FACA; opacity: 0.8; }
<p style="color:#74FACA;opacity:0.8;">80%</p>
Text with #74FACA color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #74FACA;}
<p style="text-shadow: 3px 3px 1px #74FACA">Text here.</p>
This text has shadow with #74FACA color.
.textShadow {text-shadow: 3px 3px 1px #74FACA, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #74FACA, 5px 5px 20px red">Text here.</p>
This text has shadow with #74FACA primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#74FACA, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#74FACA, Direction=45, Strength=4)">Text</p>
This text has shadow with #74FACA and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #74FACA; -webkit-box-shadow: 1px 1px 3px 2px #74FACA; box-shadow: 1px 1px 3px 2px #74FACA; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #74FACA; -webkit-box-shadow: 1px 1px 3px 2px #74FACA; box-shadow:1px 1px 3px 2px #74FACA;">
Div content here</div>
This text has color #74FACA on black background.
This text has color #74FACA on white background.
This text has black color on #74FACA background.
This text has white color on #74FACA background.