HEX: #6E938A
RGB: (110,147,138)
#6E938A contains red, green and blue colors in about the same proportion. Web safe color of #6E938A is #669999 (or #699).
#6E938A color RGB value is (110,147,138).
RGB: (110,147,138) (43%,58%,54%)
R 110 of 255 = 43%
G 147 of 255 = 58%
B 138 of 255 = 54%
R + G + B ~ 52%. #6E938A is middle color (not dark and not light).
R + G + B =
110 + 147 + 138 = 395 (100%)
R 110 of 395 ~ 27.85%
G 147 of 395 ~ 37.22%
B 138 of 395 ~ 34.94%
#6E938A color CMYK value is (25,0,6,42).
CMYK: (25,0,6,42) C25M0Y6K42 (25%,0%,6%,42%) (0.25/0.00/0.06/0.42)
6E | 93 | 8A | |
---|---|---|---|
RGB | 110 | 147 | 138 |
HSL | 165° | 14.62% | 50.39% |
HSB/HSV | 165° | 25.17% | 57.65% |
CMYK | 25.17% | 0.00% | 6.12% |
42.35% |
HEX | 6E | 93 | 8A |
Decimal | 110 | 147 | 138 |
Binary | 1101110 | 10010011 | 10001010 |
Octal | 156 | 223 | 212 |
Examples of css and html codes for elements with #6E938A color. Also use rgb(110,147,138) instead hex code.
.myTextColor { color: #6E938A; }
<p style="color:#6E938A">This sample text font color is #6E938A.</p>
This text font color is #6E938A.
.myBgColor { background-color: #6E938A; }
<div style="background-color:#6E938A">Inner text</div>
This div background color is #6E938A.
.myBorderColor { border: 1px solid #6E938A; }
<div style="border:3px solid #6E938A">Div</div>
This div border color is #6E938A.
.myOpacity80 { color: #6E938A; opacity: 0.8; }
<p style="color:#6E938A;opacity:0.8;">80%</p>
Text with #6E938A color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #6E938A;}
<p style="text-shadow: 3px 3px 1px #6E938A">Text here.</p>
This text has shadow with #6E938A color.
.textShadow {text-shadow: 3px 3px 1px #6E938A, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #6E938A, 5px 5px 20px red">Text here.</p>
This text has shadow with #6E938A primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#6E938A, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#6E938A, Direction=45, Strength=4)">Text</p>
This text has shadow with #6E938A and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #6E938A; -webkit-box-shadow: 1px 1px 3px 2px #6E938A; box-shadow: 1px 1px 3px 2px #6E938A; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #6E938A; -webkit-box-shadow: 1px 1px 3px 2px #6E938A; box-shadow:1px 1px 3px 2px #6E938A;">
Div content here</div>
This text has color #6E938A on black background.
This text has color #6E938A on white background.
This text has black color on #6E938A background.
This text has white color on #6E938A background.