HEX: #63504C
RGB: (99,80,76)
#63504C contains red, green and blue colors in about the same proportion. Web safe color of #63504C is #666633 (or #663).
#63504C color RGB value is (99,80,76).
RGB: (99,80,76) (39%,31%,30%)
R 99 of 255 = 39%
G 80 of 255 = 31%
B 76 of 255 = 30%
R + G + B ~ 33%. #63504C is quite dark color.
R + G + B =
99 + 80 + 76 = 255 (100%)
R 99 of 255 ~ 38.82%
G 80 of 255 ~ 31.37%
B 76 of 255 ~ 29.8%
#63504C color CMYK value is (0,19,23,61).
CMYK: (0,19,23,61) C0M19Y23K61 (0%,19%,23%,61%) (0.00/0.19/0.23/0.61)
63 | 50 | 4C | |
---|---|---|---|
RGB | 99 | 80 | 76 |
HSL | 10° | 13.14% | 34.31% |
HSB/HSV | 10° | 23.23% | 38.82% |
CMYK | 0.00% | 19.19% | 23.23% |
61.18% |
HEX | 63 | 50 | 4C |
Decimal | 99 | 80 | 76 |
Binary | 1100011 | 1010000 | 1001100 |
Octal | 143 | 120 | 114 |
Examples of css and html codes for elements with #63504C color. Also use rgb(99,80,76) instead hex code.
.myTextColor { color: #63504C; }
<p style="color:#63504C">This sample text font color is #63504C.</p>
This text font color is #63504C.
.myBgColor { background-color: #63504C; }
<div style="background-color:#63504C">Inner text</div>
This div background color is #63504C.
.myBorderColor { border: 1px solid #63504C; }
<div style="border:3px solid #63504C">Div</div>
This div border color is #63504C.
.myOpacity80 { color: #63504C; opacity: 0.8; }
<p style="color:#63504C;opacity:0.8;">80%</p>
Text with #63504C color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #63504C;}
<p style="text-shadow: 3px 3px 1px #63504C">Text here.</p>
This text has shadow with #63504C color.
.textShadow {text-shadow: 3px 3px 1px #63504C, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #63504C, 5px 5px 20px red">Text here.</p>
This text has shadow with #63504C primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#63504C, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#63504C, Direction=45, Strength=4)">Text</p>
This text has shadow with #63504C and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #63504C; -webkit-box-shadow: 1px 1px 3px 2px #63504C; box-shadow: 1px 1px 3px 2px #63504C; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #63504C; -webkit-box-shadow: 1px 1px 3px 2px #63504C; box-shadow:1px 1px 3px 2px #63504C;">
Div content here</div>
This text has color #63504C on black background.
This text has color #63504C on white background.
This text has black color on #63504C background.
This text has white color on #63504C background.