HEX: #6E664C
RGB: (110,102,76)
#6E664C contains red, green and blue colors in about the same proportion. Web safe color of #6E664C is #666633 (or #663).
#6E664C color RGB value is (110,102,76).
RGB: (110,102,76) (43%,40%,30%)
R 110 of 255 = 43%
G 102 of 255 = 40%
B 76 of 255 = 30%
R + G + B ~ 38%. #6E664C is quite dark color.
R + G + B =
110 + 102 + 76 = 288 (100%)
R 110 of 288 ~ 38.19%
G 102 of 288 ~ 35.42%
B 76 of 288 ~ 26.39%
#6E664C color CMYK value is (0,7,31,57).
CMYK: (0,7,31,57) C0M7Y31K57 (0%,7%,31%,57%) (0.00/0.07/0.31/0.57)
6E | 66 | 4C | |
---|---|---|---|
RGB | 110 | 102 | 76 |
HSL | 46° | 18.28% | 36.47% |
HSB/HSV | 46° | 30.91% | 43.14% |
CMYK | 0.00% | 7.27% | 30.91% |
56.86% |
HEX | 6E | 66 | 4C |
Decimal | 110 | 102 | 76 |
Binary | 1101110 | 1100110 | 1001100 |
Octal | 156 | 146 | 114 |
Examples of css and html codes for elements with #6E664C color. Also use rgb(110,102,76) instead hex code.
.myTextColor { color: #6E664C; }
<p style="color:#6E664C">This sample text font color is #6E664C.</p>
This text font color is #6E664C.
.myBgColor { background-color: #6E664C; }
<div style="background-color:#6E664C">Inner text</div>
This div background color is #6E664C.
.myBorderColor { border: 1px solid #6E664C; }
<div style="border:3px solid #6E664C">Div</div>
This div border color is #6E664C.
.myOpacity80 { color: #6E664C; opacity: 0.8; }
<p style="color:#6E664C;opacity:0.8;">80%</p>
Text with #6E664C color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #6E664C;}
<p style="text-shadow: 3px 3px 1px #6E664C">Text here.</p>
This text has shadow with #6E664C color.
.textShadow {text-shadow: 3px 3px 1px #6E664C, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #6E664C, 5px 5px 20px red">Text here.</p>
This text has shadow with #6E664C primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#6E664C, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#6E664C, Direction=45, Strength=4)">Text</p>
This text has shadow with #6E664C and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #6E664C; -webkit-box-shadow: 1px 1px 3px 2px #6E664C; box-shadow: 1px 1px 3px 2px #6E664C; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #6E664C; -webkit-box-shadow: 1px 1px 3px 2px #6E664C; box-shadow:1px 1px 3px 2px #6E664C;">
Div content here</div>
This text has color #6E664C on black background.
This text has color #6E664C on white background.
This text has black color on #6E664C background.
This text has white color on #6E664C background.