HEX: #6EA58F
RGB: (110,165,143)
#6EA58F contains red, green and blue colors in about the same proportion. Web safe color of #6EA58F is #669999 (or #699).
#6EA58F color RGB value is (110,165,143).
RGB: (110,165,143) (43%,65%,56%)
R 110 of 255 = 43%
G 165 of 255 = 65%
B 143 of 255 = 56%
R + G + B ~ 55%. #6EA58F is middle color (not dark and not light).
R + G + B =
110 + 165 + 143 = 418 (100%)
R 110 of 418 ~ 26.32%
G 165 of 418 ~ 39.47%
B 143 of 418 ~ 34.21%
#6EA58F color CMYK value is (33,0,13,35).
CMYK: (33,0,13,35) C33M0Y13K35 (33%,0%,13%,35%) (0.33/0.00/0.13/0.35)
6E | A5 | 8F | |
---|---|---|---|
RGB | 110 | 165 | 143 |
HSL | 156° | 23.40% | 53.92% |
HSB/HSV | 156° | 33.33% | 64.71% |
CMYK | 33.33% | 0.00% | 13.33% |
35.29% |
HEX | 6E | A5 | 8F |
Decimal | 110 | 165 | 143 |
Binary | 1101110 | 10100101 | 10001111 |
Octal | 156 | 245 | 217 |
Examples of css and html codes for elements with #6EA58F color. Also use rgb(110,165,143) instead hex code.
.myTextColor { color: #6EA58F; }
<p style="color:#6EA58F">This sample text font color is #6EA58F.</p>
This text font color is #6EA58F.
.myBgColor { background-color: #6EA58F; }
<div style="background-color:#6EA58F">Inner text</div>
This div background color is #6EA58F.
.myBorderColor { border: 1px solid #6EA58F; }
<div style="border:3px solid #6EA58F">Div</div>
This div border color is #6EA58F.
.myOpacity80 { color: #6EA58F; opacity: 0.8; }
<p style="color:#6EA58F;opacity:0.8;">80%</p>
Text with #6EA58F color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #6EA58F;}
<p style="text-shadow: 3px 3px 1px #6EA58F">Text here.</p>
This text has shadow with #6EA58F color.
.textShadow {text-shadow: 3px 3px 1px #6EA58F, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #6EA58F, 5px 5px 20px red">Text here.</p>
This text has shadow with #6EA58F primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#6EA58F, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#6EA58F, Direction=45, Strength=4)">Text</p>
This text has shadow with #6EA58F and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #6EA58F; -webkit-box-shadow: 1px 1px 3px 2px #6EA58F; box-shadow: 1px 1px 3px 2px #6EA58F; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #6EA58F; -webkit-box-shadow: 1px 1px 3px 2px #6EA58F; box-shadow:1px 1px 3px 2px #6EA58F;">
Div content here</div>
This text has color #6EA58F on black background.
This text has color #6EA58F on white background.
This text has black color on #6EA58F background.
This text has white color on #6EA58F background.