HEX: #6E754A
RGB: (110,117,74)
#6E754A contains red, green and blue colors in about the same proportion. Web safe color of #6E754A is #666633 (or #663).
#6E754A color RGB value is (110,117,74).
RGB: (110,117,74) (43%,46%,29%)
R 110 of 255 = 43%
G 117 of 255 = 46%
B 74 of 255 = 29%
R + G + B ~ 39%. #6E754A is quite dark color.
R + G + B =
110 + 117 + 74 = 301 (100%)
R 110 of 301 ~ 36.54%
G 117 of 301 ~ 38.87%
B 74 of 301 ~ 24.58%
#6E754A color CMYK value is (6,0,37,54).
CMYK: (6,0,37,54) C6M0Y37K54 (6%,0%,37%,54%) (0.06/0.00/0.37/0.54)
6E | 75 | 4A | |
---|---|---|---|
RGB | 110 | 117 | 74 |
HSL | 70° | 22.51% | 37.45% |
HSB/HSV | 70° | 36.75% | 45.88% |
CMYK | 5.98% | 0.00% | 36.75% |
54.12% |
HEX | 6E | 75 | 4A |
Decimal | 110 | 117 | 74 |
Binary | 1101110 | 1110101 | 1001010 |
Octal | 156 | 165 | 112 |
Examples of css and html codes for elements with #6E754A color. Also use rgb(110,117,74) instead hex code.
.myTextColor { color: #6E754A; }
<p style="color:#6E754A">This sample text font color is #6E754A.</p>
This text font color is #6E754A.
.myBgColor { background-color: #6E754A; }
<div style="background-color:#6E754A">Inner text</div>
This div background color is #6E754A.
.myBorderColor { border: 1px solid #6E754A; }
<div style="border:3px solid #6E754A">Div</div>
This div border color is #6E754A.
.myOpacity80 { color: #6E754A; opacity: 0.8; }
<p style="color:#6E754A;opacity:0.8;">80%</p>
Text with #6E754A color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #6E754A;}
<p style="text-shadow: 3px 3px 1px #6E754A">Text here.</p>
This text has shadow with #6E754A color.
.textShadow {text-shadow: 3px 3px 1px #6E754A, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #6E754A, 5px 5px 20px red">Text here.</p>
This text has shadow with #6E754A primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#6E754A, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#6E754A, Direction=45, Strength=4)">Text</p>
This text has shadow with #6E754A and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #6E754A; -webkit-box-shadow: 1px 1px 3px 2px #6E754A; box-shadow: 1px 1px 3px 2px #6E754A; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #6E754A; -webkit-box-shadow: 1px 1px 3px 2px #6E754A; box-shadow:1px 1px 3px 2px #6E754A;">
Div content here</div>
This text has color #6E754A on black background.
This text has color #6E754A on white background.
This text has black color on #6E754A background.
This text has white color on #6E754A background.