HEX: #684E29
RGB: (104,78,41)
#684E29 contains mainly red and green colors. Web safe color of #684E29 is #666633 (or #663).
#684E29 color RGB value is (104,78,41).
RGB: (104,78,41) (41%,31%,16%)
R 104 of 255 = 41%
G 78 of 255 = 31%
B 41 of 255 = 16%
R + G + B ~ 29%. #684E29 is quite dark color.
R + G + B =
104 + 78 + 41 = 223 (100%)
R 104 of 223 ~ 46.64%
G 78 of 223 ~ 34.98%
B 41 of 223 ~ 18.39%
#684E29 color CMYK value is (0,25,61,59).
CMYK: (0,25,61,59) C0M25Y61K59 (0%,25%,61%,59%) (0.00/0.25/0.61/0.59)
68 | 4E | 29 | |
---|---|---|---|
RGB | 104 | 78 | 41 |
HSL | 35° | 43.45% | 28.43% |
HSB/HSV | 35° | 60.58% | 40.78% |
CMYK | 0.00% | 25.00% | 60.58% |
59.22% |
HEX | 68 | 4E | 29 |
Decimal | 104 | 78 | 41 |
Binary | 1101000 | 1001110 | 101001 |
Octal | 150 | 116 | 51 |
Examples of css and html codes for elements with #684E29 color. Also use rgb(104,78,41) instead hex code.
.myTextColor { color: #684E29; }
<p style="color:#684E29">This sample text font color is #684E29.</p>
This text font color is #684E29.
.myBgColor { background-color: #684E29; }
<div style="background-color:#684E29">Inner text</div>
This div background color is #684E29.
.myBorderColor { border: 1px solid #684E29; }
<div style="border:3px solid #684E29">Div</div>
This div border color is #684E29.
.myOpacity80 { color: #684E29; opacity: 0.8; }
<p style="color:#684E29;opacity:0.8;">80%</p>
Text with #684E29 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #684E29;}
<p style="text-shadow: 3px 3px 1px #684E29">Text here.</p>
This text has shadow with #684E29 color.
.textShadow {text-shadow: 3px 3px 1px #684E29, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #684E29, 5px 5px 20px red">Text here.</p>
This text has shadow with #684E29 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#684E29, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#684E29, Direction=45, Strength=4)">Text</p>
This text has shadow with #684E29 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #684E29; -webkit-box-shadow: 1px 1px 3px 2px #684E29; box-shadow: 1px 1px 3px 2px #684E29; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #684E29; -webkit-box-shadow: 1px 1px 3px 2px #684E29; box-shadow:1px 1px 3px 2px #684E29;">
Div content here</div>
This text has color #684E29 on black background.
This text has color #684E29 on white background.
This text has black color on #684E29 background.
This text has white color on #684E29 background.