HEX: #684C2C
RGB: (104,76,44)
#684C2C contains mainly red and green colors. Web safe color of #684C2C is #663333 (or #633).
#684C2C color RGB value is (104,76,44).
RGB: (104,76,44) (41%,30%,17%)
R 104 of 255 = 41%
G 76 of 255 = 30%
B 44 of 255 = 17%
R + G + B ~ 29%. #684C2C is quite dark color.
R + G + B =
104 + 76 + 44 = 224 (100%)
R 104 of 224 ~ 46.43%
G 76 of 224 ~ 33.93%
B 44 of 224 ~ 19.64%
#684C2C color CMYK value is (0,27,58,59).
CMYK: (0,27,58,59) C0M27Y58K59 (0%,27%,58%,59%) (0.00/0.27/0.58/0.59)
68 | 4C | 2C | |
---|---|---|---|
RGB | 104 | 76 | 44 |
HSL | 32° | 40.54% | 29.02% |
HSB/HSV | 32° | 57.69% | 40.78% |
CMYK | 0.00% | 26.92% | 57.69% |
59.22% |
HEX | 68 | 4C | 2C |
Decimal | 104 | 76 | 44 |
Binary | 1101000 | 1001100 | 101100 |
Octal | 150 | 114 | 54 |
Examples of css and html codes for elements with #684C2C color. Also use rgb(104,76,44) instead hex code.
.myTextColor { color: #684C2C; }
<p style="color:#684C2C">This sample text font color is #684C2C.</p>
This text font color is #684C2C.
.myBgColor { background-color: #684C2C; }
<div style="background-color:#684C2C">Inner text</div>
This div background color is #684C2C.
.myBorderColor { border: 1px solid #684C2C; }
<div style="border:3px solid #684C2C">Div</div>
This div border color is #684C2C.
.myOpacity80 { color: #684C2C; opacity: 0.8; }
<p style="color:#684C2C;opacity:0.8;">80%</p>
Text with #684C2C color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #684C2C;}
<p style="text-shadow: 3px 3px 1px #684C2C">Text here.</p>
This text has shadow with #684C2C color.
.textShadow {text-shadow: 3px 3px 1px #684C2C, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #684C2C, 5px 5px 20px red">Text here.</p>
This text has shadow with #684C2C primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#684C2C, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#684C2C, Direction=45, Strength=4)">Text</p>
This text has shadow with #684C2C and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #684C2C; -webkit-box-shadow: 1px 1px 3px 2px #684C2C; box-shadow: 1px 1px 3px 2px #684C2C; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #684C2C; -webkit-box-shadow: 1px 1px 3px 2px #684C2C; box-shadow:1px 1px 3px 2px #684C2C;">
Div content here</div>
This text has color #684C2C on black background.
This text has color #684C2C on white background.
This text has black color on #684C2C background.
This text has white color on #684C2C background.