HEX: #C363CF
RGB: (195,99,207)
#C363CF contains mainly red and blue colors. Web safe color of #C363CF is #CC66CC (or #C6C).
#C363CF color RGB value is (195,99,207).
RGB: (195,99,207) (76%,39%,81%)
R 195 of 255 = 76%
G 99 of 255 = 39%
B 207 of 255 = 81%
R + G + B ~ 65%. #C363CF is quite light color.
R + G + B =
195 + 99 + 207 = 501 (100%)
R 195 of 501 ~ 38.92%
G 99 of 501 ~ 19.76%
B 207 of 501 ~ 41.32%
#C363CF color CMYK value is (6,52,0,19).
CMYK: (6,52,0,19) C6M52Y0K19 (6%,52%,0%,19%) (0.06/0.52/0.00/0.19)
C3 | 63 | CF | |
---|---|---|---|
RGB | 195 | 99 | 207 |
HSL | 293° | 52.94% | 60.00% |
HSB/HSV | 293° | 52.17% | 81.18% |
CMYK | 5.80% | 52.17% | 0.00% |
18.82% |
HEX | C3 | 63 | CF |
Decimal | 195 | 99 | 207 |
Binary | 11000011 | 1100011 | 11001111 |
Octal | 303 | 143 | 317 |
Examples of css and html codes for elements with #C363CF color. Also use rgb(195,99,207) instead hex code.
.myTextColor { color: #C363CF; }
<p style="color:#C363CF">This sample text font color is #C363CF.</p>
This text font color is #C363CF.
.myBgColor { background-color: #C363CF; }
<div style="background-color:#C363CF">Inner text</div>
This div background color is #C363CF.
.myBorderColor { border: 1px solid #C363CF; }
<div style="border:3px solid #C363CF">Div</div>
This div border color is #C363CF.
.myOpacity80 { color: #C363CF; opacity: 0.8; }
<p style="color:#C363CF;opacity:0.8;">80%</p>
Text with #C363CF color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C363CF;}
<p style="text-shadow: 3px 3px 1px #C363CF">Text here.</p>
This text has shadow with #C363CF color.
.textShadow {text-shadow: 3px 3px 1px #C363CF, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C363CF, 5px 5px 20px red">Text here.</p>
This text has shadow with #C363CF primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C363CF, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C363CF, Direction=45, Strength=4)">Text</p>
This text has shadow with #C363CF and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #C363CF; -webkit-box-shadow: 1px 1px 3px 2px #C363CF; box-shadow: 1px 1px 3px 2px #C363CF; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #C363CF; -webkit-box-shadow: 1px 1px 3px 2px #C363CF; box-shadow:1px 1px 3px 2px #C363CF;">
Div content here</div>
This text has color #C363CF on black background.
This text has color #C363CF on white background.
This text has black color on #C363CF background.
This text has white color on #C363CF background.