HEX: #63355D
RGB: (99,53,93)
#63355D contains red, green and blue colors in about the same proportion. Web safe color of #63355D is #663366 (or #636).
#63355D color RGB value is (99,53,93).
RGB: (99,53,93) (39%,21%,36%)
R 99 of 255 = 39%
G 53 of 255 = 21%
B 93 of 255 = 36%
R + G + B ~ 32%. #63355D is quite dark color.
R + G + B =
99 + 53 + 93 = 245 (100%)
R 99 of 245 ~ 40.41%
G 53 of 245 ~ 21.63%
B 93 of 245 ~ 37.96%
#63355D color CMYK value is (0,46,6,61).
CMYK: (0,46,6,61) C0M46Y6K61 (0%,46%,6%,61%) (0.00/0.46/0.06/0.61)
63 | 35 | 5D | |
---|---|---|---|
RGB | 99 | 53 | 93 |
HSL | 308° | 30.26% | 29.80% |
HSB/HSV | 308° | 46.46% | 38.82% |
CMYK | 0.00% | 46.46% | 6.06% |
61.18% |
HEX | 63 | 35 | 5D |
Decimal | 99 | 53 | 93 |
Binary | 1100011 | 110101 | 1011101 |
Octal | 143 | 65 | 135 |
Examples of css and html codes for elements with #63355D color. Also use rgb(99,53,93) instead hex code.
.myTextColor { color: #63355D; }
<p style="color:#63355D">This sample text font color is #63355D.</p>
This text font color is #63355D.
.myBgColor { background-color: #63355D; }
<div style="background-color:#63355D">Inner text</div>
This div background color is #63355D.
.myBorderColor { border: 1px solid #63355D; }
<div style="border:3px solid #63355D">Div</div>
This div border color is #63355D.
.myOpacity80 { color: #63355D; opacity: 0.8; }
<p style="color:#63355D;opacity:0.8;">80%</p>
Text with #63355D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #63355D;}
<p style="text-shadow: 3px 3px 1px #63355D">Text here.</p>
This text has shadow with #63355D color.
.textShadow {text-shadow: 3px 3px 1px #63355D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #63355D, 5px 5px 20px red">Text here.</p>
This text has shadow with #63355D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#63355D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#63355D, Direction=45, Strength=4)">Text</p>
This text has shadow with #63355D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #63355D; -webkit-box-shadow: 1px 1px 3px 2px #63355D; box-shadow: 1px 1px 3px 2px #63355D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #63355D; -webkit-box-shadow: 1px 1px 3px 2px #63355D; box-shadow:1px 1px 3px 2px #63355D;">
Div content here</div>
This text has color #63355D on black background.
This text has color #63355D on white background.
This text has black color on #63355D background.
This text has white color on #63355D background.