HEX: #6E4313
RGB: (110,67,19)
#6E4313 contains mainly red and green colors. Web safe color of #6E4313 is #663300 (or #630).
#6E4313 color RGB value is (110,67,19).
RGB: (110,67,19) (43%,26%,7%)
R 110 of 255 = 43%
G 67 of 255 = 26%
B 19 of 255 = 7%
R + G + B ~ 25%. #6E4313 is quite dark color.
R + G + B =
110 + 67 + 19 = 196 (100%)
R 110 of 196 ~ 56.12%
G 67 of 196 ~ 34.18%
B 19 of 196 ~ 9.69%
#6E4313 color CMYK value is (0,39,83,57).
CMYK: (0,39,83,57) C0M39Y83K57 (0%,39%,83%,57%) (0.00/0.39/0.83/0.57)
6E | 43 | 13 | |
---|---|---|---|
RGB | 110 | 67 | 19 |
HSL | 32° | 70.54% | 25.29% |
HSB/HSV | 32° | 82.73% | 43.14% |
CMYK | 0.00% | 39.09% | 82.73% |
56.86% |
HEX | 6E | 43 | 13 |
Decimal | 110 | 67 | 19 |
Binary | 1101110 | 1000011 | 10011 |
Octal | 156 | 103 | 23 |
Examples of css and html codes for elements with #6E4313 color. Also use rgb(110,67,19) instead hex code.
.myTextColor { color: #6E4313; }
<p style="color:#6E4313">This sample text font color is #6E4313.</p>
This text font color is #6E4313.
.myBgColor { background-color: #6E4313; }
<div style="background-color:#6E4313">Inner text</div>
This div background color is #6E4313.
.myBorderColor { border: 1px solid #6E4313; }
<div style="border:3px solid #6E4313">Div</div>
This div border color is #6E4313.
.myOpacity80 { color: #6E4313; opacity: 0.8; }
<p style="color:#6E4313;opacity:0.8;">80%</p>
Text with #6E4313 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #6E4313;}
<p style="text-shadow: 3px 3px 1px #6E4313">Text here.</p>
This text has shadow with #6E4313 color.
.textShadow {text-shadow: 3px 3px 1px #6E4313, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #6E4313, 5px 5px 20px red">Text here.</p>
This text has shadow with #6E4313 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#6E4313, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#6E4313, Direction=45, Strength=4)">Text</p>
This text has shadow with #6E4313 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #6E4313; -webkit-box-shadow: 1px 1px 3px 2px #6E4313; box-shadow: 1px 1px 3px 2px #6E4313; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #6E4313; -webkit-box-shadow: 1px 1px 3px 2px #6E4313; box-shadow:1px 1px 3px 2px #6E4313;">
Div content here</div>
This text has color #6E4313 on black background.
This text has color #6E4313 on white background.
This text has black color on #6E4313 background.
This text has white color on #6E4313 background.