HEX: #63385C
RGB: (99,56,92)
#63385C contains red, green and blue colors in about the same proportion. Web safe color of #63385C is #663366 (or #636).
#63385C color RGB value is (99,56,92).
RGB: (99,56,92) (39%,22%,36%)
R 99 of 255 = 39%
G 56 of 255 = 22%
B 92 of 255 = 36%
R + G + B ~ 32%. #63385C is quite dark color.
R + G + B =
99 + 56 + 92 = 247 (100%)
R 99 of 247 ~ 40.08%
G 56 of 247 ~ 22.67%
B 92 of 247 ~ 37.25%
#63385C color CMYK value is (0,43,7,61).
CMYK: (0,43,7,61) C0M43Y7K61 (0%,43%,7%,61%) (0.00/0.43/0.07/0.61)
63 | 38 | 5C | |
---|---|---|---|
RGB | 99 | 56 | 92 |
HSL | 310° | 27.74% | 30.39% |
HSB/HSV | 310° | 43.43% | 38.82% |
CMYK | 0.00% | 43.43% | 7.07% |
61.18% |
HEX | 63 | 38 | 5C |
Decimal | 99 | 56 | 92 |
Binary | 1100011 | 111000 | 1011100 |
Octal | 143 | 70 | 134 |
Examples of css and html codes for elements with #63385C color. Also use rgb(99,56,92) instead hex code.
.myTextColor { color: #63385C; }
<p style="color:#63385C">This sample text font color is #63385C.</p>
This text font color is #63385C.
.myBgColor { background-color: #63385C; }
<div style="background-color:#63385C">Inner text</div>
This div background color is #63385C.
.myBorderColor { border: 1px solid #63385C; }
<div style="border:3px solid #63385C">Div</div>
This div border color is #63385C.
.myOpacity80 { color: #63385C; opacity: 0.8; }
<p style="color:#63385C;opacity:0.8;">80%</p>
Text with #63385C color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #63385C;}
<p style="text-shadow: 3px 3px 1px #63385C">Text here.</p>
This text has shadow with #63385C color.
.textShadow {text-shadow: 3px 3px 1px #63385C, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #63385C, 5px 5px 20px red">Text here.</p>
This text has shadow with #63385C primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#63385C, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#63385C, Direction=45, Strength=4)">Text</p>
This text has shadow with #63385C and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #63385C; -webkit-box-shadow: 1px 1px 3px 2px #63385C; box-shadow: 1px 1px 3px 2px #63385C; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #63385C; -webkit-box-shadow: 1px 1px 3px 2px #63385C; box-shadow:1px 1px 3px 2px #63385C;">
Div content here</div>
This text has color #63385C on black background.
This text has color #63385C on white background.
This text has black color on #63385C background.
This text has white color on #63385C background.