HEX: #6B474E
RGB: (107,71,78)
#6B474E contains red, green and blue colors in about the same proportion. Web safe color of #6B474E is #663366 (or #636).
#6B474E color RGB value is (107,71,78).
RGB: (107,71,78) (42%,28%,31%)
R 107 of 255 = 42%
G 71 of 255 = 28%
B 78 of 255 = 31%
R + G + B ~ 34%. #6B474E is quite dark color.
R + G + B =
107 + 71 + 78 = 256 (100%)
R 107 of 256 ~ 41.8%
G 71 of 256 ~ 27.73%
B 78 of 256 ~ 30.47%
#6B474E color CMYK value is (0,34,27,58).
CMYK: (0,34,27,58) C0M34Y27K58 (0%,34%,27%,58%) (0.00/0.34/0.27/0.58)
6B | 47 | 4E | |
---|---|---|---|
RGB | 107 | 71 | 78 |
HSL | 348° | 20.22% | 34.90% |
HSB/HSV | 348° | 33.64% | 41.96% |
CMYK | 0.00% | 33.64% | 27.10% |
58.04% |
HEX | 6B | 47 | 4E |
Decimal | 107 | 71 | 78 |
Binary | 1101011 | 1000111 | 1001110 |
Octal | 153 | 107 | 116 |
Examples of css and html codes for elements with #6B474E color. Also use rgb(107,71,78) instead hex code.
.myTextColor { color: #6B474E; }
<p style="color:#6B474E">This sample text font color is #6B474E.</p>
This text font color is #6B474E.
.myBgColor { background-color: #6B474E; }
<div style="background-color:#6B474E">Inner text</div>
This div background color is #6B474E.
.myBorderColor { border: 1px solid #6B474E; }
<div style="border:3px solid #6B474E">Div</div>
This div border color is #6B474E.
.myOpacity80 { color: #6B474E; opacity: 0.8; }
<p style="color:#6B474E;opacity:0.8;">80%</p>
Text with #6B474E color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #6B474E;}
<p style="text-shadow: 3px 3px 1px #6B474E">Text here.</p>
This text has shadow with #6B474E color.
.textShadow {text-shadow: 3px 3px 1px #6B474E, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #6B474E, 5px 5px 20px red">Text here.</p>
This text has shadow with #6B474E primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#6B474E, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#6B474E, Direction=45, Strength=4)">Text</p>
This text has shadow with #6B474E and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #6B474E; -webkit-box-shadow: 1px 1px 3px 2px #6B474E; box-shadow: 1px 1px 3px 2px #6B474E; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #6B474E; -webkit-box-shadow: 1px 1px 3px 2px #6B474E; box-shadow:1px 1px 3px 2px #6B474E;">
Div content here</div>
This text has color #6B474E on black background.
This text has color #6B474E on white background.
This text has black color on #6B474E background.
This text has white color on #6B474E background.