HEX: #6EBC46
RGB: (110,188,70)
#6EBC46 contains mainly green color. Web safe color of #6EBC46 is #66CC33 (or #6C3).
#6EBC46 color RGB value is (110,188,70).
RGB: (110,188,70) (43%,74%,27%)
R 110 of 255 = 43%
G 188 of 255 = 74%
B 70 of 255 = 27%
R + G + B ~ 48%. #6EBC46 is middle color (not dark and not light).
R + G + B =
110 + 188 + 70 = 368 (100%)
R 110 of 368 ~ 29.89%
G 188 of 368 ~ 51.09%
B 70 of 368 ~ 19.02%
#6EBC46 color CMYK value is (41,0,63,26).
CMYK: (41,0,63,26) C41M0Y63K26 (41%,0%,63%,26%) (0.41/0.00/0.63/0.26)
6E | BC | 46 | |
---|---|---|---|
RGB | 110 | 188 | 70 |
HSL | 100° | 46.83% | 50.59% |
HSB/HSV | 100° | 62.77% | 73.73% |
CMYK | 41.49% | 0.00% | 62.77% |
26.27% |
HEX | 6E | BC | 46 |
Decimal | 110 | 188 | 70 |
Binary | 1101110 | 10111100 | 1000110 |
Octal | 156 | 274 | 106 |
Examples of css and html codes for elements with #6EBC46 color. Also use rgb(110,188,70) instead hex code.
.myTextColor { color: #6EBC46; }
<p style="color:#6EBC46">This sample text font color is #6EBC46.</p>
This text font color is #6EBC46.
.myBgColor { background-color: #6EBC46; }
<div style="background-color:#6EBC46">Inner text</div>
This div background color is #6EBC46.
.myBorderColor { border: 1px solid #6EBC46; }
<div style="border:3px solid #6EBC46">Div</div>
This div border color is #6EBC46.
.myOpacity80 { color: #6EBC46; opacity: 0.8; }
<p style="color:#6EBC46;opacity:0.8;">80%</p>
Text with #6EBC46 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #6EBC46;}
<p style="text-shadow: 3px 3px 1px #6EBC46">Text here.</p>
This text has shadow with #6EBC46 color.
.textShadow {text-shadow: 3px 3px 1px #6EBC46, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #6EBC46, 5px 5px 20px red">Text here.</p>
This text has shadow with #6EBC46 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#6EBC46, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#6EBC46, Direction=45, Strength=4)">Text</p>
This text has shadow with #6EBC46 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #6EBC46; -webkit-box-shadow: 1px 1px 3px 2px #6EBC46; box-shadow: 1px 1px 3px 2px #6EBC46; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #6EBC46; -webkit-box-shadow: 1px 1px 3px 2px #6EBC46; box-shadow:1px 1px 3px 2px #6EBC46;">
Div content here</div>
This text has color #6EBC46 on black background.
This text has color #6EBC46 on white background.
This text has black color on #6EBC46 background.
This text has white color on #6EBC46 background.