HEX: #76CE78
RGB: (118,206,120)
#76CE78 contains mainly green color. Web safe color of #76CE78 is #66CC66 (or #6C6).
#76CE78 color RGB value is (118,206,120).
RGB: (118,206,120) (46%,81%,47%)
R 118 of 255 = 46%
G 206 of 255 = 81%
B 120 of 255 = 47%
R + G + B ~ 58%. #76CE78 is middle color (not dark and not light).
R + G + B =
118 + 206 + 120 = 444 (100%)
R 118 of 444 ~ 26.58%
G 206 of 444 ~ 46.4%
B 120 of 444 ~ 27.03%
#76CE78 color CMYK value is (43,0,42,19).
CMYK: (43,0,42,19) C43M0Y42K19 (43%,0%,42%,19%) (0.43/0.00/0.42/0.19)
76 | CE | 78 | |
---|---|---|---|
RGB | 118 | 206 | 120 |
HSL | 121° | 47.31% | 63.53% |
HSB/HSV | 121° | 42.72% | 80.78% |
CMYK | 42.72% | 0.00% | 41.75% |
19.22% |
HEX | 76 | CE | 78 |
Decimal | 118 | 206 | 120 |
Binary | 1110110 | 11001110 | 1111000 |
Octal | 166 | 316 | 170 |
Examples of css and html codes for elements with #76CE78 color. Also use rgb(118,206,120) instead hex code.
.myTextColor { color: #76CE78; }
<p style="color:#76CE78">This sample text font color is #76CE78.</p>
This text font color is #76CE78.
.myBgColor { background-color: #76CE78; }
<div style="background-color:#76CE78">Inner text</div>
This div background color is #76CE78.
.myBorderColor { border: 1px solid #76CE78; }
<div style="border:3px solid #76CE78">Div</div>
This div border color is #76CE78.
.myOpacity80 { color: #76CE78; opacity: 0.8; }
<p style="color:#76CE78;opacity:0.8;">80%</p>
Text with #76CE78 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #76CE78;}
<p style="text-shadow: 3px 3px 1px #76CE78">Text here.</p>
This text has shadow with #76CE78 color.
.textShadow {text-shadow: 3px 3px 1px #76CE78, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #76CE78, 5px 5px 20px red">Text here.</p>
This text has shadow with #76CE78 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#76CE78, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#76CE78, Direction=45, Strength=4)">Text</p>
This text has shadow with #76CE78 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #76CE78; -webkit-box-shadow: 1px 1px 3px 2px #76CE78; box-shadow: 1px 1px 3px 2px #76CE78; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #76CE78; -webkit-box-shadow: 1px 1px 3px 2px #76CE78; box-shadow:1px 1px 3px 2px #76CE78;">
Div content here</div>
This text has color #76CE78 on black background.
This text has color #76CE78 on white background.
This text has black color on #76CE78 background.
This text has white color on #76CE78 background.