HEX: #6E472D
RGB: (110,71,45)
#6E472D contains mainly red and green colors. Web safe color of #6E472D is #663333 (or #633).
#6E472D color RGB value is (110,71,45).
RGB: (110,71,45) (43%,28%,18%)
R 110 of 255 = 43%
G 71 of 255 = 28%
B 45 of 255 = 18%
R + G + B ~ 30%. #6E472D is quite dark color.
R + G + B =
110 + 71 + 45 = 226 (100%)
R 110 of 226 ~ 48.67%
G 71 of 226 ~ 31.42%
B 45 of 226 ~ 19.91%
#6E472D color CMYK value is (0,35,59,57).
CMYK: (0,35,59,57) C0M35Y59K57 (0%,35%,59%,57%) (0.00/0.35/0.59/0.57)
6E | 47 | 2D | |
---|---|---|---|
RGB | 110 | 71 | 45 |
HSL | 24° | 41.94% | 30.39% |
HSB/HSV | 24° | 59.09% | 43.14% |
CMYK | 0.00% | 35.45% | 59.09% |
56.86% |
HEX | 6E | 47 | 2D |
Decimal | 110 | 71 | 45 |
Binary | 1101110 | 1000111 | 101101 |
Octal | 156 | 107 | 55 |
Examples of css and html codes for elements with #6E472D color. Also use rgb(110,71,45) instead hex code.
.myTextColor { color: #6E472D; }
<p style="color:#6E472D">This sample text font color is #6E472D.</p>
This text font color is #6E472D.
.myBgColor { background-color: #6E472D; }
<div style="background-color:#6E472D">Inner text</div>
This div background color is #6E472D.
.myBorderColor { border: 1px solid #6E472D; }
<div style="border:3px solid #6E472D">Div</div>
This div border color is #6E472D.
.myOpacity80 { color: #6E472D; opacity: 0.8; }
<p style="color:#6E472D;opacity:0.8;">80%</p>
Text with #6E472D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #6E472D;}
<p style="text-shadow: 3px 3px 1px #6E472D">Text here.</p>
This text has shadow with #6E472D color.
.textShadow {text-shadow: 3px 3px 1px #6E472D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #6E472D, 5px 5px 20px red">Text here.</p>
This text has shadow with #6E472D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#6E472D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#6E472D, Direction=45, Strength=4)">Text</p>
This text has shadow with #6E472D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #6E472D; -webkit-box-shadow: 1px 1px 3px 2px #6E472D; box-shadow: 1px 1px 3px 2px #6E472D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #6E472D; -webkit-box-shadow: 1px 1px 3px 2px #6E472D; box-shadow:1px 1px 3px 2px #6E472D;">
Div content here</div>
This text has color #6E472D on black background.
This text has color #6E472D on white background.
This text has black color on #6E472D background.
This text has white color on #6E472D background.