HEX: #6E895D
RGB: (110,137,93)
#6E895D contains red, green and blue colors in about the same proportion. Web safe color of #6E895D is #669966 (or #696).
#6E895D color RGB value is (110,137,93).
RGB: (110,137,93) (43%,54%,36%)
R 110 of 255 = 43%
G 137 of 255 = 54%
B 93 of 255 = 36%
R + G + B ~ 44%. #6E895D is middle color (not dark and not light).
R + G + B =
110 + 137 + 93 = 340 (100%)
R 110 of 340 ~ 32.35%
G 137 of 340 ~ 40.29%
B 93 of 340 ~ 27.35%
#6E895D color CMYK value is (20,0,32,46).
CMYK: (20,0,32,46) C20M0Y32K46 (20%,0%,32%,46%) (0.20/0.00/0.32/0.46)
6E | 89 | 5D | |
---|---|---|---|
RGB | 110 | 137 | 93 |
HSL | 97° | 19.13% | 45.10% |
HSB/HSV | 97° | 32.12% | 53.73% |
CMYK | 19.71% | 0.00% | 32.12% |
46.27% |
HEX | 6E | 89 | 5D |
Decimal | 110 | 137 | 93 |
Binary | 1101110 | 10001001 | 1011101 |
Octal | 156 | 211 | 135 |
Examples of css and html codes for elements with #6E895D color. Also use rgb(110,137,93) instead hex code.
.myTextColor { color: #6E895D; }
<p style="color:#6E895D">This sample text font color is #6E895D.</p>
This text font color is #6E895D.
.myBgColor { background-color: #6E895D; }
<div style="background-color:#6E895D">Inner text</div>
This div background color is #6E895D.
.myBorderColor { border: 1px solid #6E895D; }
<div style="border:3px solid #6E895D">Div</div>
This div border color is #6E895D.
.myOpacity80 { color: #6E895D; opacity: 0.8; }
<p style="color:#6E895D;opacity:0.8;">80%</p>
Text with #6E895D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #6E895D;}
<p style="text-shadow: 3px 3px 1px #6E895D">Text here.</p>
This text has shadow with #6E895D color.
.textShadow {text-shadow: 3px 3px 1px #6E895D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #6E895D, 5px 5px 20px red">Text here.</p>
This text has shadow with #6E895D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#6E895D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#6E895D, Direction=45, Strength=4)">Text</p>
This text has shadow with #6E895D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #6E895D; -webkit-box-shadow: 1px 1px 3px 2px #6E895D; box-shadow: 1px 1px 3px 2px #6E895D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #6E895D; -webkit-box-shadow: 1px 1px 3px 2px #6E895D; box-shadow:1px 1px 3px 2px #6E895D;">
Div content here</div>
This text has color #6E895D on black background.
This text has color #6E895D on white background.
This text has black color on #6E895D background.
This text has white color on #6E895D background.