HEX: #6E363E
RGB: (110,54,62)
#6E363E contains red, green and blue colors in about the same proportion. Web safe color of #6E363E is #663333 (or #633).
#6E363E color RGB value is (110,54,62).
RGB: (110,54,62) (43%,21%,24%)
R 110 of 255 = 43%
G 54 of 255 = 21%
B 62 of 255 = 24%
R + G + B ~ 29%. #6E363E is quite dark color.
R + G + B =
110 + 54 + 62 = 226 (100%)
R 110 of 226 ~ 48.67%
G 54 of 226 ~ 23.89%
B 62 of 226 ~ 27.43%
#6E363E color CMYK value is (0,51,44,57).
CMYK: (0,51,44,57) C0M51Y44K57 (0%,51%,44%,57%) (0.00/0.51/0.44/0.57)
6E | 36 | 3E | |
---|---|---|---|
RGB | 110 | 54 | 62 |
HSL | 351° | 34.15% | 32.16% |
HSB/HSV | 351° | 50.91% | 43.14% |
CMYK | 0.00% | 50.91% | 43.64% |
56.86% |
HEX | 6E | 36 | 3E |
Decimal | 110 | 54 | 62 |
Binary | 1101110 | 110110 | 111110 |
Octal | 156 | 66 | 76 |
Examples of css and html codes for elements with #6E363E color. Also use rgb(110,54,62) instead hex code.
.myTextColor { color: #6E363E; }
<p style="color:#6E363E">This sample text font color is #6E363E.</p>
This text font color is #6E363E.
.myBgColor { background-color: #6E363E; }
<div style="background-color:#6E363E">Inner text</div>
This div background color is #6E363E.
.myBorderColor { border: 1px solid #6E363E; }
<div style="border:3px solid #6E363E">Div</div>
This div border color is #6E363E.
.myOpacity80 { color: #6E363E; opacity: 0.8; }
<p style="color:#6E363E;opacity:0.8;">80%</p>
Text with #6E363E color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #6E363E;}
<p style="text-shadow: 3px 3px 1px #6E363E">Text here.</p>
This text has shadow with #6E363E color.
.textShadow {text-shadow: 3px 3px 1px #6E363E, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #6E363E, 5px 5px 20px red">Text here.</p>
This text has shadow with #6E363E primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#6E363E, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#6E363E, Direction=45, Strength=4)">Text</p>
This text has shadow with #6E363E and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #6E363E; -webkit-box-shadow: 1px 1px 3px 2px #6E363E; box-shadow: 1px 1px 3px 2px #6E363E; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #6E363E; -webkit-box-shadow: 1px 1px 3px 2px #6E363E; box-shadow:1px 1px 3px 2px #6E363E;">
Div content here</div>
This text has color #6E363E on black background.
This text has color #6E363E on white background.
This text has black color on #6E363E background.
This text has white color on #6E363E background.