HEX: #C393EB
RGB: (195,147,235)
#C393EB contains mainly red and blue colors. Web safe color of #C393EB is #CC99FF (or #C9F).
#C393EB color RGB value is (195,147,235).
RGB: (195,147,235) (76%,58%,92%)
R 195 of 255 = 76%
G 147 of 255 = 58%
B 235 of 255 = 92%
R + G + B ~ 75%. #C393EB is quite light color.
R + G + B =
195 + 147 + 235 = 577 (100%)
R 195 of 577 ~ 33.8%
G 147 of 577 ~ 25.48%
B 235 of 577 ~ 40.73%
#C393EB color CMYK value is (17,37,0,8).
CMYK: (17,37,0,8) C17M37Y0K8 (17%,37%,0%,8%) (0.17/0.37/0.00/0.08)
C3 | 93 | EB | |
---|---|---|---|
RGB | 195 | 147 | 235 |
HSL | 273° | 68.75% | 74.90% |
HSB/HSV | 273° | 37.45% | 92.16% |
CMYK | 17.02% | 37.45% | 0.00% |
7.84% |
HEX | C3 | 93 | EB |
Decimal | 195 | 147 | 235 |
Binary | 11000011 | 10010011 | 11101011 |
Octal | 303 | 223 | 353 |
Examples of css and html codes for elements with #C393EB color. Also use rgb(195,147,235) instead hex code.
.myTextColor { color: #C393EB; }
<p style="color:#C393EB">This sample text font color is #C393EB.</p>
This text font color is #C393EB.
.myBgColor { background-color: #C393EB; }
<div style="background-color:#C393EB">Inner text</div>
This div background color is #C393EB.
.myBorderColor { border: 1px solid #C393EB; }
<div style="border:3px solid #C393EB">Div</div>
This div border color is #C393EB.
.myOpacity80 { color: #C393EB; opacity: 0.8; }
<p style="color:#C393EB;opacity:0.8;">80%</p>
Text with #C393EB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #C393EB;}
<p style="text-shadow: 3px 3px 1px #C393EB">Text here.</p>
This text has shadow with #C393EB color.
.textShadow {text-shadow: 3px 3px 1px #C393EB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #C393EB, 5px 5px 20px red">Text here.</p>
This text has shadow with #C393EB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#C393EB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#C393EB, Direction=45, Strength=4)">Text</p>
This text has shadow with #C393EB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #C393EB; -webkit-box-shadow: 1px 1px 3px 2px #C393EB; box-shadow: 1px 1px 3px 2px #C393EB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #C393EB; -webkit-box-shadow: 1px 1px 3px 2px #C393EB; box-shadow:1px 1px 3px 2px #C393EB;">
Div content here</div>
This text has color #C393EB on black background.
This text has color #C393EB on white background.
This text has black color on #C393EB background.
This text has white color on #C393EB background.