HEX: #684C51
RGB: (104,76,81)
#684C51 contains red, green and blue colors in about the same proportion. Web safe color of #684C51 is #663366 (or #636).
#684C51 color RGB value is (104,76,81).
RGB: (104,76,81) (41%,30%,32%)
R 104 of 255 = 41%
G 76 of 255 = 30%
B 81 of 255 = 32%
R + G + B ~ 34%. #684C51 is quite dark color.
R + G + B =
104 + 76 + 81 = 261 (100%)
R 104 of 261 ~ 39.85%
G 76 of 261 ~ 29.12%
B 81 of 261 ~ 31.03%
#684C51 color CMYK value is (0,27,22,59).
CMYK: (0,27,22,59) C0M27Y22K59 (0%,27%,22%,59%) (0.00/0.27/0.22/0.59)
68 | 4C | 51 | |
---|---|---|---|
RGB | 104 | 76 | 81 |
HSL | 349° | 15.56% | 35.29% |
HSB/HSV | 349° | 26.92% | 40.78% |
CMYK | 0.00% | 26.92% | 22.12% |
59.22% |
HEX | 68 | 4C | 51 |
Decimal | 104 | 76 | 81 |
Binary | 1101000 | 1001100 | 1010001 |
Octal | 150 | 114 | 121 |
Examples of css and html codes for elements with #684C51 color. Also use rgb(104,76,81) instead hex code.
.myTextColor { color: #684C51; }
<p style="color:#684C51">This sample text font color is #684C51.</p>
This text font color is #684C51.
.myBgColor { background-color: #684C51; }
<div style="background-color:#684C51">Inner text</div>
This div background color is #684C51.
.myBorderColor { border: 1px solid #684C51; }
<div style="border:3px solid #684C51">Div</div>
This div border color is #684C51.
.myOpacity80 { color: #684C51; opacity: 0.8; }
<p style="color:#684C51;opacity:0.8;">80%</p>
Text with #684C51 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #684C51;}
<p style="text-shadow: 3px 3px 1px #684C51">Text here.</p>
This text has shadow with #684C51 color.
.textShadow {text-shadow: 3px 3px 1px #684C51, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #684C51, 5px 5px 20px red">Text here.</p>
This text has shadow with #684C51 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#684C51, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#684C51, Direction=45, Strength=4)">Text</p>
This text has shadow with #684C51 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #684C51; -webkit-box-shadow: 1px 1px 3px 2px #684C51; box-shadow: 1px 1px 3px 2px #684C51; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #684C51; -webkit-box-shadow: 1px 1px 3px 2px #684C51; box-shadow:1px 1px 3px 2px #684C51;">
Div content here</div>
This text has color #684C51 on black background.
This text has color #684C51 on white background.
This text has black color on #684C51 background.
This text has white color on #684C51 background.