HEX: #63684F
RGB: (99,104,79)
#63684F contains red, green and blue colors in about the same proportion. Web safe color of #63684F is #666666 (or #666).
#63684F color RGB value is (99,104,79).
RGB: (99,104,79) (39%,41%,31%)
R 99 of 255 = 39%
G 104 of 255 = 41%
B 79 of 255 = 31%
R + G + B ~ 37%. #63684F is quite dark color.
R + G + B =
99 + 104 + 79 = 282 (100%)
R 99 of 282 ~ 35.11%
G 104 of 282 ~ 36.88%
B 79 of 282 ~ 28.01%
#63684F color CMYK value is (5,0,24,59).
CMYK: (5,0,24,59) C5M0Y24K59 (5%,0%,24%,59%) (0.05/0.00/0.24/0.59)
63 | 68 | 4F | |
---|---|---|---|
RGB | 99 | 104 | 79 |
HSL | 72° | 13.66% | 35.88% |
HSB/HSV | 72° | 24.04% | 40.78% |
CMYK | 4.81% | 0.00% | 24.04% |
59.22% |
HEX | 63 | 68 | 4F |
Decimal | 99 | 104 | 79 |
Binary | 1100011 | 1101000 | 1001111 |
Octal | 143 | 150 | 117 |
Examples of css and html codes for elements with #63684F color. Also use rgb(99,104,79) instead hex code.
.myTextColor { color: #63684F; }
<p style="color:#63684F">This sample text font color is #63684F.</p>
This text font color is #63684F.
.myBgColor { background-color: #63684F; }
<div style="background-color:#63684F">Inner text</div>
This div background color is #63684F.
.myBorderColor { border: 1px solid #63684F; }
<div style="border:3px solid #63684F">Div</div>
This div border color is #63684F.
.myOpacity80 { color: #63684F; opacity: 0.8; }
<p style="color:#63684F;opacity:0.8;">80%</p>
Text with #63684F color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #63684F;}
<p style="text-shadow: 3px 3px 1px #63684F">Text here.</p>
This text has shadow with #63684F color.
.textShadow {text-shadow: 3px 3px 1px #63684F, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #63684F, 5px 5px 20px red">Text here.</p>
This text has shadow with #63684F primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#63684F, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#63684F, Direction=45, Strength=4)">Text</p>
This text has shadow with #63684F and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #63684F; -webkit-box-shadow: 1px 1px 3px 2px #63684F; box-shadow: 1px 1px 3px 2px #63684F; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #63684F; -webkit-box-shadow: 1px 1px 3px 2px #63684F; box-shadow:1px 1px 3px 2px #63684F;">
Div content here</div>
This text has color #63684F on black background.
This text has color #63684F on white background.
This text has black color on #63684F background.
This text has white color on #63684F background.