HEX: #6EBC78
RGB: (110,188,120)
#6EBC78 contains mainly green color. Web safe color of #6EBC78 is #66CC66 (or #6C6).
#6EBC78 color RGB value is (110,188,120).
RGB: (110,188,120) (43%,74%,47%)
R 110 of 255 = 43%
G 188 of 255 = 74%
B 120 of 255 = 47%
R + G + B ~ 55%. #6EBC78 is middle color (not dark and not light).
R + G + B =
110 + 188 + 120 = 418 (100%)
R 110 of 418 ~ 26.32%
G 188 of 418 ~ 44.98%
B 120 of 418 ~ 28.71%
#6EBC78 color CMYK value is (41,0,36,26).
CMYK: (41,0,36,26) C41M0Y36K26 (41%,0%,36%,26%) (0.41/0.00/0.36/0.26)
6E | BC | 78 | |
---|---|---|---|
RGB | 110 | 188 | 120 |
HSL | 128° | 36.79% | 58.43% |
HSB/HSV | 128° | 41.49% | 73.73% |
CMYK | 41.49% | 0.00% | 36.17% |
26.27% |
HEX | 6E | BC | 78 |
Decimal | 110 | 188 | 120 |
Binary | 1101110 | 10111100 | 1111000 |
Octal | 156 | 274 | 170 |
Examples of css and html codes for elements with #6EBC78 color. Also use rgb(110,188,120) instead hex code.
.myTextColor { color: #6EBC78; }
<p style="color:#6EBC78">This sample text font color is #6EBC78.</p>
This text font color is #6EBC78.
.myBgColor { background-color: #6EBC78; }
<div style="background-color:#6EBC78">Inner text</div>
This div background color is #6EBC78.
.myBorderColor { border: 1px solid #6EBC78; }
<div style="border:3px solid #6EBC78">Div</div>
This div border color is #6EBC78.
.myOpacity80 { color: #6EBC78; opacity: 0.8; }
<p style="color:#6EBC78;opacity:0.8;">80%</p>
Text with #6EBC78 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #6EBC78;}
<p style="text-shadow: 3px 3px 1px #6EBC78">Text here.</p>
This text has shadow with #6EBC78 color.
.textShadow {text-shadow: 3px 3px 1px #6EBC78, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #6EBC78, 5px 5px 20px red">Text here.</p>
This text has shadow with #6EBC78 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#6EBC78, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#6EBC78, Direction=45, Strength=4)">Text</p>
This text has shadow with #6EBC78 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #6EBC78; -webkit-box-shadow: 1px 1px 3px 2px #6EBC78; box-shadow: 1px 1px 3px 2px #6EBC78; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #6EBC78; -webkit-box-shadow: 1px 1px 3px 2px #6EBC78; box-shadow:1px 1px 3px 2px #6EBC78;">
Div content here</div>
This text has color #6EBC78 on black background.
This text has color #6EBC78 on white background.
This text has black color on #6EBC78 background.
This text has white color on #6EBC78 background.