HEX: #63746C
RGB: (99,116,108)
#63746C contains red, green and blue colors in about the same proportion. Web safe color of #63746C is #666666 (or #666).
#63746C color RGB value is (99,116,108).
RGB: (99,116,108) (39%,45%,42%)
R 99 of 255 = 39%
G 116 of 255 = 45%
B 108 of 255 = 42%
R + G + B ~ 42%. #63746C is middle color (not dark and not light).
R + G + B =
99 + 116 + 108 = 323 (100%)
R 99 of 323 ~ 30.65%
G 116 of 323 ~ 35.91%
B 108 of 323 ~ 33.44%
#63746C color CMYK value is (15,0,7,55).
CMYK: (15,0,7,55) C15M0Y7K55 (15%,0%,7%,55%) (0.15/0.00/0.07/0.55)
63 | 74 | 6C | |
---|---|---|---|
RGB | 99 | 116 | 108 |
HSL | 152° | 7.91% | 42.16% |
HSB/HSV | 152° | 14.66% | 45.49% |
CMYK | 14.66% | 0.00% | 6.90% |
54.51% |
HEX | 63 | 74 | 6C |
Decimal | 99 | 116 | 108 |
Binary | 1100011 | 1110100 | 1101100 |
Octal | 143 | 164 | 154 |
Examples of css and html codes for elements with #63746C color. Also use rgb(99,116,108) instead hex code.
.myTextColor { color: #63746C; }
<p style="color:#63746C">This sample text font color is #63746C.</p>
This text font color is #63746C.
.myBgColor { background-color: #63746C; }
<div style="background-color:#63746C">Inner text</div>
This div background color is #63746C.
.myBorderColor { border: 1px solid #63746C; }
<div style="border:3px solid #63746C">Div</div>
This div border color is #63746C.
.myOpacity80 { color: #63746C; opacity: 0.8; }
<p style="color:#63746C;opacity:0.8;">80%</p>
Text with #63746C color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #63746C;}
<p style="text-shadow: 3px 3px 1px #63746C">Text here.</p>
This text has shadow with #63746C color.
.textShadow {text-shadow: 3px 3px 1px #63746C, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #63746C, 5px 5px 20px red">Text here.</p>
This text has shadow with #63746C primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#63746C, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#63746C, Direction=45, Strength=4)">Text</p>
This text has shadow with #63746C and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #63746C; -webkit-box-shadow: 1px 1px 3px 2px #63746C; box-shadow: 1px 1px 3px 2px #63746C; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #63746C; -webkit-box-shadow: 1px 1px 3px 2px #63746C; box-shadow:1px 1px 3px 2px #63746C;">
Div content here</div>
This text has color #63746C on black background.
This text has color #63746C on white background.
This text has black color on #63746C background.
This text has white color on #63746C background.